Message ID | 1415230302-16310-2-git-send-email-huawei.xie@intel.com (mailing list archive) |
---|---|
State | Accepted, archived |
Headers | show |
On Thu, Nov 06, 2014 at 07:31:42AM +0800, Huawei Xie wrote: > printk -> pr_debug > > Signed-off-by: Huawei Xie <huawei.xie@intel.com> > --- > lib/librte_vhost/eventfd_link/eventfd_link.c | 10 +++++----- > 1 file changed, 5 insertions(+), 5 deletions(-) > > diff --git a/lib/librte_vhost/eventfd_link/eventfd_link.c b/lib/librte_vhost/eventfd_link/eventfd_link.c > index 542ec2c..7755dd6 100644 > --- a/lib/librte_vhost/eventfd_link/eventfd_link.c > +++ b/lib/librte_vhost/eventfd_link/eventfd_link.c > @@ -88,13 +88,13 @@ eventfd_link_ioctl(struct file *f, unsigned int ioctl, unsigned long arg) > task_target = > pid_task(find_vpid(eventfd_copy.target_pid), PIDTYPE_PID); > if (task_target == NULL) { > - printk(KERN_DEBUG "Failed to get mem ctx for target pid\n"); > + pr_debug("Failed to get mem ctx for target pid\n"); > return -EFAULT; > } > > files = get_files_struct(current); > if (files == NULL) { > - printk(KERN_DEBUG "Failed to get files struct\n"); > + pr_debug("Failed to get files struct\n"); > return -EFAULT; > } > > @@ -109,7 +109,7 @@ eventfd_link_ioctl(struct file *f, unsigned int ioctl, unsigned long arg) > put_files_struct(files); > > if (file == NULL) { > - printk(KERN_DEBUG "Failed to get file from source pid\n"); > + pr_debug("Failed to get file from source pid\n"); > return 0; > } > > @@ -128,7 +128,7 @@ eventfd_link_ioctl(struct file *f, unsigned int ioctl, unsigned long arg) > > files = get_files_struct(task_target); > if (files == NULL) { > - printk(KERN_DEBUG "Failed to get files struct\n"); > + pr_debug("Failed to get files struct\n"); > return -EFAULT; > } > > @@ -143,7 +143,7 @@ eventfd_link_ioctl(struct file *f, unsigned int ioctl, unsigned long arg) > put_files_struct(files); > > if (file == NULL) { > - printk(KERN_DEBUG "Failed to get file from target pid\n"); > + pr_debug("Failed to get file from target pid\n"); > return 0; > } > > -- > 1.8.1.4 > > Acked-by: Neil Horman <nhorman@tuxdriver.com>
diff --git a/lib/librte_vhost/eventfd_link/eventfd_link.c b/lib/librte_vhost/eventfd_link/eventfd_link.c index 542ec2c..7755dd6 100644 --- a/lib/librte_vhost/eventfd_link/eventfd_link.c +++ b/lib/librte_vhost/eventfd_link/eventfd_link.c @@ -88,13 +88,13 @@ eventfd_link_ioctl(struct file *f, unsigned int ioctl, unsigned long arg) task_target = pid_task(find_vpid(eventfd_copy.target_pid), PIDTYPE_PID); if (task_target == NULL) { - printk(KERN_DEBUG "Failed to get mem ctx for target pid\n"); + pr_debug("Failed to get mem ctx for target pid\n"); return -EFAULT; } files = get_files_struct(current); if (files == NULL) { - printk(KERN_DEBUG "Failed to get files struct\n"); + pr_debug("Failed to get files struct\n"); return -EFAULT; } @@ -109,7 +109,7 @@ eventfd_link_ioctl(struct file *f, unsigned int ioctl, unsigned long arg) put_files_struct(files); if (file == NULL) { - printk(KERN_DEBUG "Failed to get file from source pid\n"); + pr_debug("Failed to get file from source pid\n"); return 0; } @@ -128,7 +128,7 @@ eventfd_link_ioctl(struct file *f, unsigned int ioctl, unsigned long arg) files = get_files_struct(task_target); if (files == NULL) { - printk(KERN_DEBUG "Failed to get files struct\n"); + pr_debug("Failed to get files struct\n"); return -EFAULT; } @@ -143,7 +143,7 @@ eventfd_link_ioctl(struct file *f, unsigned int ioctl, unsigned long arg) put_files_struct(files); if (file == NULL) { - printk(KERN_DEBUG "Failed to get file from target pid\n"); + pr_debug("Failed to get file from target pid\n"); return 0; }
printk -> pr_debug Signed-off-by: Huawei Xie <huawei.xie@intel.com> --- lib/librte_vhost/eventfd_link/eventfd_link.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-)