mmzone.h 316 B

1234567891011121314151617
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * NUMA support for s390
  4. *
  5. * Copyright IBM Corp. 2015
  6. */
  7. #ifndef _ASM_S390_MMZONE_H
  8. #define _ASM_S390_MMZONE_H
  9. #ifdef CONFIG_NUMA
  10. extern struct pglist_data *node_data[];
  11. #define NODE_DATA(nid) (node_data[nid])
  12. #endif /* CONFIG_NUMA */
  13. #endif /* _ASM_S390_MMZONE_H */