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 D6C3C43399; Wed, 22 Nov 2023 09:22:22 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4A096402EC; Wed, 22 Nov 2023 09:22:22 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mails.dpdk.org (Postfix) with ESMTP id 0997D4028C for ; Wed, 22 Nov 2023 09:22:19 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1700641339; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=YJsIz9D4U2EtS7eML4OdzPW/4k1hzadyi7g35msI2b0=; b=dvLlvbKs7t6MJMzWRzAV7DJOevcZU2bbMR2SVASqb82wRxc+p1nRtyqgbSVPwHDmQqXqTb XkIlwG3TyahBTM0pGp073yyjuT5SlhSV9VpicqVJHoMrPYfOQS2Q1RK/n0klBpJbxAtlCG Wd7p8T+DloW3IUmMniBc6hAHaXfnG6Q= Received: from mail-lj1-f199.google.com (mail-lj1-f199.google.com [209.85.208.199]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-64-LeAAjEW2PEGw2teSynkWJA-1; Wed, 22 Nov 2023 03:22:15 -0500 X-MC-Unique: LeAAjEW2PEGw2teSynkWJA-1 Received: by mail-lj1-f199.google.com with SMTP id 38308e7fff4ca-2c50255b905so61596171fa.0 for ; Wed, 22 Nov 2023 00:22:15 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1700641334; x=1701246134; 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=YJsIz9D4U2EtS7eML4OdzPW/4k1hzadyi7g35msI2b0=; b=UQXkp42Sm6qdxvtGQUsO6uyRuQnRtxeyb179nOUsL7RACso033L7PLrJbZ29huDCn4 gC+g+CvvPqiF3kGJ4zvb7JNvVISpb3NgRiuGVXLoz6Gcv5kIF4gnwpkwRExcw5HopSYZ uLD8T+wZ7hZVOjpxCaQUQzXbITfzMuYEhk25c4lEMsF4gs33Qb9d8JtyR/PxD664JVXX XoGqJDjQ98UCwIKifQfugGBuMFuVm2p/7FHDNUOunEbV3jishZ+k9oqxQ9v3Jon4TxRK pNGu+zAjiEGVNC+CxrJQPmaN7+gUUH0omtt72R6k++uZrXtWvJlP73MCuzO73vmz8Gjv kGkA== X-Gm-Message-State: AOJu0YxZOwEOcvJtbxr8uTCzdkG3CbQDQjRsruzyTip4XkEoDSdgIDjl psoKdP9ArKmFwSWDnqDwU0hQQb800bYsetd7yN2Bt/fvDK5Tx0LI+sJ++0OMT3AzFwu4mchIG5f eIeURuY7CYWd2uq5FgQs= X-Received: by 2002:a2e:3a11:0:b0:2c5:3139:2d04 with SMTP id h17-20020a2e3a11000000b002c531392d04mr1126699lja.47.1700641334483; Wed, 22 Nov 2023 00:22:14 -0800 (PST) X-Google-Smtp-Source: AGHT+IGYAC2aS4d10/OW6lu+KXPNS07uguHKKFGcsR1DuxpP2aJ6sPbJZf2NDiQO3FKDUdibcZfeJZTmnsAIxU2tUEY= X-Received: by 2002:a2e:3a11:0:b0:2c5:3139:2d04 with SMTP id h17-20020a2e3a11000000b002c531392d04mr1126689lja.47.1700641334182; Wed, 22 Nov 2023 00:22:14 -0800 (PST) MIME-Version: 1.0 References: <20231122075840.58703-1-supeng2087@aliyun.com> In-Reply-To: <20231122075840.58703-1-supeng2087@aliyun.com> From: David Marchand Date: Wed, 22 Nov 2023 09:22:02 +0100 Message-ID: Subject: Re: [PATCH] examples/ipsec-secgw: fix cmp_sa_key bug To: supeng2087 Cc: dev@dpdk.org, supeng X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com 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 Hello, On Wed, Nov 22, 2023 at 9:18=E2=80=AFAM supeng2087 = wrote: > > From: supeng > > Inbound direction, sad_lookup function will call cmp_sa_key to compare pa= cket outer ip info with local sa. Local sa src ip should equal packet dst = ip, Local sa dst ip should equal src ip. No need to send 5 mails for the same patch. All 5 were blocked, waiting in the moderation queue because you did not register to the dev@ mailing list. In the future, and before sending new revisions, please have a look at: https://doc.dpdk.org/guides/contributing/patches.html Thanks. --=20 David Marchand