]> bbs.cooldavid.org Git - net-next-2.6.git/blobdiff - fs/ceph/mon_client.c
ceph: Use kzalloc
[net-next-2.6.git] / fs / ceph / mon_client.c
index 7df2f8c157f1aeff4246d4fdb46a80a242c7e9f7..7062b889ab2fd8dabcbca4ab853e25d0e7fd1d60 100644 (file)
@@ -481,11 +481,10 @@ int ceph_monc_do_statfs(struct ceph_mon_client *monc, struct ceph_statfs *buf)
        struct ceph_mon_statfs *h;
        int err;
 
-       req = kmalloc(sizeof(*req), GFP_NOFS);
+       req = kzalloc(sizeof(*req), GFP_NOFS);
        if (!req)
                return -ENOMEM;
 
-       memset(req, 0, sizeof(*req));
        kref_init(&req->kref);
        req->buf = buf;
        init_completion(&req->completion);