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.
This commit is contained in:
Eugene Syromyatnikov 2018-02-12 19:41:41 +01:00 committed by Dmitry V. Levin
parent d2f152e969
commit 2e5510da5f
2 changed files with 6 additions and 4 deletions

1
NEWS
View File

@ -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.

View File

@ -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