[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20190402.132630.845370282468217165.davem@davemloft.net>
Date: Tue, 02 Apr 2019 13:26:30 -0700 (PDT)
From: David Miller <davem@...emloft.net>
To: mzhivich@...mai.com
Cc: netdev@...r.kernel.org, dledford@...hat.com, andrew@...n.ch,
LinoSanfilippo@....de, thomas.lendacky@....com,
iyappan@...amperecomputing.com, quan@...amperecomputing.com,
jcliburn@...il.com, siva.kallam@...adcom.com, sgoutham@...ium.com,
shshaikh@...vell.com, bh74.an@...sung.com, peppe.cavallaro@...com,
mcoquelin.stm32@...il.com, hkallweit1@...il.com
Subject: Re: [PATCH] ethtool: fix SPEED_UNKNOWN definition to avoid
signed-unsigned comparison
From: Michael Zhivich <mzhivich@...mai.com>
Date: Mon, 1 Apr 2019 13:14:28 -0400
> When building C++ userspace code that includes ethtool.h
> with "-Werror -Wall", g++ complains about signed-unsigned comparison in
> ethtool_validate_speed() due to definition of SPEED_UNKNOWN as -1.
>
> Change definition of SPEED_UNKNOWN to UINT_MAX to match the type of
> ethtool_validate_speed() argument (__u32).
>
> Update storage type for link speed in drivers to use u32 instead of int
> or u16 to bring drivers up-to-date with ethtool.h which includes SPEED_*
> constants larger than range of u16.
>
> Fix usage of SPEED_* constants in
> drivers/net/ethernet/cavium/thunder/thunder_bgx.c and
> drivers/infiniband/ulp/ipoib/ipoib_ethtool.c.
>
> Signed-off-by: Michael Zhivich <mzhivich@...mai.com>
Waaaaay too many changes in one patch. Do one thing at a time.
Also, are you absolutely sure that the things you changed from 'int'
aren't used in other ways where the signedness matters? For example
for error returns?
And maybe the drivers using u16 are legitimate because they are
operating on speeds only within that bitmap range. Type matching is
not an end to itself. So I don't want to see u16 --> u32 conversions
where they aren't even necessary.
Also:
> /* Return lane speed in unit of 1e6 bit/sec */
> -static inline int ib_speed_enum_to_int(int speed)
> +static inline u32 ib_speed_enum_to_int(int speed)
This is sloppy.
You are changing the return type, but not adjusting the name of the
function appropriately. The function name says it converts to
an 'int' but now it actually converts to and returns a u32.
You need to split up, audit, and present these changes more carefully
and properly.
Thank you.
Powered by blists - more mailing lists