diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2024-04-08 10:11:37 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2024-04-08 10:11:37 -0700 |
commit | 4f0a8fe3215c432234baed20eb8210efe1c32b10 (patch) | |
tree | 9e513635536597b2c6dc82deca43c246c9e39028 /tools/include/linux/mm.h | |
parent | fec50db7033ea478773b159e0e2efb135270e3b7 (diff) | |
parent | 592447f6cb3c20d606d6c5d8e6af68e99707b786 (diff) |
Merge tag 'fixes-2024-04-08' of git://git.kernel.org/pub/scm/linux/kernel/git/rppt/memblock
Pull memblock fixes from Mike Rapoport:
"Fix build errors in memblock tests:
- add stubs to functions that calls to them were recently added to
memblock but they were missing in tests
- update gfp_types.h to include bits.h so that BIT() definitions
won't depend on other includes"
* tag 'fixes-2024-04-08' of git://git.kernel.org/pub/scm/linux/kernel/git/rppt/memblock:
memblock tests: fix undefined reference to `BIT'
memblock tests: fix undefined reference to `panic'
memblock tests: fix undefined reference to `early_pfn_to_nid'
Diffstat (limited to 'tools/include/linux/mm.h')
-rw-r--r-- | tools/include/linux/mm.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/include/linux/mm.h b/tools/include/linux/mm.h index f3c82ab5b14c..7d73da098047 100644 --- a/tools/include/linux/mm.h +++ b/tools/include/linux/mm.h @@ -37,4 +37,9 @@ static inline void totalram_pages_add(long count) { } +static inline int early_pfn_to_nid(unsigned long pfn) +{ + return 0; +} + #endif |