aboutsummaryrefslogtreecommitdiffstats
path: root/net/atm/resources.c
diff options
context:
space:
mode:
authorNathan Chancellor <natechancellor@gmail.com>2019-03-07 11:11:26 -0700
committerDavid S. Miller <davem@davemloft.net>2019-03-07 10:14:50 -0800
commit0805a4b894a8daaf76ad99934563d8ecfc6e7aed (patch)
treedcbce92c5cfcce999971b543ab928f01f4fbb4a0 /net/atm/resources.c
parentnet: stmmac: Avoid sometimes uninitialized Clang warnings (diff)
downloadlinux-dev-0805a4b894a8daaf76ad99934563d8ecfc6e7aed.tar.xz
linux-dev-0805a4b894a8daaf76ad99934563d8ecfc6e7aed.zip
net: atm: Add another IS_ENABLED(CONFIG_COMPAT) in atm_dev_ioctl
I removed compat's universal assignment to 0, which allows this if statement to fall through when compat is passed with a value other than 0. Fixes: f9d19a7494e5 ("net: atm: Use IS_ENABLED in atm_dev_ioctl") Signed-off-by: Nathan Chancellor <natechancellor@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to '')
-rw-r--r--net/atm/resources.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/atm/resources.c b/net/atm/resources.c
index 3e9f6391319e..889349c6d90d 100644
--- a/net/atm/resources.c
+++ b/net/atm/resources.c
@@ -413,7 +413,7 @@ int atm_dev_ioctl(unsigned int cmd, void __user *arg, int compat)
}
/* fall through */
default:
- if (compat) {
+ if (IS_ENABLED(CONFIG_COMPAT) && compat) {
#ifdef CONFIG_COMPAT
if (!dev->ops->compat_ioctl) {
error = -EINVAL;