]> git.baikalelectronics.ru Git - kernel.git/commit
btrfs: reada: Fix returned errno code
authorLuis de Bethencourt <luisbg@osg.samsung.com>
Tue, 20 Oct 2015 13:56:23 +0000 (14:56 +0100)
committerDavid Sterba <dsterba@suse.com>
Wed, 21 Oct 2015 16:29:50 +0000 (18:29 +0200)
commit4bc240b09ed56baa73682b314eb54a0838b6a73b
treecf3484128d2fbcb804f0791174e1e99ea208b11b
parent41f7485abc23450e78eade53e735f8f620d73d70
btrfs: reada: Fix returned errno code

reada is using -1 instead of the -ENOMEM defined macro to specify that
a buffer allocation failed. Since the error number is propagated, the
caller will get a -EPERM which is the wrong error condition.

Also, updating the caller to return the exact value from
reada_add_block.

Smatch tool warning:
reada_add_block() warn: returning -1 instead of -ENOMEM is sloppy

Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: Luis de Bethencourt <luisbg@osg.samsung.com>
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/reada.c