linux/include/linux/memregion.h
<<
>>
Prefs
   1/* SPDX-License-Identifier: GPL-2.0 */
   2#ifndef _MEMREGION_H_
   3#define _MEMREGION_H_
   4#include <linux/types.h>
   5#include <linux/errno.h>
   6
   7struct memregion_info {
   8        int target_node;
   9};
  10
  11#ifdef CONFIG_MEMREGION
  12int memregion_alloc(gfp_t gfp);
  13void memregion_free(int id);
  14#else
  15static inline int memregion_alloc(gfp_t gfp)
  16{
  17        return -ENOMEM;
  18}
  19void memregion_free(int id)
  20{
  21}
  22#endif
  23#endif /* _MEMREGION_H_ */
  24