From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qk0-f193.google.com (mail-qk0-f193.google.com [209.85.220.193]) by dpdk.org (Postfix) with ESMTP id 769CA5F22 for ; Wed, 14 Mar 2018 14:58:14 +0100 (CET) Received: by mail-qk0-f193.google.com with SMTP id s78so3501096qkl.8 for ; Wed, 14 Mar 2018 06:58:14 -0700 (PDT) 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=/lkmTbU3L8gunW2WSLL15kq1ytPnTUtdI7bVeWA63k8=; b=u2oekSF8QWTGJKMR1mHoeFrcD03s3fBcpIKfxgXisnEqKBZsdd3kqwP4/6FujYwC7v vTNJtaAKGfzsurrSMvSzUcUu5NKES+c9B4/Mfqf9hAm/F+ccPodzAm5RA6aRU8rWiyj9 0k+jzRuKlUJaHg/xyCjnBHYcYnNHg2+fD/UApXDAcRz5yuGRgEBA1Un3ZontHdQ7Dbih THv9XbQw40KAR26LUEjWe52Q7g7tsd3oyMqFdtgHpd7aTtjskVbqTiAcKYFksVYpzaAT H9YAqVMtc3PI5ZDB2Y3Jl1DdCHDhqRgfzYl4fUeXtEhAbr5RWLr4zUdishnARumh6SM9 qwTA== 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=/lkmTbU3L8gunW2WSLL15kq1ytPnTUtdI7bVeWA63k8=; b=T6qkrWOgIdNcCJHeQ/6UfjLuoZW68RN0PS+TRRTTupGuWQmMU9sLopZ62q79s+YAZ/ GcAbLhyeCWGIrFsYCplARHso0y/WeYEzUX1UT2cLnx/eLfqD3fHCygU89tVvwGLmjJ5p xiy739motHq41q5a/PjepsboGfxwnjI3i9XFeJ0TkujoZFVcxQ928b7xnNIKqe56Up2K RkyFHu9PbjB7c+q4WJ7MiyVk8PrkHeCec5+wVzfZTFm0pG1qYouOO5U3MXQ2ztdYrUV8 nta+C0dNwmtlXT6eOG77aXEJ44cnrFaB3mr14hxomHWkNNWoAGRcH3VeO49hDn9qGioo 9ObQ== X-Gm-Message-State: AElRT7GObSzgZFChmfqYXwE9qC73Dd34HiF2+zCe0ysDEz2iVZGFuhDh R4Kbg4GqZAbOUv6n3WLfDe6CZkCxpj7fX43ofKYfbA== X-Google-Smtp-Source: AG47ELsDtdqBZY0NQGUzuyjKajhnPs4enCiaVptYprYe9nolfQlD4P6h4dxtU1jBoSSb6I3whRvhVDhW/7W0OxbaZk0= X-Received: by 10.55.24.1 with SMTP id j1mr7087758qkh.23.1521035892935; Wed, 14 Mar 2018 06:58:12 -0700 (PDT) MIME-Version: 1.0 Received: by 10.12.181.207 with HTTP; Wed, 14 Mar 2018 06:58:12 -0700 (PDT) From: sharanya k Date: Wed, 14 Mar 2018 19:28:12 +0530 Message-ID: To: users@dpdk.org Content-Type: text/plain; charset="UTF-8" Subject: [dpdk-users] (no subject) 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: , X-List-Received-Date: Wed, 14 Mar 2018 13:58:14 -0000 Hi all, I am having some doubts in the flow classification pipeline code. 1. I couldnt understand what is the parameter msg and what is passed in msg in the following code, static void * pipeline_ml_msg_req_add_handler(struct pipeline *p, void *msg) { struct pipeline_ml_add_msg_req *req = msg; struct pipeline_ml_add_msg_rsp *rsp = msg; } 2. I also want to add the following function in a pipeline, static rte_pipeline_table_action_handler_miss get_ml_table_ah_miss(struct pipeline_mac_learning *p) For that I am thinking about calling the function (pipeline_ml_msg_req_add_handler(struct pipeline *p, void *msg) ) in the miss function inorder to add entries in the flow table if it is not already present there. How can I implement this? Can anyone please help me? Thanks, Sharanya