summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry V. Levin <ldv@altlinux.org>2020-09-06 08:00:00 +0000
committerDmitry V. Levin <ldv@altlinux.org>2020-09-06 08:00:00 +0000
commit40e232b083ce6bb3be087f1f85684bca5e76cb30 (patch)
treea4e3c446eb941dbdd782ef2b48d9fac09e24857a
parentd27f7838a0c6a6c18347062d88d6dc49de7b9bd2 (diff)
downloadstrace-40e232b083ce6bb3be087f1f85684bca5e76cb30.tar.gz
xlat: update IORING_FEAT_* constants
* xlat/uring_setup_features.in (IORING_FEAT_POLL_32BITS): New constant introduced by Linux kernel commit v5.9-rc1~212^2~116. * NEWS: Mention this change.
-rw-r--r--NEWS4
-rw-r--r--xlat/uring_setup_features.in1
2 files changed, 3 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 16b8d74d2..b4a596403 100644
--- a/NEWS
+++ b/NEWS
@@ -5,8 +5,8 @@ Noteworthy changes in release ?.? (????-??-??)
* Added -n/--syscall-number option for printing syscall numbers.
* Added --pidns-translation option for PID namespace translation.
* Implemented decoding of close_range syscall.
- * Updated lists of BPF_*, CAP_*, FAN_*, IFLA_*, INET_DIAG_REQ_*, IP_*,
- and IPV6_* constants.
+ * Updated lists of BPF_*, CAP_*, FAN_*, IFLA_*, INET_DIAG_REQ_*,
+ IORING_FEAT_*, IP_*, and IPV6_* constants.
* Bug fixes
diff --git a/xlat/uring_setup_features.in b/xlat/uring_setup_features.in
index 2d837c92c..29d963c0d 100644
--- a/xlat/uring_setup_features.in
+++ b/xlat/uring_setup_features.in
@@ -4,3 +4,4 @@ IORING_FEAT_SUBMIT_STABLE (1<<2)
IORING_FEAT_RW_CUR_POS (1<<3)
IORING_FEAT_CUR_PERSONALITY (1<<4)
IORING_FEAT_FAST_POLL (1<<5)
+IORING_FEAT_POLL_32BITS (1<<6)