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 B801BA0599; Fri, 10 Apr 2020 07:00:57 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 537FA1D483; Fri, 10 Apr 2020 07:00:57 +0200 (CEST) Received: from mail-ot1-f45.google.com (mail-ot1-f45.google.com [209.85.210.45]) by dpdk.org (Postfix) with ESMTP id CDE981D44E for ; Fri, 10 Apr 2020 07:00:55 +0200 (CEST) Received: by mail-ot1-f45.google.com with SMTP id 88so829037otx.13 for ; Thu, 09 Apr 2020 22:00:55 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=emumba-com.20150623.gappssmtp.com; s=20150623; h=mime-version:from:date:message-id:subject:to :content-transfer-encoding; bh=227mC6+S3MdVWgVmZ32dKoBwBwwpen/Wj3N6j7hZ5kk=; b=CrJsfFxA34i1VJqro95jmxhjDqsThkrA+AvkUtQSXTlqR2tcujtnw6/OptN1ryB41w U1O+Z7T+4ovM6DU6YgXc2NfUPpnfVaNur4EJc3AS/Da43BeWD4a9kD/v7oG1T+ZjNFOM PLHkiOYqYxf3CXViXVjEdkM+rVjq/3w0Qns2S/3bFr8zIN2mMDklOB9HklXR2FP8YucD OR8FUYznIopNpydz1JPRf8INJh2ZNa9dDZmyk4+/RPlWpeQ/alhlZ4YQs59VOhN3mfh8 IOfAq+4+QMpGRl54OpzIAUHkGI27P5g5kaoRNWrGeElOCtfT/aO8DQpcApKCL2P+d+YV nliA== 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 :content-transfer-encoding; bh=227mC6+S3MdVWgVmZ32dKoBwBwwpen/Wj3N6j7hZ5kk=; b=Lfvc9ec4Q1ZjNtgQHnhCVn+CO8Q0nh25dF4hSRPmEeC3TClQY+FphxFG0kwHegAPiu DtCgc+Fu03NRNYJfrG5XJfVywr2SI+nDxYyISEJGG/hghPmxIoMt4LtE+oQY0i/Bx2/G pvxhDxTAHdhYp3XSUrQ3TurV56YoVI7ZGrQwn/YdqNdmGitNN6QyBOQPb46xF67knoVF bcECFr0y5hAHe7lCiGLJgJTRfvzA8RjJT+PkfFmZhacp1cWA2wPHXCHrEABaGMPG1yzi V0Id8U/FieS3Y/FbBAX34QAMLzoVbXquPxzs/KdbwueXAgELWOO9gWcxq+xEkViVF2PO sG1A== X-Gm-Message-State: AGi0PuacsdSehD+idts0LkTQi3HjyXbjIdNBcZDI0TCoMOtZ8zxYhiTA DdNsAOFXrdJVN4+J7mLTB4geC7hU2NvwXRXLPd1Roe3XAY4= X-Google-Smtp-Source: APiQypKKlRlcc58i3LNvetRwYwo4eCUEAimJGVwl/kZTUoj+RJjNLy/c+Z36uj9hkCO9sfIT///CAeAbQK6KOD8r8t8= X-Received: by 2002:a05:6830:19ee:: with SMTP id t14mr2964011ott.287.1586494853965; Thu, 09 Apr 2020 22:00:53 -0700 (PDT) MIME-Version: 1.0 From: Muhammad Ahmad Date: Fri, 10 Apr 2020 10:00:18 +0500 Message-ID: To: dev@dpdk.org Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Subject: [dpdk-dev] [RFC] An application to apply configuration from files X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 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" Hi, I was looking at the DPDK road map(https://core.dpdk.org/roadmap/), there is a point of having =E2=80=9Cdefault configuration from files=E2=80= =9D I have an idea of saving the configuration of ports and respective drivers in CSV or JSON format. Then a script will be used to apply that configuration. The addition of this script in usertools will be helpful if we have a large number of ports and we have to bind/unbind them from DPDK drivers. Please suggest. Signed-off-by: Muhammad Ahmad