From 431e0b22a8dc6aef59233dcf679dbe6528f30e57 Mon Sep 17 00:00:00 2001 From: George Guo Date: Wed, 31 Jul 2024 18:30:51 +0800 Subject: [PATCH] patch-author-guide: correct the example CVE ID information The official website says CVE users should reference CVE-2016-5696 instead of CVE-2016-5389. Signed-off-by: George Guo --- doc/patch-author-guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/patch-author-guide.md b/doc/patch-author-guide.md index 26daee3..7c806a1 100644 --- a/doc/patch-author-guide.md +++ b/doc/patch-author-guide.md @@ -197,7 +197,7 @@ module-notifier will execute callbacks when the module is loaded into the `MODULE_STATE_COMING` state. The pre and post-patch callbacks are called before any module_init code. -Example: a kpatch fix for CVE-2016-5389 could utilize the +Example: a kpatch fix for CVE-2016-5696 could utilize the `KPATCH_PRE_PATCH_CALLBACK` and `KPATCH_POST_UNPATCH_CALLBACK` macros to modify variable `sysctl_tcp_challenge_ack_limit` in-place: