From owner-svn-src-stable-10@freebsd.org Tue Dec 5 14:46:13 2017 Return-Path: Delivered-To: svn-src-stable-10@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CFD31E6C1A3; Tue, 5 Dec 2017 14:46:13 +0000 (UTC) (envelope-from julian@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9C3497D512; Tue, 5 Dec 2017 14:46:13 +0000 (UTC) (envelope-from julian@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vB5EkCaK046802; Tue, 5 Dec 2017 14:46:12 GMT (envelope-from julian@FreeBSD.org) Received: (from julian@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vB5EkCci046801; Tue, 5 Dec 2017 14:46:12 GMT (envelope-from julian@FreeBSD.org) Message-Id: <201712051446.vB5EkCci046801@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: julian set sender to julian@FreeBSD.org using -f From: Julian Elischer Date: Tue, 5 Dec 2017 14:46:12 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r326568 - stable/10/sys/netgraph X-SVN-Group: stable-10 X-SVN-Commit-Author: julian X-SVN-Commit-Paths: stable/10/sys/netgraph X-SVN-Commit-Revision: 326568 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-10@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for only the 10-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Dec 2017 14:46:13 -0000 Author: julian Date: Tue Dec 5 14:46:12 2017 New Revision: 326568 URL: https://svnweb.freebsd.org/changeset/base/326568 Log: Steps to Reproduce: #ngctl mkpeer ipfw: patch 7 in #ngctl name ipfw:7 tcp_rst #ngctl connect ipfw: tcp_rst: 8 out #ngctl msg tcp_rst: setconfig { count=1 csum_flags=0 ops=[ { mode=8 value=4 length=1 offset=33 } ] } ngctl: send msg: Argument list too long It's broken after base r309389 and could be fixed in base r309408, but the first one went to 10.4 and the second one didn't. PR: 224019 Submitted by: sd@mostnet.ru Modified: stable/10/sys/netgraph/ng_patch.h Modified: stable/10/sys/netgraph/ng_patch.h ============================================================================== --- stable/10/sys/netgraph/ng_patch.h Tue Dec 5 14:22:08 2017 (r326567) +++ stable/10/sys/netgraph/ng_patch.h Tue Dec 5 14:46:12 2017 (r326568) @@ -86,7 +86,7 @@ struct ng_patch_config { #define NG_PATCH_CONFIG_TYPE_INFO { \ { "count", &ng_parse_uint32_type }, \ - { "csum_flags", &ng_parse_uint64_type }, \ + { "csum_flags", &ng_parse_uint32_type }, \ { "ops", &ng_patch_ops_array_type }, \ { NULL } \ }