From 2e5510da5fc989ac6472ab61c9c60d7b1f4a8f12 Mon Sep 17 00:00:00 2001 From: Eugene Syromyatnikov Date: Mon, 12 Feb 2018 19:41:41 +0100 Subject: [PATCH] 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. --- NEWS | 1 + xlat/rwf_flags.in | 9 +++++---- 2 files changed, 6 insertions(+), 4 deletions(-) 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 -- 2.50.0