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 0549EA0C43; Fri, 17 Sep 2021 16:58:47 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id BF0D241130; Fri, 17 Sep 2021 16:58:46 +0200 (CEST) Received: from mail-pj1-f49.google.com (mail-pj1-f49.google.com [209.85.216.49]) by mails.dpdk.org (Postfix) with ESMTP id C36E5410EC for ; Fri, 17 Sep 2021 16:58:45 +0200 (CEST) Received: by mail-pj1-f49.google.com with SMTP id n13-20020a17090a4e0d00b0017946980d8dso10196193pjh.5 for ; Fri, 17 Sep 2021 07:58:45 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20210112.gappssmtp.com; s=20210112; h=date:from:to:cc:subject:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=UwNXmJcYxNjsmHGuu4tVaUFZChSBjQpUF9oT9SniGoA=; b=QA0hQqe0emeDgEI4QTp6yhUaM81w5xFuTxXfr4pZi16eAYG6+R5hs26KMxRmxMhjUy QxQQfPG1+sogb6w2k2SuPjh7SkWzWKTTmpcsW1QJVVCiz/LXc7VcmBb6m3lDLYKM6bgD TvbVWI9N+eYPc48ikF9u+JAFb1CkcxHrRuK1cDUbjVfKjO/rK1unFd7ohcw/VJ+i9BTb XN7uMenqol4QDZ5oqNwSRHogc1g6cBYpwGAm2DRNI9p+YgBbNPtwotIb/ND5fxhlUs+w Ecc7xTtNV3bggdnsVr75umm3nPcX9ulWoYUWcLK2pAUW9yOb0LeSjfnUm287O7/panWh Ikzw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:date:from:to:cc:subject:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=UwNXmJcYxNjsmHGuu4tVaUFZChSBjQpUF9oT9SniGoA=; b=bRUU9DOjcHx4t9DycXdBxiR7809s15V7giClCVsgWGp+6EPI1ueJJj/hoPXxjC/WU4 UXrhVscQ3edreYUeMRsOrickGqRJU7W8pTINMfskQ8wJgMvqs9ZcLupNAXiZYqjv9vHx OFvrfoiKhJ8NanagRscBNkWFVyIOyf8LJBf2YMmptnmx+0UzyW5A/W4uuaWCwmazY7fX yFzMtmBgtlWR8ZJlfXpnoYpa/IgHwqJRXKdAc9j2IPaZzhKZV0mQzzIaIWC/RuyOL/X4 0Fp12mKwrE7r4QHOuISh8UHTGDocH8VRvN6Dx2EcyMwfxM/kTLZHW9hGEKNprZSIIhJo raDQ== X-Gm-Message-State: AOAM530Sse+Tl1OLyT5y7u4os/4OqNqUWaz1NKWd5TsVl5EmWr7Qdamy zmDWWD1EpQT9KIPi39fy8Nocqw== X-Google-Smtp-Source: ABdhPJzUrcc8KD2tPQxUyyBbf0BNDWj5fJ1jm1sARofe1SiaA3ifVBoLAutNcbYWbuRS7iFZbMiSbQ== X-Received: by 2002:a17:90a:e60d:: with SMTP id j13mr13012963pjy.52.1631890724880; Fri, 17 Sep 2021 07:58:44 -0700 (PDT) Received: from hermes.local (204-195-33-123.wavecable.com. [204.195.33.123]) by smtp.gmail.com with ESMTPSA id m64sm6896130pga.55.2021.09.17.07.58.43 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 17 Sep 2021 07:58:44 -0700 (PDT) Date: Fri, 17 Sep 2021 07:58:41 -0700 From: Stephen Hemminger To: "Peng, ZhihongX" Cc: David Marchand , "Burakov, Anatoly" , "Ananyev, Konstantin" , dev , "Lin, Xueqin" Message-ID: <20210917075841.242ab988@hermes.local> In-Reply-To: References: <20210910020147.148019-1-zhihongx.peng@intel.com> <20210916013843.342366-1-zhihongx.peng@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v2] Enable AddressSanitizer feature on DPDK 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 Sender: "dev" On Fri, 17 Sep 2021 09:12:07 +0000 "Peng, ZhihongX" wrote: > > > By referring to its implementation algorithm > > > (https://github.com/google/sanitizers/wiki/AddressSanitizerAlgorithm), > > > enable heap-buffer-overflow and use-after-free functions on dpdk. > > > DPDK ASAN function currently only supports on Linux x86_64. We are using ASAN on Arm64 without problems, don't know why the patch shouldn't work there as well.