mmzone.h 402 B

123456789101112131415161718
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Author: Huacai Chen ([email protected])
  4. * Copyright (C) 2020-2022 Loongson Technology Corporation Limited
  5. */
  6. #ifndef _ASM_MMZONE_H_
  7. #define _ASM_MMZONE_H_
  8. #include <asm/page.h>
  9. #include <asm/numa.h>
  10. extern struct pglist_data *node_data[];
  11. #define NODE_DATA(nid) (node_data[(nid)])
  12. extern void setup_zero_pages(void);
  13. #endif /* _ASM_MMZONE_H_ */