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

Commit 2ba2d003 authored by David Brownell's avatar David Brownell Committed by Linus Torvalds
Browse files

AIO sparse fix (type of ki_flags)



Fix type issue reported by latest 'sparse': kiocb.ki_flags should be
"unsigned long" (not "long"), to match bitop type signature.

Signed-off-by: default avatarDavid Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: default avatarBenjamin LaHaise <bcrl@kvack.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 64ee4808
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -86,7 +86,7 @@ struct kioctx;
 */
struct kiocb {
	struct list_head	ki_run_list;
	long			ki_flags;
	unsigned long		ki_flags;
	int			ki_users;
	unsigned		ki_key;		/* id of this request */