svn commit: r192802 - head/sys/kern

Pawel Jakub Dawidek pjd at FreeBSD.org
Tue May 26 09:19:22 UTC 2009


Author: pjd
Date: Tue May 26 09:19:21 2009
New Revision: 192802
URL: http://svn.freebsd.org/changeset/base/192802

Log:
  Add missing socket options.

Modified:
  head/sys/kern/uipc_debug.c

Modified: head/sys/kern/uipc_debug.c
==============================================================================
--- head/sys/kern/uipc_debug.c	Tue May 26 08:39:44 2009	(r192801)
+++ head/sys/kern/uipc_debug.c	Tue May 26 09:19:21 2009	(r192802)
@@ -136,6 +136,14 @@ db_print_sooptions(short so_options)
 		db_printf("%sSO_BINTIME", comma ? ", " : "");
 		comma = 1;
 	}
+	if (so_options & SO_NO_OFFLOAD) {
+		db_printf("%sSO_NO_OFFLOAD", comma ? ", " : "");
+		comma = 1;
+	}
+	if (so_options & SO_NO_DDP) {
+		db_printf("%sSO_NO_DDP", comma ? ", " : "");
+		comma = 1;
+	}
 }
 
 static void


More information about the svn-src-all mailing list