mmzone.h 277 B

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