Date: Thu, 18 Jun 2020 08:38:54 +0000 (UTC) From: Eugene Grosbein <eugen@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org Subject: svn commit: r362303 - stable/11/sys/netpfil/ipfw Message-ID: <202006180838.05I8cscG002322@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: eugen Date: Thu Jun 18 08:38:54 2020 New Revision: 362303 URL: https://svnweb.freebsd.org/changeset/base/362303 Log: MFC r361789: ipfw: unbreak matching with big table type flow. Modified: stable/11/sys/netpfil/ipfw/ip_fw_table_algo.c Directory Properties: stable/11/ (props changed) Modified: stable/11/sys/netpfil/ipfw/ip_fw_table_algo.c ============================================================================== --- stable/11/sys/netpfil/ipfw/ip_fw_table_algo.c Thu Jun 18 08:37:56 2020 (r362302) +++ stable/11/sys/netpfil/ipfw/ip_fw_table_algo.c Thu Jun 18 08:38:54 2020 (r362303) @@ -3205,7 +3205,8 @@ ta_lookup_fhash(struct table_info *ti, void *key, uint struct fhashentry *ent; struct fhashentry4 *m4; struct ipfw_flow_id *id; - uint16_t hash, hsize; + uint32_t hsize; + uint16_t hash; id = (struct ipfw_flow_id *)key; head = (struct fhashbhead *)ti->state;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202006180838.05I8cscG002322>