]> git.ipfire.org Git - people/arne_f/kernel.git/commit
debugfs: Fix module state check condition
authorVladis Dronov <vdronov@redhat.com>
Tue, 11 Aug 2020 15:01:29 +0000 (17:01 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 17 Sep 2020 11:47:55 +0000 (13:47 +0200)
commit323159acb2b5df62d1af831edd5a0db4e0026628
treed55b5b3276667b2ada1343607db1b022729aefb5
parent41b2ea7a6a11e2b1a7f2c29e1675a709a6b2b98d
debugfs: Fix module state check condition

commit e3b9fc7eec55e6fdc8beeed18f2ed207086341e2 upstream.

The '#ifdef MODULE' check in the original commit does not work as intended.
The code under the check is not built at all if CONFIG_DEBUG_FS=y. Fix this
by using a correct check.

Fixes: 275678e7a9be ("debugfs: Check module state before warning in {full/open}_proxy_open()")
Signed-off-by: Vladis Dronov <vdronov@redhat.com>
Cc: stable <stable@vger.kernel.org>
Link: https://lore.kernel.org/r/20200811150129.53343-1-vdronov@redhat.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/debugfs/file.c