Yo u c a n n o t s p e c i f y __GFP_HIGHMEM  to either __get_free_pages()  or kmalloc().
Because these both return a logical address, and not a page  structure, it is possible that
these functions would allocate memory not currently mapped in the kernel’s virtual
address space and, thus, does not have a logical address. Only alloc_pages()  can allocate
high memory.The majority of your allocations, however, will not specify a zone modifier
because ZONE_NORMAL  is sufficient

 

 

 

 

http://comments.gmane.org/gmane.linux.ports.arm.kernel/96732

相关文章:

  • 2021-06-07
  • 2021-09-17
  • 2022-02-22
  • 2021-10-26
  • 2022-02-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-02-02
  • 2021-07-09
  • 2021-11-24
  • 2021-08-15
  • 2021-08-15
  • 2021-05-29
  • 2022-02-26
相关资源
相似解决方案