From 176c894c9199c6bc9292ea5cf4b5922d04f708da Mon Sep 17 00:00:00 2001 From: Eugene Syromyatnikov Date: Thu, 15 Feb 2018 18:34:25 +0100 Subject: [PATCH] xlat: update the list of poll event flags POLL_BUSY_LOOP was introduced by linux kernel commit v3.11-rc1~64^2~129 as POLL_LL and then renamed in v3.11-rc1~64^2~9. POLLRDHUP was introduced by linux kernel commit v2.6.17-rc1~796. POLLMSG and POLLREMOVE predate git repository. POLLFREE was introduced by linux kernel commit v3.3-rc5~8 for internal use only. * xlat/pollflags.in (POLLMSG, POLLREMOVE, POLLRDHUP, POLL_BUSY_LOOP): New constants. * NEWS: Mention it. --- NEWS | 2 +- xlat/pollflags.in | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index bdb9a697..819c91f1 100644 --- a/NEWS +++ b/NEWS @@ -9,7 +9,7 @@ Noteworthy changes in release ?.?? (????-??-??) in brackets. * Enhanced NETLINK_ROUTE protocol decoding. * Updated lists of signal codes. - * Updated the list of RWF_* constants. + * Updated lists of POLL* and RWF_* constants. * Bug fixes * Fixed build on m68k. diff --git a/xlat/pollflags.in b/xlat/pollflags.in index db41909f..61d4f061 100644 --- a/xlat/pollflags.in +++ b/xlat/pollflags.in @@ -8,3 +8,7 @@ POLLWRBAND POLLERR POLLHUP POLLNVAL +POLLMSG +POLLREMOVE +POLLRDHUP +POLL_BUSY_LOOP -- 2.40.0