From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jeff Garzik Subject: Re: Driver writer hints (was [PATCH 3/4] Add ETHTOOL_[GS]PFLAGS sub-ioctls) Date: Fri, 10 Aug 2007 17:08:55 -0400 Message-ID: <46BCD3E7.1050403@garzik.org> References: <20070810202426.GA25050@havoc.gtf.org> <20070810202630.GB25095@havoc.gtf.org> <46BCCE57.1060802@garzik.org> <46BCD223.6020304@hp.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: netdev@vger.kernel.org, davem@davemloft.net, LKML To: Rick Jones Return-path: Received: from srv5.dvmed.net ([207.36.208.214]:42953 "EHLO mail.dvmed.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755535AbXHJVI4 (ORCPT ); Fri, 10 Aug 2007 17:08:56 -0400 In-Reply-To: <46BCD223.6020304@hp.com> Sender: netdev-owner@vger.kernel.org List-Id: netdev.vger.kernel.org Rick Jones wrote: >> If we are getting (retrieving) flags: >> >> 3) Userland issues ETHTOOL_GPFLAGS, to obtain a 32-bit bitmap >> >> 4) Userland prints out a tag returned from ETHTOOL_GSTRINGS >> for each bit set to one in the bitmap. If a bit is set, >> but there is no string to describe it, that bit is ignored. >> (i.e. a list of 5 strings is returned, but bit 24 is set) > > Is that to enable "hidden" bits? If not I'd think that emitting some > sort of "UNKNOWN_FLAG" might help flush-out little oopses like > forgetting a string. No purpose other than attempting to define sane edge case behavior. The bitmap interface is completely invisible to the user (who sees UTF8 strings on the command line), and given the interface I felt the easiest thing to do would be to define an "ignore any garbage" default policy. Due to the way the interface is designed, each userland user must be aware of the precise number of valid bits in the bitmap /anyway/, thus making clipping/ignoring garbage bits almost a trivial side effect. Jeff