]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
fs/pipe: Convert to lockdep_cmp_fn
authorKent Overstreet <kent.overstreet@linux.dev>
Sat, 27 Jan 2024 02:01:05 +0000 (21:01 -0500)
committerChristian Brauner <brauner@kernel.org>
Fri, 2 Feb 2024 12:11:49 +0000 (13:11 +0100)
commit85f273a6a1e492afa7309fd23fcd8cb870085f56
treee2e84ba0dd645a8da314738a50bb0878b32b35c4
parentad72872eb3ae634d1e4296a384baa81e85cc6acc
fs/pipe: Convert to lockdep_cmp_fn

*_lock_nested() is fundamentally broken; lockdep needs to check lock
ordering, but we cannot device a total ordering on an unbounded number
of elements with only a few subclasses.

the replacement is to define lock ordering with a proper comparison
function.

fs/pipe.c was already doing everything correctly otherwise, nothing
much changes here.

Cc: Alexander Viro <viro@zeniv.linux.org.uk>
Cc: Christian Brauner <brauner@kernel.org>
Cc: Jan Kara <jack@suse.cz>
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Link: https://lore.kernel.org/r/20240127020111.487218-2-kent.overstreet@linux.dev
Reviewed-by: Jan Kara <jack@suse.cz>
Signed-off-by: Christian Brauner <brauner@kernel.org>
fs/pipe.c