]> Pileus Git - ~andy/linux/commitdiff
SUNRPC/cache: add module_put() on error path in cache_open()
authorAlexey Khoroshilov <khoroshilov@ispras.ru>
Fri, 22 Mar 2013 20:36:44 +0000 (00:36 +0400)
committerJ. Bruce Fields <bfields@redhat.com>
Wed, 3 Apr 2013 19:32:32 +0000 (15:32 -0400)
If kmalloc() fails in cache_open(), module cd->owner left locked.
The patch adds module_put(cd->owner) on this path.

Found by Linux Driver Verification project (linuxtesting.org).

Signed-off-by: Alexey Khoroshilov <khoroshilov@ispras.ru>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
net/sunrpc/cache.c

index 25d58e766014bf751ba404cac60893b2cfc5ecf9..1d3c5144a331b5d9b4966be701dfb960ad945456 100644 (file)
@@ -986,8 +986,10 @@ static int cache_open(struct inode *inode, struct file *filp,
        nonseekable_open(inode, filp);
        if (filp->f_mode & FMODE_READ) {
                rp = kmalloc(sizeof(*rp), GFP_KERNEL);
-               if (!rp)
+               if (!rp) {
+                       module_put(cd->owner);
                        return -ENOMEM;
+               }
                rp->offset = 0;
                rp->q.reader = 1;
                atomic_inc(&cd->readers);