netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* invalid requirement from ethtool?
@ 2011-07-26 12:42 Eli Cohen
  2011-07-28  5:43 ` David Miller
  2011-08-15 17:24 ` Ben Hutchings
  0 siblings, 2 replies; 8+ messages in thread
From: Eli Cohen @ 2011-07-26 12:42 UTC (permalink / raw)
  To: davem; +Cc: netdev

Hi,
I see the following text in include/linux/ethtool.h and wonder what is
the reasoning for requiring that both params cannot be zero. I could
not track when and who inserted this text as it dates before git was
used to track kernel code, but my feeling is that is related to a
specific hardware limitation.

        /* How many packets to delay an RX interrupt after
         * a packet arrives.  If 0, only rx_coalesce_usecs is
         * used.  It is illegal to set both usecs and max frames
         * to zero as this would cause RX interrupts to never be
         * generated.
         */
        __u32   rx_max_coalesced_frames;

        /* How many packets to delay a TX interrupt after
         * a packet is sent.  If 0, only tx_coalesce_usecs is
         * used.  It is illegal to set both usecs and max frames
         * to zero as this would cause TX interrupts to never be
         * generated.
         */
        __u32   tx_max_coalesced_frames;

I found this in tg3 driver:
         /* No rx interrupts will be generated if both are zero */
        if ((ec->rx_coalesce_usecs == 0) &&
            (ec->rx_max_coalesced_frames == 0))
                return -EINVAL;

However, bnx2 for example allows setting both to zero.

I think both params zero should be allowed and mean coalescing is not
operational, thus we can remove these comments from ethtool.h

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2011-08-15 20:52 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-26 12:42 invalid requirement from ethtool? Eli Cohen
2011-07-28  5:43 ` David Miller
2011-07-28  7:23   ` Eli Cohen
2011-07-28  7:37     ` David Miller
2011-07-28 10:22       ` Ben Hutchings
2011-07-28 14:55         ` Eli Cohen
2011-08-15 17:24 ` Ben Hutchings
2011-08-15 20:49   ` David Miller

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).