From: Li Zefan Date: Thu, 11 Mar 2010 22:08:10 +0000 (-0800) Subject: sunrpc/cache: fix module refcnt leak in a failure path X-Git-Tag: v2.6.32.30~43 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=fe20aa6ef8389723f01d6bcbb000d14646741241;p=karo-tx-linux.git sunrpc/cache: fix module refcnt leak in a failure path commit a5990ea1254cd186b38744507aeec3136a0c1c95 upstream. Don't forget to release the module refcnt if seq_open() returns failure. Signed-off-by: Li Zefan Cc: J. Bruce Fields Cc: Neil Brown Cc: Trond Myklebust Signed-off-by: Andrew Morton Signed-off-by: J. Bruce Fields Cc: maximilian attems Signed-off-by: Greg Kroah-Hartman --- diff --git a/net/sunrpc/cache.c b/net/sunrpc/cache.c index d6eee291a0e2..25f7801e0ab9 100644 --- a/net/sunrpc/cache.c +++ b/net/sunrpc/cache.c @@ -1234,8 +1234,10 @@ static int content_open(struct inode *inode, struct file *file, if (!cd || !try_module_get(cd->owner)) return -EACCES; han = __seq_open_private(file, &cache_content_op, sizeof(*han)); - if (han == NULL) + if (han == NULL) { + module_put(cd->owner); return -ENOMEM; + } han->cd = cd; return 0;