summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry V. Levin <ldv@strace.io>2023-01-05 08:00:00 +0000
committerDmitry V. Levin <ldv@strace.io>2023-01-05 08:00:00 +0000
commitb502b1fd1cc11a9b9341cb380039bac03fdde627 (patch)
tree600a155957f5330dc14680c4181e240ff5e31018
parentae0fe2bd23596628479bf4cd0feed26d07f43da7 (diff)
downloadstrace-b502b1fd1cc11a9b9341cb380039bac03fdde627.tar.gz
xlat: update ALG_* constants
* src/xlat/sock_alg_options.in (ALG_SET_KEY_BY_KEY_SERIAL): New constant introduced by Linux kernel commit v6.2-rc1~87^2~128. * NEWS: Mention this change.
-rw-r--r--NEWS1
-rw-r--r--src/xlat/sock_alg_options.in13
2 files changed, 8 insertions, 6 deletions
diff --git a/NEWS b/NEWS
index bc72120a9..73b58f54f 100644
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,7 @@ Noteworthy changes in release ?.? (????-??-??)
==============================================
* Improvements
+ * Updated lists of ALG_* constants.
Noteworthy changes in release 6.1 (2022-12-12)
==============================================
diff --git a/src/xlat/sock_alg_options.in b/src/xlat/sock_alg_options.in
index ca1f870bc..2be678a13 100644
--- a/src/xlat/sock_alg_options.in
+++ b/src/xlat/sock_alg_options.in
@@ -1,7 +1,8 @@
#value_indexed
-ALG_SET_KEY 1
-ALG_SET_IV 2
-ALG_SET_OP 3
-ALG_SET_AEAD_ASSOCLEN 4
-ALG_SET_AEAD_AUTHSIZE 5
-ALG_SET_DRBG_ENTROPY 6
+ALG_SET_KEY 1
+ALG_SET_IV 2
+ALG_SET_OP 3
+ALG_SET_AEAD_ASSOCLEN 4
+ALG_SET_AEAD_AUTHSIZE 5
+ALG_SET_DRBG_ENTROPY 6
+ALG_SET_KEY_BY_KEY_SERIAL 7