From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 225F7C4708E for ; Mon, 2 Jan 2023 14:13:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232908AbjABONX (ORCPT ); Mon, 2 Jan 2023 09:13:23 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:56894 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232767AbjABONW (ORCPT ); Mon, 2 Jan 2023 09:13:22 -0500 Received: from mail.netfilter.org (mail.netfilter.org [217.70.188.207]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 915466586 for ; Mon, 2 Jan 2023 06:13:21 -0800 (PST) Date: Mon, 2 Jan 2023 15:13:18 +0100 From: Pablo Neira Ayuso To: Jozsef Kadlecsik Cc: netfilter-devel@vger.kernel.org Subject: Re: [PATCH 0/2] ipset patches for nf Message-ID: References: <20221230122438.1618153-1-kadlec@netfilter.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20221230122438.1618153-1-kadlec@netfilter.org> Precedence: bulk List-ID: X-Mailing-List: netfilter-devel@vger.kernel.org On Fri, Dec 30, 2022 at 01:24:36PM +0100, Jozsef Kadlecsik wrote: > Hi Pablo, > > Please pull the next patches into your nf tree. > > - The first patch fixes a hang when 0/0 subnets is added to a > hash:net,port,net type of set. Except hash:net,port,net and > hash:net,iface, the set types don't support 0/0 and the auxiliary > functions rely on this fact. So 0/0 needs a special handling in > hash:net,port,net which was missing (hash:net,iface was not affected > by this bug). > - When adding/deleting large number of elements in one step in ipset, > it can take a reasonable amount of time and can result in soft lockup > errors. This patch is a complete rework of the previous version in order > to use a smaller internal batch limit and at the same time removing > the external hard limit to add arbitrary number of elements in one step. Series applied to nf.git I added a Fixes: tag to the first patch and removed a duplicated Signed-off-by: line in the second. Just a minor nitpick, nothing important. Thanks for your fixes.