netlink: fix error propagation in netlink_mmap()
authorPatrick McHardy <kaber@trash.net>
Tue, 11 Jun 2013 09:52:47 +0000 (02:52 -0700)
committerDavid S. Miller <davem@davemloft.net>
Tue, 11 Jun 2013 09:52:47 +0000 (02:52 -0700)
Return the error if something went wrong instead of unconditionally
returning 0.

Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/netlink/af_netlink.c

index d0b3dd6..57ee84d 100644 (file)
@@ -371,7 +371,7 @@ static int netlink_mmap(struct file *file, struct socket *sock,
        err = 0;
 out:
        mutex_unlock(&nlk->pg_vec_lock);
-       return 0;
+       return err;
 }
 
 static void netlink_frame_flush_dcache(const struct nl_mmap_hdr *hdr)