Intel-Wired-Lan Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Keller, Jacob E <jacob.e.keller@intel.com>
To: intel-wired-lan@osuosl.org
Subject: [Intel-wired-lan] [PATCH] fm10k: don't use BIT() macro where the value isn't a bitmask
Date: Thu, 14 Apr 2016 20:25:59 +0000	[thread overview]
Message-ID: <1460665559.28210.6.camel@intel.com> (raw)
In-Reply-To: <1460665047-24907-1-git-send-email-jacob.e.keller@intel.com>

On Thu, 2016-04-14 at 13:17 -0700, Jacob Keller wrote:
> The FM10K_MAX_DATA_PER_TXD is really just using a bitshift as a power
> of
> 2 operation in an efficient manner. We shouldn't represent this as a
> BIT()
> because that obscures the intention of the operation.
> 
> Signed-off-by: Jacob Keller <jacob.e.keller@intel.com>
> ---
> ?drivers/net/ethernet/intel/fm10k/fm10k.h | 2 +-
> ?1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/net/ethernet/intel/fm10k/fm10k.h
> b/drivers/net/ethernet/intel/fm10k/fm10k.h
> index fcf106e545c5..e98b86bf0ca1 100644
> --- a/drivers/net/ethernet/intel/fm10k/fm10k.h
> +++ b/drivers/net/ethernet/intel/fm10k/fm10k.h
> @@ -406,7 +406,7 @@ static inline u16 fm10k_desc_unused(struct
> fm10k_ring *ring)
> ?	?(&(((union fm10k_rx_desc *)((R)->desc))[i]))
> ?
> ?#define FM10K_MAX_TXD_PWR	14
> -#define FM10K_MAX_DATA_PER_TXD	BIT(FM10K_MAX_TXD_PWR)
> +#define FM10K_MAX_DATA_PER_TXD	(1u << FM10K_MAX_TXD_PWR)
> ?
> ?/* Tx Descriptors needed, worst case */
> ?#define TXD_USE_COUNT(S)	DIV_ROUND_UP((S),
> FM10K_MAX_DATA_PER_TXD)

Note: this *will* cause a checkpatch warning, but as per discussion
with Alex, I think this is a false positive. I don't know if there is a
good way to fix it? Perhaps we could introduce some sort of "power of
2" macro that would leave in a single place, but I really don't know if
that makes a lot of sense. I also am not sure how to make checkpatch.pl
avoid the complaints for specific cases such as this.

Thanks,
Jake

  reply	other threads:[~2016-04-14 20:25 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-04-14 20:17 [Intel-wired-lan] [PATCH] fm10k: don't use BIT() macro where the value isn't a bitmask Jacob Keller
2016-04-14 20:25 ` Keller, Jacob E [this message]
2016-06-14 16:44 ` Singh, Krishneil K

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=1460665559.28210.6.camel@intel.com \
    --to=jacob.e.keller@intel.com \
    --cc=intel-wired-lan@osuosl.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