net: stmmac: dwmac-rk: fix error handling in rk_gmac_powerup()
[linux-stable.git] / lib / test_debug_virtual.c
blob777b491df25d6ad8c5f7e987b620a520bd398462
1 #include <linux/kernel.h>
2 #include <linux/module.h>
3 #include <linux/export.h>
4 #include <linux/mm.h>
5 #include <linux/vmalloc.h>
6 #include <linux/slab.h>
7 #include <linux/sizes.h>
8 #include <linux/io.h>
10 #include <asm/page.h>
11 #ifdef CONFIG_MIPS
12 #include <asm/bootinfo.h>
13 #endif
15 struct foo {
16 unsigned int bar;
19 struct foo *foo;
21 static int __init test_debug_virtual_init(void)
23 phys_addr_t pa;
24 void *va;
26 va = (void *)VMALLOC_START;
27 pa = virt_to_phys(va);
29 pr_info("PA: %pa for VA: 0x%lx\n", &pa, (unsigned long)va);
31 foo = kzalloc(sizeof(*foo), GFP_KERNEL);
32 if (!foo)
33 return -ENOMEM;
35 pa = virt_to_phys(foo);
36 va = foo;
37 pr_info("PA: %pa for VA: 0x%lx\n", &pa, (unsigned long)va);
39 return 0;
41 module_init(test_debug_virtual_init);
43 static void __exit test_debug_virtual_exit(void)
45 kfree(foo);
47 module_exit(test_debug_virtual_exit);
49 MODULE_LICENSE("GPL");
50 MODULE_DESCRIPTION("Test module for CONFIG_DEBUG_VIRTUAL");