linux/lib/test_free_pages.c

// SPDX-License-Identifier: GPL-2.0+
/*
 * test_free_pages.c: Check that free_pages() doesn't leak memory
 * Copyright (c) 2020 Oracle
 * Author: Matthew Wilcox <[email protected]>
 */

#define pr_fmt(fmt)

#include <linux/gfp.h>
#include <linux/mm.h>
#include <linux/module.h>

static void test_free_pages(gfp_t gfp)
{}

static int m_in(void)
{}

static void m_ex(void)
{}

module_init();
module_exit(m_ex);
MODULE_AUTHOR();
MODULE_DESCRIPTION();
MODULE_LICENSE();