[PATCH] fs: Conversions from kmalloc+memset to k(z|c)alloc
Conversions from kmalloc+memset to kzalloc. Signed-off-by: Panagiotis Issaris <takis@issaris.org> Jffs2-bit-acked-by: David Woodhouse <dwmw2@infradead.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
此提交包含在:
@@ -99,9 +99,9 @@ nlm_lookup_host(int server, struct sockaddr_in *sin,
|
||||
/* Ooops, no host found, create it */
|
||||
dprintk("lockd: creating host entry\n");
|
||||
|
||||
if (!(host = (struct nlm_host *) kmalloc(sizeof(*host), GFP_KERNEL)))
|
||||
host = kzalloc(sizeof(*host), GFP_KERNEL);
|
||||
if (!host)
|
||||
goto nohost;
|
||||
memset(host, 0, sizeof(*host));
|
||||
|
||||
addr = sin->sin_addr.s_addr;
|
||||
sprintf(host->h_name, "%u.%u.%u.%u", NIPQUAD(addr));
|
||||
|
@@ -100,11 +100,10 @@ nlm_lookup_file(struct svc_rqst *rqstp, struct nlm_file **result,
|
||||
nlm_debug_print_fh("creating file for", f);
|
||||
|
||||
nfserr = nlm_lck_denied_nolocks;
|
||||
file = (struct nlm_file *) kmalloc(sizeof(*file), GFP_KERNEL);
|
||||
file = kzalloc(sizeof(*file), GFP_KERNEL);
|
||||
if (!file)
|
||||
goto out_unlock;
|
||||
|
||||
memset(file, 0, sizeof(*file));
|
||||
memcpy(&file->f_handle, f, sizeof(struct nfs_fh));
|
||||
file->f_hash = hash;
|
||||
init_MUTEX(&file->f_sema);
|
||||
|
新增問題並參考
封鎖使用者