From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pd0-f181.google.com (mail-pd0-f181.google.com [209.85.192.181]) by dpdk.org (Postfix) with ESMTP id C82D36848 for ; Sat, 7 Jun 2014 01:50:51 +0200 (CEST) Received: by mail-pd0-f181.google.com with SMTP id z10so2964905pdj.26 for ; Fri, 06 Jun 2014 16:51:05 -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=EQ/lHQf13ZI7YcuHPIEbtsBR9grMmWwVpLgb/7MMCPI=; b=K2gn8cQkfEeVTw5VR0CPEpqkD+hh+L9Tk60rGOlTK370UN8MucjJN0CC6HFnjdhynE j2ylzywQT6eporUY3ndFvIIbDoL88c5O5YUElpBJFcBTHzTdGovpqwzhm/DUsL81nND2 gdh2QnPsoe/badD1Mx2Ls8abmL7Ujfme7pAlrU9vKkZodsieWEYTYL6JTPtkX1kKa978 wfuW5XWbKdrf9GW/oJkhwGJ1QFX+1NTBLC9O2XlbHVV97AFHfQZbH1YG9mjKM8b4nF53 XfpY2daXArkWiBSjPFGw8buSj9VFK5lfDFMFjBGN52viliOPzKt9b4AoyAOMl/nv1jXA U7aw== X-Gm-Message-State: ALoCoQlFDMdcqrVggSy38P1b4zlVZjBInPpfaAaL168oPwqPWxd3JDSODNJNqsePGvX6I06kZS9l X-Received: by 10.68.197.39 with SMTP id ir7mr6062616pbc.78.1402098665192; Fri, 06 Jun 2014 16:51:05 -0700 (PDT) Received: from localhost (static-50-53-83-51.bvtn.or.frontiernet.net. [50.53.83.51]) by mx.google.com with ESMTPSA id pl10sm40871382pbb.56.2014.06.06.16.51.04 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 06 Jun 2014 16:51:04 -0700 (PDT) Message-Id: <20140606235103.632913900@networkplumber.org> User-Agent: quilt/0.63-1 Date: Fri, 06 Jun 2014 16:50:30 -0700 From: Stephen Hemminger To: Alan Carew References: <20140606235028.189345212@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 v2 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, 06 Jun 2014 23:50:52 -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 +++ b/lib/librte_eal/linuxapp/igb_uio/igb_uio.c @@ -509,7 +509,7 @@ } /* 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;