diff options
author | Dave Jones <davej@redhat.com> | 2012-03-19 13:01:07 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-04-02 10:32:22 -0700 |
commit | 82cda2b280f4b97c883a4e1666ad1502c3bff3c7 (patch) | |
tree | 90c813b9e8c288bd61bffe44356004e4055120a3 /net | |
parent | 1545fb60f0c05b65060913e78bf8ae2b3c629818 (diff) |
Remove printk from rds_sendmsg
[ Upstream commit a6506e1486181975d318344143aca722b2b91621 ]
no socket layer outputs a message for this error and neither should rds.
Signed-off-by: Dave Jones <davej@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'net')
-rw-r--r-- | net/rds/send.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/rds/send.c b/net/rds/send.c index e2d63c59e7c..96531d4033a 100644 --- a/net/rds/send.c +++ b/net/rds/send.c @@ -935,7 +935,6 @@ int rds_sendmsg(struct kiocb *iocb, struct socket *sock, struct msghdr *msg, /* Mirror Linux UDP mirror of BSD error message compatibility */ /* XXX: Perhaps MSG_MORE someday */ if (msg->msg_flags & ~(MSG_DONTWAIT | MSG_CMSG_COMPAT)) { - printk(KERN_INFO "msg_flags 0x%08X\n", msg->msg_flags); ret = -EOPNOTSUPP; goto out; } |