mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-04-24 14:07:52 -04:00
dma-debug: use pr_* instead of printk(KERN_* ...)
The pr_* macros are shorter than the old printk(KERN_ ...) variant. Change the dma-debug code to use the new macros and save a few unnecessary line breaks. If lines don't break the source code can also be grepped more easily. Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
This commit is contained in:
parent
c17e2cf737
commit
e7ed70eedc
1 changed files with 15 additions and 21 deletions
|
@ -139,7 +139,7 @@ static inline void dump_entry_trace(struct dma_debug_entry *entry)
|
||||||
{
|
{
|
||||||
#ifdef CONFIG_STACKTRACE
|
#ifdef CONFIG_STACKTRACE
|
||||||
if (entry) {
|
if (entry) {
|
||||||
printk(KERN_WARNING "Mapped at:\n");
|
pr_warning("Mapped at:\n");
|
||||||
print_stack_trace(&entry->stacktrace, 0);
|
print_stack_trace(&entry->stacktrace, 0);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
@ -377,8 +377,7 @@ static struct dma_debug_entry *dma_entry_alloc(void)
|
||||||
spin_lock_irqsave(&free_entries_lock, flags);
|
spin_lock_irqsave(&free_entries_lock, flags);
|
||||||
|
|
||||||
if (list_empty(&free_entries)) {
|
if (list_empty(&free_entries)) {
|
||||||
printk(KERN_ERR "DMA-API: debugging out of memory "
|
pr_err("DMA-API: debugging out of memory - disabling\n");
|
||||||
"- disabling\n");
|
|
||||||
global_disable = true;
|
global_disable = true;
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
@ -483,8 +482,7 @@ static int prealloc_memory(u32 num_entries)
|
||||||
num_free_entries = num_entries;
|
num_free_entries = num_entries;
|
||||||
min_free_entries = num_entries;
|
min_free_entries = num_entries;
|
||||||
|
|
||||||
printk(KERN_INFO "DMA-API: preallocated %d debug entries\n",
|
pr_info("DMA-API: preallocated %d debug entries\n", num_entries);
|
||||||
num_entries);
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
@ -534,7 +532,7 @@ static ssize_t filter_write(struct file *file, const char __user *userbuf,
|
||||||
* disabled. Since copy_from_user can fault and may sleep we
|
* disabled. Since copy_from_user can fault and may sleep we
|
||||||
* need to copy to temporary buffer first
|
* need to copy to temporary buffer first
|
||||||
*/
|
*/
|
||||||
len = min(count, NAME_MAX_LEN - 1);
|
len = min(count, (size_t)(NAME_MAX_LEN - 1));
|
||||||
if (copy_from_user(buf, userbuf, len))
|
if (copy_from_user(buf, userbuf, len))
|
||||||
return -EFAULT;
|
return -EFAULT;
|
||||||
|
|
||||||
|
@ -557,8 +555,7 @@ static ssize_t filter_write(struct file *file, const char __user *userbuf,
|
||||||
* switched off.
|
* switched off.
|
||||||
*/
|
*/
|
||||||
if (current_driver_name[0])
|
if (current_driver_name[0])
|
||||||
printk(KERN_INFO "DMA-API: switching off dma-debug "
|
pr_info("DMA-API: switching off dma-debug driver filter\n");
|
||||||
"driver filter\n");
|
|
||||||
current_driver_name[0] = 0;
|
current_driver_name[0] = 0;
|
||||||
current_driver = NULL;
|
current_driver = NULL;
|
||||||
goto out_unlock;
|
goto out_unlock;
|
||||||
|
@ -576,8 +573,8 @@ static ssize_t filter_write(struct file *file, const char __user *userbuf,
|
||||||
current_driver_name[i] = 0;
|
current_driver_name[i] = 0;
|
||||||
current_driver = NULL;
|
current_driver = NULL;
|
||||||
|
|
||||||
printk(KERN_INFO "DMA-API: enable driver filter for driver [%s]\n",
|
pr_info("DMA-API: enable driver filter for driver [%s]\n",
|
||||||
current_driver_name);
|
current_driver_name);
|
||||||
|
|
||||||
out_unlock:
|
out_unlock:
|
||||||
write_unlock_irqrestore(&driver_name_lock, flags);
|
write_unlock_irqrestore(&driver_name_lock, flags);
|
||||||
|
@ -594,7 +591,7 @@ static int dma_debug_fs_init(void)
|
||||||
{
|
{
|
||||||
dma_debug_dent = debugfs_create_dir("dma-api", NULL);
|
dma_debug_dent = debugfs_create_dir("dma-api", NULL);
|
||||||
if (!dma_debug_dent) {
|
if (!dma_debug_dent) {
|
||||||
printk(KERN_ERR "DMA-API: can not create debugfs directory\n");
|
pr_err("DMA-API: can not create debugfs directory\n");
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -693,7 +690,7 @@ void dma_debug_add_bus(struct bus_type *bus)
|
||||||
|
|
||||||
nb = kzalloc(sizeof(struct notifier_block), GFP_KERNEL);
|
nb = kzalloc(sizeof(struct notifier_block), GFP_KERNEL);
|
||||||
if (nb == NULL) {
|
if (nb == NULL) {
|
||||||
printk(KERN_ERR "dma_debug_add_bus: out of memory\n");
|
pr_err("dma_debug_add_bus: out of memory\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -718,8 +715,7 @@ void dma_debug_init(u32 num_entries)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (dma_debug_fs_init() != 0) {
|
if (dma_debug_fs_init() != 0) {
|
||||||
printk(KERN_ERR "DMA-API: error creating debugfs entries "
|
pr_err("DMA-API: error creating debugfs entries - disabling\n");
|
||||||
"- disabling\n");
|
|
||||||
global_disable = true;
|
global_disable = true;
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
@ -729,8 +725,7 @@ void dma_debug_init(u32 num_entries)
|
||||||
num_entries = req_entries;
|
num_entries = req_entries;
|
||||||
|
|
||||||
if (prealloc_memory(num_entries) != 0) {
|
if (prealloc_memory(num_entries) != 0) {
|
||||||
printk(KERN_ERR "DMA-API: debugging out of memory error "
|
pr_err("DMA-API: debugging out of memory error - disabled\n");
|
||||||
"- disabled\n");
|
|
||||||
global_disable = true;
|
global_disable = true;
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
@ -738,7 +733,7 @@ void dma_debug_init(u32 num_entries)
|
||||||
|
|
||||||
nr_total_entries = num_free_entries;
|
nr_total_entries = num_free_entries;
|
||||||
|
|
||||||
printk(KERN_INFO "DMA-API: debugging enabled by kernel config\n");
|
pr_info("DMA-API: debugging enabled by kernel config\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
static __init int dma_debug_cmdline(char *str)
|
static __init int dma_debug_cmdline(char *str)
|
||||||
|
@ -747,8 +742,7 @@ static __init int dma_debug_cmdline(char *str)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
if (strncmp(str, "off", 3) == 0) {
|
if (strncmp(str, "off", 3) == 0) {
|
||||||
printk(KERN_INFO "DMA-API: debugging disabled on kernel "
|
pr_info("DMA-API: debugging disabled on kernel command line\n");
|
||||||
"command line\n");
|
|
||||||
global_disable = true;
|
global_disable = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1239,8 +1233,8 @@ static int __init dma_debug_driver_setup(char *str)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (current_driver_name[0])
|
if (current_driver_name[0])
|
||||||
printk(KERN_INFO "DMA-API: enable driver filter for "
|
pr_info("DMA-API: enable driver filter for driver [%s]\n",
|
||||||
"driver [%s]\n", current_driver_name);
|
current_driver_name);
|
||||||
|
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue