From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 78BCC45485; Mon, 17 Jun 2024 19:48:29 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 534C0402DA; Mon, 17 Jun 2024 19:48:29 +0200 (CEST) Received: from mail-oo1-f42.google.com (mail-oo1-f42.google.com [209.85.161.42]) by mails.dpdk.org (Postfix) with ESMTP id 3E1EB402BD for ; Mon, 17 Jun 2024 19:48:27 +0200 (CEST) Received: by mail-oo1-f42.google.com with SMTP id 006d021491bc7-5bfa5f9bbe6so930563eaf.3 for ; Mon, 17 Jun 2024 10:48:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=iol.unh.edu; s=unh-iol; t=1718646506; x=1719251306; darn=dpdk.org; h=content-transfer-encoding:cc:to:subject:message-id:date:from :in-reply-to:references:mime-version:from:to:cc:subject:date :message-id:reply-to; bh=Ht3nmXsfVyHqN7MZhkWsXX4IGV1mSXqwV5Hjran4uPg=; b=SWKY8076CN3+UzuSDr9Ms7quEWY9D1PLNmsOMs1V5HFBMsLRYdZsOSWJsbDfHNoChn 5Dh0LuDqX9E78d/Bu4AFospxYIWWZOjnz6fGt8ABgZBe8pdsKsjePI2kFl0U5CTt/fDu 0Ezdz3j3UU8L91rHfjRkBY0w7ZpRgot3Kc+y4= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1718646506; x=1719251306; h=content-transfer-encoding:cc:to:subject:message-id:date:from :in-reply-to:references:mime-version:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=Ht3nmXsfVyHqN7MZhkWsXX4IGV1mSXqwV5Hjran4uPg=; b=cxbecB0OwThgq2LuM17JHwCZdmTX6JQskdWD4NEjtOO+e5pF12LSKIJwln81LQ4Unm eDAhvUu/FmCn7PzLLTX4aRev85MBxO5IMlo1J72wb3Fs1ssaxpJX5glWCMAmdfc0wLPh 8F9Q92ltkLFl/v7lk+wcOyUarE4JWMbTuBz9+jgvUbiGy71INSZvEqotFwp1lRvzNIYk gnpxm10C/1QmURl4OYJre/SsEJdYoLF2PyOPpf2+TBq0vYemsbLaa9tsWO+1UfkQ7Lij zQJGNVL7YlMaS4//zgGyiHtpwLMZJYxe4kv02C28OirTCRGGqYw9jsVK8Qjaa/zvDI0Q AolA== X-Gm-Message-State: AOJu0YzVUD5F42yjLJ8/8DhFr196GfPOOEtxTgZ2VNPp9XVDlz4Wbya5 WhrsJWL2Hd5H5v8fRAZZozMKmLwJK8A0FP1sW7J+To1FxWhF2W+uW+RdNvL/6fniMFBdQk3EMs+ UNdBMvHoJrRhbODvIM84+fKIbqwPpOdpnVHBryQ== X-Google-Smtp-Source: AGHT+IGiWOmYTolurqstW55WMRK4Z1eSiiALiW6PWVKLR5kOcwASnOrqRI0uOfpsBJAYoRX3ru7Un+4m4M1sAfRnu04= X-Received: by 2002:a4a:d124:0:b0:5bd:b378:7921 with SMTP id 006d021491bc7-5bdb37884d0mr7065434eaf.7.1718646506356; Mon, 17 Jun 2024 10:48:26 -0700 (PDT) MIME-Version: 1.0 References: <20240425182738.4771-1-stephen@networkplumber.org> <20240615160215.117401-1-stephen@networkplumber.org> In-Reply-To: <20240615160215.117401-1-stephen@networkplumber.org> From: Patrick Robb Date: Mon, 17 Jun 2024 13:48:15 -0400 Message-ID: Subject: Re: [PATCH v2 0/3] malloc related cleanups To: Stephen Hemminger Cc: dev@dpdk.org, Maxime Coquelin Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org For CI Testing: re-applying to main and retesting because main was in a bad state (now fixed by Maxime), causing a virtio_smoke fail on this series. https://git.dpdk.org/dpdk/commit/?id=3D6bdc14606724bc7fb3834d5ec59b1cccf98a= df28 On Sat, Jun 15, 2024 at 12:02=E2=80=AFPM Stephen Hemminger wrote: > > The type parameter for malloc is only used for tracing. > Fix documentation and don't pass through heap routines. > > Stephen Hemminger (3): > rte_malloc: document that type is for tracing > eal: remove type argument from internal routines > event/sw: avoid snprintf truncation > > v2 - keep usage for tracing > - combine event malloc type patch > > drivers/event/sw/iq_chunk.h | 2 -- > drivers/event/sw/sw_evdev.c | 2 +- > lib/eal/common/eal_common_memzone.c | 6 ++--- > lib/eal/common/malloc_heap.c | 39 ++++++++++++----------------- > lib/eal/common/malloc_heap.h | 7 +++--- > lib/eal/common/rte_malloc.c | 2 +- > lib/eal/include/rte_malloc.h | 24 +++++++++--------- > 7 files changed, 35 insertions(+), 47 deletions(-) > > -- > 2.43.0 >