From mboxrd@z Thu Jan 1 00:00:00 1970 From: Huawei Xie Subject: [PATCH 2/2] lib/librte_vhost: printk->pr_debug Date: Thu, 6 Nov 2014 07:31:42 +0800 Message-ID: <1415230302-16310-2-git-send-email-huawei.xie@intel.com> References: <1415230302-16310-1-git-send-email-huawei.xie@intel.com> To: dev-VfR2kkLFssw@public.gmane.org Return-path: In-Reply-To: <1415230302-16310-1-git-send-email-huawei.xie-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces-VfR2kkLFssw@public.gmane.org Sender: "dev" printk -> pr_debug Signed-off-by: Huawei Xie --- 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