[rds-commits] jlbec commits r109 - trunk/linux/net/rds

svn-commits@oss.oracle.com svn-commits at oss.oracle.com
Mon Jun 12 20:52:48 CDT 2006


Author: jlbec
Signed-off-by: zab
Date: 2006-06-12 20:52:47 -0500 (Mon, 12 Jun 2006)
New Revision: 109

Modified:
   trunk/linux/net/rds/send.c
Log:

rds_sendmsg: Support COMPAT calls from 32->64.

Signed-off-by: zab



Modified: trunk/linux/net/rds/send.c
===================================================================
--- trunk/linux/net/rds/send.c	2006-06-13 01:09:12 UTC (rev 108)
+++ trunk/linux/net/rds/send.c	2006-06-13 01:52:47 UTC (rev 109)
@@ -297,7 +297,8 @@
 
 	/* Mirror Linux UDP mirror of BSD error message compatibility */
 	/* XXX: Perhaps MSG_MORE someday */
-	if (msg->msg_flags & ~(MSG_DONTWAIT)) {
+	if (msg->msg_flags & ~(MSG_DONTWAIT | MSG_CMSG_COMPAT)) {
+		printk("msg_flags 0x%08X\n", msg->msg_flags);
 		ret = -EOPNOTSUPP;
 		goto out;
 	}




More information about the rds-commits mailing list