git: d703686ed948 - stable/13 - linuxkpi: Add `memalloc_noreclaim_save()` and `memalloc_noreclaim_restore()`

From: Jean-Sébastien Pédron <dumbbell_at_FreeBSD.org>
Date: Thu, 16 Feb 2023 11:55:36 UTC
The branch stable/13 has been updated by dumbbell (ports committer):

URL: https://cgit.FreeBSD.org/src/commit/?id=d703686ed948e1cd6f0d49e2540b5c1bb3d5da5a

commit d703686ed948e1cd6f0d49e2540b5c1bb3d5da5a
Author:     Jean-Sébastien Pédron <dumbbell@FreeBSD.org>
AuthorDate: 2023-01-02 20:59:17 +0000
Commit:     Jean-Sébastien Pédron <dumbbell@FreeBSD.org>
CommitDate: 2023-02-16 11:55:11 +0000

    linuxkpi: Add `memalloc_noreclaim_save()` and `memalloc_noreclaim_restore()`
    
    They are no-ops.
    
    Reviewed by:    emaste, manu
    Approved by:    emaste, manu
    Differential Revision:  https://reviews.freebsd.org/D37933
    
    (cherry picked from commit cf8f392260bf8e9b4e088f26f81ddb96bd97e91c)
---
 sys/compat/linuxkpi/common/include/linux/sched/mm.h | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/sys/compat/linuxkpi/common/include/linux/sched/mm.h b/sys/compat/linuxkpi/common/include/linux/sched/mm.h
index 613473e142a9..c26d99378974 100644
--- a/sys/compat/linuxkpi/common/include/linux/sched/mm.h
+++ b/sys/compat/linuxkpi/common/include/linux/sched/mm.h
@@ -36,5 +36,8 @@
 #define	memalloc_nofs_save(x)		0
 #define	memalloc_nofs_restore(x)	do {	\
 	} while (0)
+#define	memalloc_noreclaim_save(x)	0
+#define	memalloc_noreclaim_restore(x)	do {	\
+	} while (0)
 
 #endif	/* _BSD_LKPI_LINUX_SCHED_MM_H_ */