From 79f9a2d31a2c4ed0c64f0de2856047feed1b7f7a Mon Sep 17 00:00:00 2001 From: Balazs Gerofi Date: Tue, 17 Oct 2017 10:07:35 +0900 Subject: [PATCH] HFI1: don't print at open() time --- kernel/syscall.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/syscall.c b/kernel/syscall.c index 9c6fd336..cad6edc0 100644 --- a/kernel/syscall.c +++ b/kernel/syscall.c @@ -487,7 +487,7 @@ long do_syscall(struct syscall_request *req, int cpu, int pid) extern void hfi1_txreq_prealloc(void); thread->proc->fd_priv_table[rc] = res.private_data; - kprintf("%s: PID: %d, open fd: %d, filename: " + dkprintf("%s: PID: %d, open fd: %d, filename: " "%s, private_data: 0x%lx\n", __FUNCTION__, thread->proc->pid, rc, req->args[0], res.private_data);