]> www.infradead.org Git - users/jedix/linux-maple.git/commit
ceph: remove bogus checks and WARN_ONs from ceph_set_page_dirty
authorJeff Layton <jlayton@kernel.org>
Tue, 4 May 2021 14:08:30 +0000 (10:08 -0400)
committerIlya Dryomov <idryomov@gmail.com>
Wed, 2 Jun 2021 08:40:36 +0000 (10:40 +0200)
commit9e06e4f77c86def0cda4b02f9180891243bc64a1
tree7482c4c1960172e9fc703ec07120e105f668e133
parent8124c8a6b35386f73523d27eacb71b5364a68c4c
ceph: remove bogus checks and WARN_ONs from ceph_set_page_dirty

The checks for page->mapping are odd, as set_page_dirty is an
address_space operation, and I don't see where it would be called on a
non-pagecache page.

The warning about the page lock also seems bogus.  The comment over
set_page_dirty() says that it can be called without the page lock in
some rare cases. I don't think we want to warn if that's the case.

Reported-by: Matthew Wilcox <willy@infradead.org>
Signed-off-by: Jeff Layton <jlayton@kernel.org>
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
fs/ceph/addr.c