From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id E9D7CA04E6 for ; Tue, 10 Nov 2020 09:24:11 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 31CD52BAA; Tue, 10 Nov 2020 09:24:02 +0100 (CET) Received: from mail-lf1-f48.google.com (mail-lf1-f48.google.com [209.85.167.48]) by dpdk.org (Postfix) with ESMTP id 05B45100C for ; Thu, 5 Nov 2020 20:30:28 +0100 (CET) Received: by mail-lf1-f48.google.com with SMTP id l2so3983067lfk.0 for ; Thu, 05 Nov 2020 11:30:27 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to; bh=QEvChNAsvl6DAPC1IXoyjiMOGgn6wHPB9+IzSXUhJNM=; b=rMy+Wagjl5o9xjyqTjJQqmeocCgbHfKH3/xg1JpZ/g/oJyffuwA880h64P+NMVpdGW HD3i6AOrfKz/EF3QqiOyhVclaoc67DxM6OD6LMe4emg6kEqDLSSVWEfSu2UPPKIUfRqE 8M4PtWPBdcHlVmc86tELUO7j8Ac2eA1j6TSrBw62NAvfrCfIVB0Hj/jogW9PqNOQUQQD 1gp6pGKjhbyM4h7dDzNt7VMFOdiHf25lgM9Bf8h1DVqByIIYWtpwuMTD8H3E5y1PIbpE 6lwcqIXV1c7jry44hntMs1VqgXaOkDaDrHJK6mUOALcZj7g7/kJ+7/+a3WyKH/mt3sea uEpQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=QEvChNAsvl6DAPC1IXoyjiMOGgn6wHPB9+IzSXUhJNM=; b=SOVMC2fwJZZdMVYGfzYiu3siDklYbQLZDciHpJKJBHeomVmkeYOvVMTNSRZZjhr6hM On0RsBPX3is1JixYWp6A6xcL9MI3VT8X3JldD/73OPSbR9NJ219pjk2rSNa90IxeCvdQ E07xtg03sKvJ1HlBc5dMANKUFG+HsqLR3zRqzInNfFnK7LfX61XZ2xOKHhhXLMwuiLgN Lehr+2VShBtSJY8hQ5v1F6/z/exSrrdMGY4EkqqlMFgP2+YPOEOr9jI96Nmy89HSBP6B 5CF4IaQfuQxG5KgO3HAILQAXfMicCoHi+5FdQm5aIn67itqxfpYJzDh6fW/5k8JdtCWu q8Hg== X-Gm-Message-State: AOAM5333i5o/ZFP+kmcHmh6mGsa4fhwuDT4gLYyG2i2dBnqBlf1JQFXZ t5MqewUgGuwMVCbjYzDDMtCF+76DwEcM8RxoU0UdUb1X X-Google-Smtp-Source: ABdhPJxeJBbt0je2pWf3XUnUXRlv9noSXlRpVTLW+PnhMkV5ZnZC8ce66Fur3ahJeCJbjtHYW221aBW7g7AOUXG7YiQ= X-Received: by 2002:a19:4a16:: with SMTP id x22mr1764613lfa.66.1604604626205; Thu, 05 Nov 2020 11:30:26 -0800 (PST) MIME-Version: 1.0 From: rahul s Date: Fri, 6 Nov 2020 01:00:14 +0530 Message-ID: To: users@dpdk.org X-Mailman-Approved-At: Tue, 10 Nov 2020 09:23:59 +0100 Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: [dpdk-users] Attach an mbuf indirectly X-BeenThere: users@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK usage discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: users-bounces@dpdk.org Sender: "users" Hi, I have an mbuf having IP header and data in it.So I want to pass additional data named as M1 mid of IP header and data and pass to crypto dev for hashing(M1+data) .So here I want to pass the M1 to crypto device but should not be in the mbuf memory .we can do with sgl by segmenting the mbuf and passing like chain to crypto .Is there any other method to process? With regards Rahul