diff options
author | Pawel Jakub Dawidek <pjd@FreeBSD.org> | 2009-05-26 09:19:21 +0000 |
---|---|---|
committer | Pawel Jakub Dawidek <pjd@FreeBSD.org> | 2009-05-26 09:19:21 +0000 |
commit | ce332f1e6732c01db77bf627718722fcc00a7316 (patch) | |
tree | ecb92d60efc452f020bf810892f6860184c83558 | |
parent | 0970b4bae0839ecdc2fc1dbc9bb05ec75b58eadf (diff) |
Notes
-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 292f6e1fd981..57f4017b4f34 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 |