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 D9265C25B0C for ; Mon, 8 Aug 2022 14:09:27 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232541AbiHHOJ0 (ORCPT ); Mon, 8 Aug 2022 10:09:26 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:41588 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235851AbiHHOJZ (ORCPT ); Mon, 8 Aug 2022 10:09:25 -0400 Received: from mail.netfilter.org (mail.netfilter.org [217.70.188.207]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 8A388E0C2 for ; Mon, 8 Aug 2022 07:09:24 -0700 (PDT) Date: Mon, 8 Aug 2022 16:09:21 +0200 From: Pablo Neira Ayuso To: Jacob Keller Cc: Netfilter Devel , Duncan Roe Subject: Re: [PATCH libmnl v2 2/2] libmnl: add support for signed types Message-ID: References: <20220805210040.2827875-1-jacob.e.keller@intel.com> <20220805210040.2827875-2-jacob.e.keller@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20220805210040.2827875-2-jacob.e.keller@intel.com> Precedence: bulk List-ID: X-Mailing-List: netfilter-devel@vger.kernel.org Hi, On Fri, Aug 05, 2022 at 02:00:40PM -0700, Jacob Keller wrote: > libmnl has get and put functions for unsigned integer types. It lacks > support for the signed variations. On some level this is technically > sufficient. A user could use the unsigned variations and then cast to a > signed value at use. However, this makes resulting code in the application > more difficult to follow. Introduce signed variations of the integer get > and put functions. > > Signed-off-by: Jacob Keller > --- > include/libmnl/libmnl.h | 16 ++++ > src/attr.c | 194 +++++++++++++++++++++++++++++++++++++++- > 2 files changed, 209 insertions(+), 1 deletion(-) > [...] > @@ -127,6 +139,10 @@ enum mnl_attr_data_type { > MNL_TYPE_U16, > MNL_TYPE_U32, > MNL_TYPE_U64, > + MNL_TYPE_S8, > + MNL_TYPE_S16, > + MNL_TYPE_S32, > + MNL_TYPE_S64, This breaks ABI, you have to add new types at the end of the enumeration. > MNL_TYPE_STRING, > MNL_TYPE_FLAG, > MNL_TYPE_MSECS, Thanks.