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 93DB3A0613 for ; Tue, 24 Sep 2019 18:42:41 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 5E21A343C; Tue, 24 Sep 2019 18:42:41 +0200 (CEST) Received: from mail-pf1-f194.google.com (mail-pf1-f194.google.com [209.85.210.194]) by dpdk.org (Postfix) with ESMTP id B7865343C for ; Tue, 24 Sep 2019 18:42:39 +0200 (CEST) Received: by mail-pf1-f194.google.com with SMTP id q12so1690457pff.9 for ; Tue, 24 Sep 2019 09:42:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20150623.gappssmtp.com; s=20150623; h=date:from:to:cc:subject:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=1JCKK3bNzAd1Iq5UvSujXGnJarwpKlXpzwXxdvxuxRc=; b=XMwdqWW12VlFiW+61DddnxZrwLI5qFPe+Mlq9ii3gXtMZo1u7aSrrue08Nh+TgnQ8L WIOZWWR290Irxta6Q6PZWbUGS/HB15QKjN5ylvuIjM7xZRDvsfe3SR2CCZw0K10JLPS6 rtZ6ol7QMt6HO2Hp/jZJCpfxlqWx0eF71BejbEeNhgKzBMC2x2xWJeE6PJhsMuvBYygu KDWgBRGkt3PXPgddkI+kdBCIJfBXUx3tXktPcA8Zh8/BBHTKkf6svgiHt8faXFhbySln TqoIytQqAkijmo3da3Q8JImPCCBUoyVTvJjyCLOADu/rHj8OWw5PGDuaBjzx24xA/HjD cIXQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=1JCKK3bNzAd1Iq5UvSujXGnJarwpKlXpzwXxdvxuxRc=; b=mTQhG1NZiATNEOwvXX04gB8mKdlVMSElLmxlhvjtDIsJh2uU+L+J446LlWZQtyRtbi 6g/ue8hGHDp5eOUD9/PNvbC4tOLIEyR0QV2fX+GheLTqW5e+I8cyAbVgj4FltC7nXEt5 b0AVGWN+oBGwtshsdfHb1WT50ry2g6j8vBW6rBKe0Hi6nPEYsIreCfV0QnmARkiqddnV dpMvim1dbciKAHbdNwill+xMNXUL7Nk+qm19hJyGg1gut1LvY9g7w2PwCh1Itc199YYZ yhAapfUQKqH2ekLi8PBiaIH+sTt23oi6Xspu3ASToMA2x+srowDCgLfQTJUqNMM+anBO OEoA== X-Gm-Message-State: APjAAAWYPqNqma7AsJHMLZO1aVX5Us+S0wdgbwbe/y1SgjTHDYKXHQ1H 4Tiaq64l4nYkHFF24kkZkKYycQ== X-Google-Smtp-Source: APXvYqxeJGJmlNyJATuO12uR5Q5DhW96tBBQ4ZTuIGKFXue/QqtoZwl4ilZ8tytV/1gtS068JrZCaw== X-Received: by 2002:a63:d846:: with SMTP id k6mr4037873pgj.378.1569343358855; Tue, 24 Sep 2019 09:42:38 -0700 (PDT) Received: from hermes.lan (204-195-22-127.wavecable.com. [204.195.22.127]) by smtp.gmail.com with ESMTPSA id b3sm2525459pfd.125.2019.09.24.09.42.38 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 24 Sep 2019 09:42:38 -0700 (PDT) Date: Tue, 24 Sep 2019 09:42:35 -0700 From: Stephen Hemminger To: Ciara Loftus Cc: dev@dpdk.org, xiaolong.ye@intel.com, kevin.laatz@intel.com, bruce.richardson@intel.com Message-ID: <20190924094235.53ddeaf7@hermes.lan> In-Reply-To: <20190919141520.4227-3-ciara.loftus@intel.com> References: <20190919141520.4227-1-ciara.loftus@intel.com> <20190919141520.4227-3-ciara.loftus@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH 2/3] net/af_xdp: support pinning of IRQs 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" On Thu, 19 Sep 2019 14:15:19 +0000 Ciara Loftus wrote: > +char driver_array[NUM_DRIVERS][NAME_MAX] = {"i40e", "ixgbe", "mlx5_core"}; This only makes sense in this file. Should be static.