diff options
| author | Dmitry Torokhov <[email protected]> | 2023-05-01 15:20:08 -0700 | 
|---|---|---|
| committer | Dmitry Torokhov <[email protected]> | 2023-05-01 15:20:08 -0700 | 
| commit | 9a87ffc99ec8eb8d35eed7c4f816d75f5cc9662e (patch) | |
| tree | d57f3a63479a07b4e0cece029886e76e04feb984 /lib/test_printf.c | |
| parent | 5dc63e56a9cf8df0b59c234a505a1653f1bdf885 (diff) | |
| parent | 53bea86b5712c7491bb3dae12e271666df0a308c (diff) | |
Merge branch 'next' into for-linus
Prepare input updates for 6.4 merge window.
Diffstat (limited to 'lib/test_printf.c')
| -rw-r--r-- | lib/test_printf.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/test_printf.c b/lib/test_printf.c index d34dc636b81c..46b4e6c414a3 100644 --- a/lib/test_printf.c +++ b/lib/test_printf.c @@ -674,17 +674,17 @@ flags(void)  	gfp = GFP_ATOMIC|__GFP_DMA;  	test("GFP_ATOMIC|GFP_DMA", "%pGg", &gfp); -	gfp = __GFP_ATOMIC; -	test("__GFP_ATOMIC", "%pGg", &gfp); +	gfp = __GFP_HIGH; +	test("__GFP_HIGH", "%pGg", &gfp);  	/* Any flags not translated by the table should remain numeric */  	gfp = ~__GFP_BITS_MASK;  	snprintf(cmp_buffer, BUF_SIZE, "%#lx", (unsigned long) gfp);  	test(cmp_buffer, "%pGg", &gfp); -	snprintf(cmp_buffer, BUF_SIZE, "__GFP_ATOMIC|%#lx", +	snprintf(cmp_buffer, BUF_SIZE, "__GFP_HIGH|%#lx",  							(unsigned long) gfp); -	gfp |= __GFP_ATOMIC; +	gfp |= __GFP_HIGH;  	test(cmp_buffer, "%pGg", &gfp);  	kfree(cmp_buffer);  |