From: Alexander Duyck <alexander.h.duyck@redhat.com>
To: intel-wired-lan@osuosl.org
Subject: [Intel-wired-lan] [PATCH] igb: report unsupported ethtool settings in set_coalesce
Date: Fri, 22 May 2015 11:09:02 -0700 [thread overview]
Message-ID: <555F70BE.6090904@redhat.com> (raw)
In-Reply-To: <20150522174950.16145.78447.stgit@htfujina-fc.jf.intel.com>
On 05/22/2015 10:49 AM, Todd Fujinaka wrote:
> There are many settings possible using ethtool -C/--coalesce, but not
> all of them are supported. Report failure when an unsupported option is
> set.
>
> Signed-off-by: Todd Fujinaka <todd.fujinaka@intel.com>
> ---
> drivers/net/ethernet/intel/igb/igb_ethtool.c | 21 +++++++++++++++++++++
> 1 file changed, 21 insertions(+)
>
> diff --git a/drivers/net/ethernet/intel/igb/igb_ethtool.c b/drivers/net/ethernet/intel/igb/igb_ethtool.c
> index 109cad9..13560fe 100644
> --- a/drivers/net/ethernet/intel/igb/igb_ethtool.c
> +++ b/drivers/net/ethernet/intel/igb/igb_ethtool.c
> @@ -2159,6 +2159,27 @@ static int igb_set_coalesce(struct net_device *netdev,
> struct igb_adapter *adapter = netdev_priv(netdev);
> int i;
>
> + if ((ec->rx_max_coalesced_frames != -1) ||
> + (ec->rx_coalesce_usecs_irq != -1) ||
> + (ec->rx_max_coalesced_frames_irq != -1) ||
> + (ec->tx_max_coalesced_frames != -1) ||
> + (ec->tx_coalesce_usecs_irq != -1) ||
> + (ec->stats_block_coalesce_usecs != -1) ||
> + (ec->use_adaptive_rx_coalesce != -1) ||
> + (ec->use_adaptive_tx_coalesce != -1) ||
> + (ec->pkt_rate_low != -1) ||
> + (ec->rx_coalesce_usecs_low != -1) ||
> + (ec->rx_max_coalesced_frames_low != -1) ||
> + (ec->tx_coalesce_usecs_low != -1) ||
> + (ec->tx_max_coalesced_frames_low != -1) ||
> + (ec->pkt_rate_high != -1) ||
> + (ec->rx_coalesce_usecs_high != -1) ||
> + (ec->rx_max_coalesced_frames_high != -1) ||
> + (ec->tx_coalesce_usecs_high != -1) ||
> + (ec->tx_max_coalesced_frames_high != -1) ||
> + (ec->rate_sample_interval != -1))
> + return -ENOTSUPP;
> +
> if ((ec->rx_coalesce_usecs > IGB_MAX_ITR_USECS) ||
> ((ec->rx_coalesce_usecs > 3) &&
> (ec->rx_coalesce_usecs < IGB_MIN_ITR_USECS)) ||
>
Shouldn't these tests all give you a signed/unsigned mismatch since you
are comparing an unsigned 32 bit value versus a signed value?
- Alex
next prev parent reply other threads:[~2015-05-22 18:09 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-05-22 17:49 [Intel-wired-lan] [PATCH] igb: report unsupported ethtool settings in set_coalesce Todd Fujinaka
2015-05-22 18:09 ` Alexander Duyck [this message]
2015-05-22 18:10 ` Fujinaka, Todd
2015-05-22 18:29 ` Alexander Duyck
2015-06-02 23:02 ` Fujinaka, Todd
2015-06-03 9:32 ` Jeff Kirsher
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=555F70BE.6090904@redhat.com \
--to=alexander.h.duyck@redhat.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.