From owner-svn-src-head@FreeBSD.ORG Tue May 26 09:19:21 2009 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C2249106564A; Tue, 26 May 2009 09:19:21 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B0CCA8FC08; Tue, 26 May 2009 09:19:21 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n4Q9JLxJ052519; Tue, 26 May 2009 09:19:21 GMT (envelope-from pjd@svn.freebsd.org) Received: (from pjd@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n4Q9JLkA052518; Tue, 26 May 2009 09:19:21 GMT (envelope-from pjd@svn.freebsd.org) Message-Id: <200905260919.n4Q9JLkA052518@svn.freebsd.org> From: Pawel Jakub Dawidek Date: Tue, 26 May 2009 09:19:21 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r192802 - head/sys/kern X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 May 2009 09:19:22 -0000 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