Message ID | 20241227072825.1288491-2-rppt@kernel.org (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | x86/module: rework ROX cache to avoid writable copy | expand |
On Fri, Dec 27, 2024 at 09:28:18AM +0200, Mike Rapoport wrote: > From: "Mike Rapoport (Microsoft)" <rppt@kernel.org> > > The CPA_ARRAY test always uses len[1] as numpages argument to > change_page_attr_set() although the addresses array is different each > iteration of the test loop. > > Replace len[1] with len[i] to have numpages matching the addresses array. D'oh..
diff --git a/arch/x86/mm/pat/cpa-test.c b/arch/x86/mm/pat/cpa-test.c index 3d2f7f0a6ed1..ad3c1feec990 100644 --- a/arch/x86/mm/pat/cpa-test.c +++ b/arch/x86/mm/pat/cpa-test.c @@ -183,7 +183,7 @@ static int pageattr_test(void) break; case 1: - err = change_page_attr_set(addrs, len[1], PAGE_CPA_TEST, 1); + err = change_page_attr_set(addrs, len[i], PAGE_CPA_TEST, 1); break; case 2: