From: David Miller <davem@davemloft.net>
To: rmanes@redhat.com
Cc: netdev@vger.kernel.org, amirv@mellanox.com, eyalpe@mellanox.com,
ogerlitz@mellanox.com
Subject: Re: [PATCH] net/mlx4: Handle return codes in mlx4_qp_attach_common
Date: Mon, 28 Sep 2015 22:26:42 -0700 (PDT) [thread overview]
Message-ID: <20150928.222642.1395622340146984028.davem@davemloft.net> (raw)
In-Reply-To: <CAM5t4r_uaRPJT0kiaqNkygu1ciCoVSVQhj5MLkn69uieXx1MHA@mail.gmail.com>
From: Robb Manes <rmanes@redhat.com>
Date: Fri, 25 Sep 2015 10:39:21 -0400
> @@ -1184,10 +1184,11 @@ out:
> if (prot == MLX4_PROT_ETH) {
> /* manage the steering entry for promisc mode */
> if (new_entry)
> - new_steering_entry(dev, port, steer, index, qp->qpn);
> + err = new_steering_entry(dev, port, steer,
> + index, qp->qpn);
> else
> - existing_steering_entry(dev, port, steer,
> - index, qp->qpn);
> + err = existing_steering_entry(dev, port, steer,
> + index, qp->qpn);
Please indent this properly.
When a function call spans multiple lines, the second and
subsequent lines must start precisely at the first column
after the openning parenthesis of the first line. You must
use the appropriate number of TAB then SPACE characters
necessary to achieve this.
Thanks.
next prev parent reply other threads:[~2015-09-29 5:26 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-09-25 14:39 [PATCH] net/mlx4: Handle return codes in mlx4_qp_attach_common Robb Manes
2015-09-27 4:31 ` Or Gerlitz
2015-09-29 5:26 ` David Miller [this message]
2015-09-29 15:03 ` [PATCH v2] " Robb Manes
2015-09-30 4:15 ` David Miller
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=20150928.222642.1395622340146984028.davem@davemloft.net \
--to=davem@davemloft.net \
--cc=amirv@mellanox.com \
--cc=eyalpe@mellanox.com \
--cc=netdev@vger.kernel.org \
--cc=ogerlitz@mellanox.com \
--cc=rmanes@redhat.com \
/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).