Blame SOURCES/0008-aio-fix-off-by-one-error-in-indexed-xlat-lookup.patch

2eae47
From d0035c3031b0d5a1cbb300d698328d118af33d3e Mon Sep 17 00:00:00 2001
2eae47
From: "Dmitry V. Levin" <ldv@altlinux.org>
2eae47
Date: Sun, 23 Dec 2018 22:12:36 +0000
2eae47
Subject: [PATCH 08/27] aio: fix off-by-one error in indexed xlat lookup
2eae47
2eae47
* aio.c (tprint_lio_opcode): Decrement xlat size by one to account
2eae47
for XLAT_END as other users of indexed xlats do.
2eae47
2eae47
Fixes: v4.24~71 "aio: print IOCB_CMD_* using xlat"
2eae47
---
2eae47
 aio.c | 2 +-
2eae47
 1 file changed, 1 insertion(+), 1 deletion(-)
2eae47
2eae47
diff --git a/aio.c b/aio.c
2eae47
index a07d8eb..24ad69f 100644
2eae47
--- a/aio.c
2eae47
+++ b/aio.c
2eae47
@@ -70,7 +70,7 @@ tprint_lio_opcode(unsigned int cmd)
2eae47
 		[IOCB_CMD_PWRITEV]	= SUB_VECTOR,
2eae47
 	};
2eae47
 
2eae47
-	printxval_indexn_ex(ARRSZ_PAIR(aio_cmds), cmd, "IOCB_CMD_???",
2eae47
+	printxval_indexn_ex(ARRSZ_PAIR(aio_cmds) - 1, cmd, "IOCB_CMD_???",
2eae47
 			    XLAT_STYLE_FMT_U);
2eae47
 
2eae47
 	return cmd < ARRAY_SIZE(subs) ? subs[cmd] : SUB_NONE;
2eae47
-- 
2eae47
2.1.4
2eae47