diff options
author | Cyrill Gorcunov <[email protected]> | 2017-02-27 14:27:40 -0800 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2017-02-27 18:43:45 -0800 |
commit | c857ab640c0cddf451cf743f1b70f9ad7f103090 (patch) | |
tree | a0ef949cbc801e03f37f62181d04e4c5b7326e2a /scripts/gdb/linux/config.py | |
parent | e3b5a342ab9643b4079c8d417d90519388469341 (diff) |
fs,eventpoll: don't test for bitfield with stack value
In case if epoll_ctl is called with operation EPOLL_CTL_DEL then
@epds.events variable allocated on stack may contain random bits which
we test then for EPOLLEXCLUSIVE. Since currently the test look like
if (epds.events & EPOLLEXCLUSIVE) {
if (op == EPOLL_CTL_MOD)
goto error_tgt_fput;
if (op == EPOLL_CTL_ADD && (is_file_epoll(tf.file) ||
(epds.events & ~EPOLLEXCLUSIVE_OK_BITS)))
goto error_tgt_fput;
}
Nothing serious will happen even if epds.events has this bit set, still
better to be on safe side and make sure that we're to test this bit at
all.
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Cyrill Gorcunov <[email protected]>
Cc: Al Viro <[email protected]>
Cc: Andrey Vagin <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'scripts/gdb/linux/config.py')
0 files changed, 0 insertions, 0 deletions