Re: [PATCH] drivers/net/pch_gbe: Cleanup stats use

From: Joe Perches
Date: Tue Aug 31 2010 - 21:38:54 EST


On Tue, 2010-08-31 at 18:33 -0700, Stephen Hemminger wrote:
> On Tue, 31 Aug 2010 11:38:35 -0700
> Joe Perches <joe@xxxxxxxxxxx> wrote:
>
> > struct pch_gbe_stats {
> > - signed char stat_string[ETH_GSTRING_LEN];
> > - int sizeof_stat;
> > - int stat_offset;
> > + signed char string[ETH_GSTRING_LEN];
> > + size_t size;
> > + size_t offset;
> > };
>
> Is this driver really using 'signed char' here?
> Should just be 'char' for a simple string.

You're right. Probably all the below should just be char.

$ grep -Pn "\bsigned\s+char\b" drivers/net/pch_gbe/*.[ch]
pch_gbe_ethtool.c:34: signed char string[ETH_GSTRING_LEN];
pch_gbe_param.c:155: signed char *name;
pch_gbe_param.c:156: signed char *err;
pch_gbe_param.c:165: struct pch_gbe_opt_list { int i; signed char *str; } *p;


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/