fuse: convert printk -> pr_*
Functions, like pr_err, are a more modern variant of printing compared to printk. They could be used to denoise sources by using needed level in the print function name, and by automatically inserting per-driver / function / ... print prefix as defined by pr_fmt macro. pr_* are also said to be used in Documentation/process/coding-style.rst and more recent code - for example overlayfs - uses them instead of printk. Convert CUSE and FUSE to use the new pr_* functions. CUSE output stays completely unchanged, while FUSE output is amended a bit for "trying to steal weird page" warning - the second line now comes also with "fuse:" prefix. I hope it is ok. Suggested-by: Kirill Tkhai <ktkhai@virtuozzo.com> Signed-off-by: Kirill Smelkov <kirr@nexedi.com> Reviewed-by: Kirill Tkhai <ktkhai@virtuozzo.com> Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
This commit is contained in:

committed by
Miklos Szeredi

parent
0cbade024b
commit
f2294482ff
@@ -33,6 +33,8 @@
|
||||
* closed.
|
||||
*/
|
||||
|
||||
#define pr_fmt(fmt) "CUSE: " fmt
|
||||
|
||||
#include <linux/fuse.h>
|
||||
#include <linux/cdev.h>
|
||||
#include <linux/device.h>
|
||||
@@ -225,7 +227,7 @@ static int cuse_parse_one(char **pp, char *end, char **keyp, char **valp)
|
||||
return 0;
|
||||
|
||||
if (end[-1] != '\0') {
|
||||
printk(KERN_ERR "CUSE: info not properly terminated\n");
|
||||
pr_err("info not properly terminated\n");
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
@@ -242,7 +244,7 @@ static int cuse_parse_one(char **pp, char *end, char **keyp, char **valp)
|
||||
key = strstrip(key);
|
||||
|
||||
if (!strlen(key)) {
|
||||
printk(KERN_ERR "CUSE: zero length info key specified\n");
|
||||
pr_err("zero length info key specified\n");
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
@@ -282,12 +284,11 @@ static int cuse_parse_devinfo(char *p, size_t len, struct cuse_devinfo *devinfo)
|
||||
if (strcmp(key, "DEVNAME") == 0)
|
||||
devinfo->name = val;
|
||||
else
|
||||
printk(KERN_WARNING "CUSE: unknown device info \"%s\"\n",
|
||||
key);
|
||||
pr_warn("unknown device info \"%s\"\n", key);
|
||||
}
|
||||
|
||||
if (!devinfo->name || !strlen(devinfo->name)) {
|
||||
printk(KERN_ERR "CUSE: DEVNAME unspecified\n");
|
||||
pr_err("DEVNAME unspecified\n");
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
@@ -341,7 +342,7 @@ static void cuse_process_init_reply(struct fuse_conn *fc, struct fuse_req *req)
|
||||
else
|
||||
rc = register_chrdev_region(devt, 1, devinfo.name);
|
||||
if (rc) {
|
||||
printk(KERN_ERR "CUSE: failed to register chrdev region\n");
|
||||
pr_err("failed to register chrdev region\n");
|
||||
goto err;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user