DPDK patches and discussions
 help / color / mirror / Atom feed
From: "Qiu, Michael" <michael.qiu@intel.com>
To: Stephen Hemminger <stephen@networkplumber.org>,
	"dev@dpdk.org" <dev@dpdk.org>
Subject: Re: [dpdk-dev] [PATCH 1/2] pci: cleanup whitespace
Date: Tue, 14 Apr 2015 09:29:03 +0000	[thread overview]
Message-ID: <533710CFB86FA344BFBF2D6802E602860465254A@SHSMSX101.ccr.corp.intel.com> (raw)
In-Reply-To: <1428963071-4226-2-git-send-email-stephen@networkplumber.org>

On 4/14/2015 6:11 AM, Stephen Hemminger wrote:
> Fix whitespace errors reported by checkpatch, including
> missing space around operators and places where tab should
> be used instead of space.
>
> Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>

Acked-by: Michael Qiu <michael.qiu@intel.com>

> ---
>  lib/librte_eal/linuxapp/eal/eal_pci.c | 17 ++++++++---------
>  1 file changed, 8 insertions(+), 9 deletions(-)
>
> diff --git a/lib/librte_eal/linuxapp/eal/eal_pci.c b/lib/librte_eal/linuxapp/eal/eal_pci.c
> index 9cb0ffd..c98a778 100644
> --- a/lib/librte_eal/linuxapp/eal/eal_pci.c
> +++ b/lib/librte_eal/linuxapp/eal/eal_pci.c
> @@ -68,22 +68,22 @@ pci_unbind_kernel_driver(struct rte_pci_device *dev)
>  
>  	/* open /sys/bus/pci/devices/AAAA:BB:CC.D/driver */
>  	snprintf(filename, sizeof(filename),
> -	         SYSFS_PCI_DEVICES "/" PCI_PRI_FMT "/driver/unbind",
> -	         loc->domain, loc->bus, loc->devid, loc->function);
> +		 SYSFS_PCI_DEVICES "/" PCI_PRI_FMT "/driver/unbind",
> +		 loc->domain, loc->bus, loc->devid, loc->function);
>  
>  	f = fopen(filename, "w");
>  	if (f == NULL) /* device was not bound */
>  		return 0;
>  
>  	n = snprintf(buf, sizeof(buf), PCI_PRI_FMT "\n",
> -	             loc->domain, loc->bus, loc->devid, loc->function);
> +		     loc->domain, loc->bus, loc->devid, loc->function);
>  	if ((n < 0) || (n >= (int)sizeof(buf))) {
>  		RTE_LOG(ERR, EAL, "%s(): snprintf failed\n", __func__);
>  		goto error;
>  	}
>  	if (fwrite(buf, n, 1, f) == 0) {
>  		RTE_LOG(ERR, EAL, "%s(): could not write to %s\n", __func__,
> -				filename);
> +			filename);
>  		goto error;
>  	}
>  
> @@ -205,8 +205,7 @@ pci_parse_sysfs_resource(const char *filename, struct rte_pci_device *dev)
>  		return -1;
>  	}
>  
> -	for (i = 0; i<PCI_MAX_RESOURCE; i++) {
> -
> +	for (i = 0; i < PCI_MAX_RESOURCE; i++) {
>  		if (fgets(buf, sizeof(buf), f) == NULL) {
>  			RTE_LOG(ERR, EAL,
>  				"%s(): cannot read resource\n", __func__);
> @@ -402,8 +401,8 @@ parse_pci_addr_format(const char *buf, int bufsize, uint16_t *domain,
>  		};
>  		char *str[PCI_FMT_NVAL]; /* last element-separator is "." not ":" */
>  	} splitaddr;
> -
>  	char *buf_copy = strndup(buf, bufsize);
> +
>  	if (buf_copy == NULL)
>  		return -1;
>  
> @@ -411,7 +410,7 @@ parse_pci_addr_format(const char *buf, int bufsize, uint16_t *domain,
>  			!= PCI_FMT_NVAL - 1)
>  		goto error;
>  	/* final split is on '.' between devid and function */
> -	splitaddr.function = strchr(splitaddr.devid,'.');
> +	splitaddr.function = strchr(splitaddr.devid, '.');
>  	if (splitaddr.function == NULL)
>  		goto error;
>  	*splitaddr.function++ = '\0';
> @@ -671,7 +670,7 @@ rte_eal_pci_probe_one_driver(struct rte_pci_driver *dr, struct rte_pci_device *d
>  			if (ret != 0)
>  				return ret;
>  		} else if (dr->drv_flags & RTE_PCI_DRV_FORCE_UNBIND &&
> -		           rte_eal_process_type() == RTE_PROC_PRIMARY) {
> +			   rte_eal_process_type() == RTE_PROC_PRIMARY) {
>  			/* unbind current driver */
>  			if (pci_unbind_kernel_driver(dev) < 0)
>  				return -1;


  reply	other threads:[~2015-04-14  9:29 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-04-13 22:11 [dpdk-dev] [PATCH 0/2] eal-pci: cleanups Stephen Hemminger
2015-04-13 22:11 ` [dpdk-dev] [PATCH 1/2] pci: cleanup whitespace Stephen Hemminger
2015-04-14  9:29   ` Qiu, Michael [this message]
2015-04-13 22:11 ` [dpdk-dev] [PATCH 2/2] pci: rearrange logic from compare loop Stephen Hemminger
2015-04-14  9:30   ` Qiu, Michael
2015-04-14 17:28     ` Stephen Hemminger
2015-05-19 10:12   ` Bruce Richardson
2015-08-03 16:03 ` [dpdk-dev] [PATCH 0/2] eal-pci: cleanups Thomas Monjalon

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=533710CFB86FA344BFBF2D6802E602860465254A@SHSMSX101.ccr.corp.intel.com \
    --to=michael.qiu@intel.com \
    --cc=dev@dpdk.org \
    --cc=stephen@networkplumber.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).