All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] tools/testing/scatterlist: Add missing defines
@ 2022-01-18  8:21 Maor Gottlieb
  2022-01-18 14:40 ` Sebastian Andrzej Siewior
  2022-01-26  2:44 ` Andrew Morton
  0 siblings, 2 replies; 4+ messages in thread
From: Maor Gottlieb @ 2022-01-18  8:21 UTC (permalink / raw)
  To: torvalds, akpm; +Cc: tglx, bigeasy, hch, linux-mm

The cited commits replaced preemptible with pagefault_disabled and
flush_kernel_dcache_page with flush_dcache_page respectively, hence
need to update the corresponding defines in the test.

Fixes: 723aca208516 ("mm/scatterlist: replace the !preemptible warning in sg_miter_stop()")
Fixes: 0e84f5dbf8d6 ("scatterlist: replace flush_kernel_dcache_page with flush_dcache_page")
Signed-off-by: Maor Gottlieb <maorg@nvidia.com>
---
 tools/testing/scatterlist/linux/mm.h | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tools/testing/scatterlist/linux/mm.h b/tools/testing/scatterlist/linux/mm.h
index 16ec895bbe5f..5bd9e6e80625 100644
--- a/tools/testing/scatterlist/linux/mm.h
+++ b/tools/testing/scatterlist/linux/mm.h
@@ -74,7 +74,7 @@ static inline unsigned long page_to_phys(struct page *page)
 	      __UNIQUE_ID(min1_), __UNIQUE_ID(min2_),   \
 	      x, y)
 
-#define preemptible() (1)
+#define pagefault_disabled() (0)
 
 static inline void *kmap(struct page *page)
 {
@@ -127,6 +127,7 @@ kmalloc_array(unsigned int n, unsigned int size, unsigned int flags)
 #define kmemleak_free(a)
 
 #define PageSlab(p) (0)
+#define flush_dcache_page(p)
 
 #define MAX_ERRNO	4095
 
-- 
2.25.4



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] tools/testing/scatterlist: Add missing defines
  2022-01-18  8:21 [PATCH] tools/testing/scatterlist: Add missing defines Maor Gottlieb
@ 2022-01-18 14:40 ` Sebastian Andrzej Siewior
  2022-01-26  2:44 ` Andrew Morton
  1 sibling, 0 replies; 4+ messages in thread
From: Sebastian Andrzej Siewior @ 2022-01-18 14:40 UTC (permalink / raw)
  To: Maor Gottlieb; +Cc: torvalds, akpm, tglx, hch, linux-mm

On 2022-01-18 10:21:05 [+0200], Maor Gottlieb wrote:
> The cited commits replaced preemptible with pagefault_disabled and
> flush_kernel_dcache_page with flush_dcache_page respectively, hence
> need to update the corresponding defines in the test.
> 
> Fixes: 723aca208516 ("mm/scatterlist: replace the !preemptible warning in sg_miter_stop()")
> Fixes: 0e84f5dbf8d6 ("scatterlist: replace flush_kernel_dcache_page with flush_dcache_page")
> Signed-off-by: Maor Gottlieb <maorg@nvidia.com>

Both commits are part of v5.16-rc1.

Tested-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>

Sebastian


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] tools/testing/scatterlist: Add missing defines
  2022-01-18  8:21 [PATCH] tools/testing/scatterlist: Add missing defines Maor Gottlieb
  2022-01-18 14:40 ` Sebastian Andrzej Siewior
@ 2022-01-26  2:44 ` Andrew Morton
  2022-01-26  7:16   ` Sebastian Andrzej Siewior
  1 sibling, 1 reply; 4+ messages in thread
From: Andrew Morton @ 2022-01-26  2:44 UTC (permalink / raw)
  To: Maor Gottlieb; +Cc: torvalds, tglx, bigeasy, hch, linux-mm

On Tue, 18 Jan 2022 10:21:05 +0200 Maor Gottlieb <maorg@nvidia.com> wrote:

> The cited commits replaced preemptible with pagefault_disabled and
> flush_kernel_dcache_page with flush_dcache_page respectively, hence
> need to update the corresponding defines in the test.

What are the effects of this change?  Does it fix compilation
issues?  Runtime issues?  If so, what are those issues?


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] tools/testing/scatterlist: Add missing defines
  2022-01-26  2:44 ` Andrew Morton
@ 2022-01-26  7:16   ` Sebastian Andrzej Siewior
  0 siblings, 0 replies; 4+ messages in thread
From: Sebastian Andrzej Siewior @ 2022-01-26  7:16 UTC (permalink / raw)
  To: Andrew Morton; +Cc: Maor Gottlieb, torvalds, tglx, hch, linux-mm

On 2022-01-25 18:44:13 [-0800], Andrew Morton wrote:
> On Tue, 18 Jan 2022 10:21:05 +0200 Maor Gottlieb <maorg@nvidia.com> wrote:
> 
> > The cited commits replaced preemptible with pagefault_disabled and
> > flush_kernel_dcache_page with flush_dcache_page respectively, hence
> > need to update the corresponding defines in the test.
> 
> What are the effects of this change?  Does it fix compilation
> issues?  Runtime issues?  If so, what are those issues?

There is this runtime test
	tools/testing/scatterlist/main.c

and without the changes to
	tools/testing/scatterlist/linux/mm.h

it simply does not compile. Since it is userland, the kernel details
like preemptible() or pagefault_disabled() don't matter much, it has
just to compile and run.

Sebastian


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-01-26  7:16 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-18  8:21 [PATCH] tools/testing/scatterlist: Add missing defines Maor Gottlieb
2022-01-18 14:40 ` Sebastian Andrzej Siewior
2022-01-26  2:44 ` Andrew Morton
2022-01-26  7:16   ` Sebastian Andrzej Siewior

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.