summaryrefslogtreecommitdiffstats
path: root/fs/cifs/transport.c
diff options
context:
space:
mode:
authorJeff Layton2011-01-28 21:05:43 +0100
committerSteve French2011-01-31 05:32:21 +0100
commitd804d41d163c0975d2890c82d7135ada7a2f23a4 (patch)
tree1e67966f3206a8e3c254d73d5e53cabe15d0e4a9 /fs/cifs/transport.c
parentcifs: simplify SMB header check routine (diff)
downloadkernel-qcow2-linux-d804d41d163c0975d2890c82d7135ada7a2f23a4.tar.gz
kernel-qcow2-linux-d804d41d163c0975d2890c82d7135ada7a2f23a4.tar.xz
kernel-qcow2-linux-d804d41d163c0975d2890c82d7135ada7a2f23a4.zip
cifs: don't pop a printk when sending on a socket is interrupted
If we kill the process while it's sending on a socket then the kernel_sendmsg will return -EINTR. This is normal. No need to spam the ring buffer with this info. Signed-off-by: Jeff Layton <jlayton@redhat.com> Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs/transport.c')
-rw-r--r--fs/cifs/transport.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/cifs/transport.c b/fs/cifs/transport.c
index bdaa4aa58b03..b8c5e2eb43d0 100644
--- a/fs/cifs/transport.c
+++ b/fs/cifs/transport.c
@@ -236,9 +236,9 @@ smb_sendv(struct TCP_Server_Info *server, struct kvec *iov, int n_vec)
server->tcpStatus = CifsNeedReconnect;
}
- if (rc < 0) {
+ if (rc < 0 && rc != -EINTR)
cERROR(1, "Error %d sending data on socket to server", rc);
- } else
+ else
rc = 0;
/* Don't want to modify the buffer as a