diff options
Diffstat (limited to 'sys/kern/uipc_debug.c')
-rw-r--r-- | sys/kern/uipc_debug.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sys/kern/uipc_debug.c b/sys/kern/uipc_debug.c index 292f6e1..57f4017 100644 --- a/sys/kern/uipc_debug.c +++ b/sys/kern/uipc_debug.c @@ -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 |