discontig.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/arch/arm/mm/discontig.c
  3.  *
  4.  * Discontiguous memory support.
  5.  *
  6.  * Initial code: Copyright (C) 1999-2000 Nicolas Pitre
  7.  *
  8.  * This program is free software; you can redistribute it and/or modify
  9.  * it under the terms of the GNU General Public License version 2 as
  10.  * published by the Free Software Foundation.
  11.  */
  12. #include <linux/module.h>
  13. #include <linux/mm.h>
  14. #include <linux/init.h>
  15. #include <linux/bootmem.h>
  16. #if NR_NODES != 4
  17. #error Fix Me Please
  18. #endif
  19. /*
  20.  * Our node_data structure for discontiguous memory.
  21.  */
  22. static bootmem_data_t node_bootmem_data[NR_NODES];
  23. pg_data_t discontig_node_data[NR_NODES] = {
  24.   { bdata: &node_bootmem_data[0] },
  25.   { bdata: &node_bootmem_data[1] },
  26.   { bdata: &node_bootmem_data[2] },
  27.   { bdata: &node_bootmem_data[3] }
  28. };
  29. EXPORT_SYMBOL(discontig_node_data);