mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-02-28 19:06:51 +01:00
This was done entirely with mindless brute force, using
git grep -l '\<k[vmz]*alloc_objs*(.*, GFP_KERNEL)' |
xargs sed -i 's/\(alloc_objs*(.*\), GFP_KERNEL)/\1)/'
to convert the new alloc_obj() users that had a simple GFP_KERNEL
argument to just drop that argument.
Note that due to the extreme simplicity of the scripting, any slightly
more complex cases spread over multiple lines would not be triggered:
they definitely exist, but this covers the vast bulk of the cases, and
the resulting diff is also then easier to check automatically.
For the same reason the 'flex' versions will be done as a separate
conversion.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
52 lines
965 B
C
52 lines
965 B
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
#include <linux/kernel.h>
|
|
#include <linux/module.h>
|
|
#include <linux/export.h>
|
|
#include <linux/mm.h>
|
|
#include <linux/vmalloc.h>
|
|
#include <linux/slab.h>
|
|
#include <linux/sizes.h>
|
|
#include <linux/io.h>
|
|
|
|
#include <asm/page.h>
|
|
#ifdef CONFIG_MIPS
|
|
#include <asm/bootinfo.h>
|
|
#endif
|
|
|
|
struct foo {
|
|
unsigned int bar;
|
|
};
|
|
|
|
static struct foo *foo;
|
|
|
|
static int __init test_debug_virtual_init(void)
|
|
{
|
|
phys_addr_t pa;
|
|
void *va;
|
|
|
|
va = (void *)VMALLOC_START;
|
|
pa = virt_to_phys(va);
|
|
|
|
pr_info("PA: %pa for VA: 0x%lx\n", &pa, (unsigned long)va);
|
|
|
|
foo = kzalloc_obj(*foo);
|
|
if (!foo)
|
|
return -ENOMEM;
|
|
|
|
pa = virt_to_phys(foo);
|
|
va = foo;
|
|
pr_info("PA: %pa for VA: 0x%lx\n", &pa, (unsigned long)va);
|
|
|
|
return 0;
|
|
}
|
|
module_init(test_debug_virtual_init);
|
|
|
|
static void __exit test_debug_virtual_exit(void)
|
|
{
|
|
kfree(foo);
|
|
}
|
|
module_exit(test_debug_virtual_exit);
|
|
|
|
MODULE_LICENSE("GPL");
|
|
MODULE_DESCRIPTION("Test module for CONFIG_DEBUG_VIRTUAL");
|