From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pb0-f51.google.com (mail-pb0-f51.google.com [209.85.160.51]) by dpdk.org (Postfix) with ESMTP id 7A243B0B6 for ; Wed, 14 May 2014 18:35:00 +0200 (CEST) Received: by mail-pb0-f51.google.com with SMTP id ma3so1878174pbc.24 for ; Wed, 14 May 2014 09:35:08 -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=zSpu78GZ7JhY1L+l90qFTLSVzUcLRToe8/nQu+/gHzc=; b=HdL639ps/YLeatfjLEM+xdbe8bVqVKSYc0CuqTkYDhhlLLpPfDUHsHXpkadQL5g00L SjI0bnFB6oDlyrHyvo4gLk7lRJkhLsm30ImrsneERH0WU13ttUCc5OQvFISzpT+UGHe5 ae1ZYHk/9Z8cE88EDLxAVwXJ5w8sbpWZhJDNe7mYpfb63bOgEbcBz5OXKpajOeM5dcQz tFNaRxVgdWUwn43Ccc6WuDkzPcvhssDqkT2Xgz9vcJj8lXJKUzlZeLkx/dAQYIYc+8PB PAXKmX5jnaq0QhIOKWN/5GQVXJUJZKARMvJlBmPaQMqMDvzgkCua7pWamN9Wk8CABDzk j79g== X-Gm-Message-State: ALoCoQm4IOcyOfpxaGy3fpVWnz6hMBPYt4mD8qa8XW2Elk5YmX6st+pnY2pAXylHfcOXFkvwsLy2 X-Received: by 10.68.254.70 with SMTP id ag6mr5697563pbd.33.1400085308023; Wed, 14 May 2014 09:35:08 -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 di3sm4371350pbc.11.2014.05.14.09.35.06 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 14 May 2014 09:35:07 -0700 (PDT) Message-Id: <20140514163506.330252356@networkplumber.org> User-Agent: quilt/0.61-1 Date: Wed, 14 May 2014 09:34:03 -0700 From: Stephen Hemminger To: dev@dpdk.org References: <20140514163401.079384157@networkplumber.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15 Content-Disposition: inline; filename=igb_uio-name.patch Cc: Stephen Hemminger Subject: [dpdk-dev] [PATCH 2/5] 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: Wed, 14 May 2014 16:35:01 -0000 Don't put capitialization and space in name since it will show up in /proc/interrupts. Instead use driver name like other kernel drivers. Signed-off-by: Stephen Hemminger --- a/lib/librte_eal/linuxapp/igb_uio/igb_uio.c 2014-05-14 09:01:30.621248162 -0700 +++ b/lib/librte_eal/linuxapp/igb_uio/igb_uio.c 2014-05-14 09:01:30.621248162 -0700 @@ -511,7 +511,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;