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 <dumbb...@freebsd.org>
AuthorDate: 2023-01-02 20:59:17 +0000
Commit:     Jean-Sébastien Pédron <dumbb...@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_ */

Reply via email to