From: Eugene Syromyatnikov Date: Mon, 12 Feb 2018 18:41:41 +0000 (+0100) Subject: xlat: update the list of RWF_* constants X-Git-Tag: v4.22~153 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2e5510da5fc989ac6472ab61c9c60d7b1f4a8f12;p=strace xlat: update the list of RWF_* constants * xlat/rwf_flags.in (RWF_APPEND): New constant introduced by linux kernel commit v4.16-rc1~145^2~7. * NEWS: Mention it. --- diff --git a/NEWS b/NEWS index 682b2a61..d0e39589 100644 --- a/NEWS +++ b/NEWS @@ -7,6 +7,7 @@ Noteworthy changes in release ?.?? (????-??-??) * Improvements * IPv6 addresses shown in socket information in -yy mode are now printed in brackets. + * Updated the list of RWF_* constants. * Bug fixes * Fixed build on m68k. diff --git a/xlat/rwf_flags.in b/xlat/rwf_flags.in index 34b2eb17..3f63f5a2 100644 --- a/xlat/rwf_flags.in +++ b/xlat/rwf_flags.in @@ -1,4 +1,5 @@ -RWF_HIPRI 1 -RWF_DSYNC 2 -RWF_SYNC 4 -RWF_NOWAIT 8 +RWF_HIPRI 0x01 +RWF_DSYNC 0x02 +RWF_SYNC 0x04 +RWF_NOWAIT 0x08 +RWF_APPEND 0x10