Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fe36adf4 authored by Al Viro's avatar Al Viro
Browse files

No instance of ->bmap() needs BKL



Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent b0895513
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -187,7 +187,7 @@ readpages: no
write_begin:		no	locks the page		yes
write_end:		no	yes, unlocks		yes
perform_write:		no	n/a			yes
bmap:			yes
bmap:			no
invalidatepage:		no	yes
releasepage:		no	yes
direct_IO:		no
+0 −2
Original line number Diff line number Diff line
@@ -70,9 +70,7 @@ static int ioctl_fibmap(struct file *filp, int __user *p)
	res = get_user(block, p);
	if (res)
		return res;
	lock_kernel();
	res = mapping->a_ops->bmap(mapping, block);
	unlock_kernel();
	return put_user(res, p);
}