From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pd0-f174.google.com (mail-pd0-f174.google.com [209.85.192.174]) by dpdk.org (Postfix) with ESMTP id 0A86E68CB for ; Fri, 18 Jul 2014 18:14:11 +0200 (CEST) Received: by mail-pd0-f174.google.com with SMTP id fp1so5244369pdb.5 for ; Fri, 18 Jul 2014 09:15:12 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:user-agent:date:from:to:cc:subject :references:mime-version:content-type:content-disposition; bh=CirZGrQGIuLSsJZgyfu6qhb9gZKD/As8c+nyzJr47WU=; b=MKhpzWC7RatRvEdi+dj0lZjQqdCch4l2k0xoiYMqK3z7A/YJDy2Rz9ofhUVNFfW8qN 9QJ272Vw2ES1UmIhawNgZoXtnBZrMCmvwYy85ddD11y10R5Q+Py7/ctE4YeHn+jXAAGM gxo4tv9xDtHIb+3A9InRakYWtkvrq67Hj1MBOSgLGCENZCSyJD9OC+nPDibExFP30nDR Imp06J4AgsJ5jr3FvEAlSAWNT3GpYtkkHkfPHTZ7kZfe25GDbQtb9rCC4yArYqLQJq4F O/LRZrghltSiXRoFS4MjXnSGPEq3FHFAQEXbfX1JsTZOzRW77xzJHXqlgNDAAbgl1NEa xzrA== X-Gm-Message-State: ALoCoQmVhNpuzHJMigfVWHZIMZW+UGcpbjsB0KzM9VcWJxhdu59uaHzYiCX/yu0ykpkiXVb8PHpl X-Received: by 10.68.231.7 with SMTP id tc7mr6633018pbc.32.1405700112396; Fri, 18 Jul 2014 09:15:12 -0700 (PDT) Received: from localhost (static-50-53-66-61.bvtn.or.frontiernet.net. [50.53.66.61]) by mx.google.com with ESMTPSA id z3sm24670383pas.15.2014.07.18.09.15.11 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 18 Jul 2014 09:15:11 -0700 (PDT) Message-Id: <20140718161514.360394178@networkplumber.org> User-Agent: quilt/0.63-1 Date: Fri, 18 Jul 2014 09:14:49 -0700 From: Stephen Hemminger To: Thomas Monjalon References: <20140718161447.020882834@networkplumber.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15 Content-Disposition: inline; filename=igb_uio-name.patch Cc: dev@dpdk.org Subject: [dpdk-dev] [PATCH 02/10] igb_uio: use standard uio naming X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Jul 2014 16:14:12 -0000 Don't put capitialization and space in name since it will show up in /proc/interrupts. Instead use driver name to follow the conventions used in the kernel by other drivers. Signed-off-by: Stephen Hemminger --- a/lib/librte_eal/linuxapp/igb_uio/igb_uio.c 2014-06-19 14:29:53.775667934 -0700 +++ b/lib/librte_eal/linuxapp/igb_uio/igb_uio.c 2014-06-19 14:59:16.000000000 -0700 @@ -589,7 +589,7 @@ igbuio_pci_probe(struct pci_dev *dev, co } /* fill uio infos */ - udev->info.name = "Intel IGB UIO"; + udev->info.name = "igb_uio"; udev->info.version = "0.1"; udev->info.handler = igbuio_pci_irqhandler; udev->info.irqcontrol = igbuio_pci_irqcontrol;