ecryptfs: properly mark init functions
Some ecryptfs init functions are not prefixed by __init and thus not freed after initialization. This patch saved about 1kB in ecryptfs module. Signed-off-by: Jerome Marchand <jmarchan@redhat.com> Signed-off-by: Tyler Hicks <tyhicks@linux.vnet.ibm.com>
This commit is contained in:
parent
f137f15072
commit
7371a38201
4 changed files with 4 additions and 4 deletions
|
@ -1793,7 +1793,7 @@ struct kmem_cache *ecryptfs_key_tfm_cache;
|
||||||
static struct list_head key_tfm_list;
|
static struct list_head key_tfm_list;
|
||||||
struct mutex key_tfm_list_mutex;
|
struct mutex key_tfm_list_mutex;
|
||||||
|
|
||||||
int ecryptfs_init_crypto(void)
|
int __init ecryptfs_init_crypto(void)
|
||||||
{
|
{
|
||||||
mutex_init(&key_tfm_list_mutex);
|
mutex_init(&key_tfm_list_mutex);
|
||||||
INIT_LIST_HEAD(&key_tfm_list);
|
INIT_LIST_HEAD(&key_tfm_list);
|
||||||
|
|
|
@ -86,7 +86,7 @@ static int ecryptfs_threadfn(void *ignored)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int ecryptfs_init_kthread(void)
|
int __init ecryptfs_init_kthread(void)
|
||||||
{
|
{
|
||||||
int rc = 0;
|
int rc = 0;
|
||||||
|
|
||||||
|
|
|
@ -473,7 +473,7 @@ int ecryptfs_wait_for_response(struct ecryptfs_msg_ctx *msg_ctx,
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
int ecryptfs_init_messaging(void)
|
int __init ecryptfs_init_messaging(void)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
int rc = 0;
|
int rc = 0;
|
||||||
|
|
|
@ -500,7 +500,7 @@ static struct miscdevice ecryptfs_miscdev = {
|
||||||
*
|
*
|
||||||
* Returns zero on success; non-zero otherwise
|
* Returns zero on success; non-zero otherwise
|
||||||
*/
|
*/
|
||||||
int ecryptfs_init_ecryptfs_miscdev(void)
|
int __init ecryptfs_init_ecryptfs_miscdev(void)
|
||||||
{
|
{
|
||||||
int rc;
|
int rc;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue