[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20090413.155335.248383596.davem@davemloft.net>
Date: Mon, 13 Apr 2009 15:53:35 -0700 (PDT)
From: David Miller <davem@...emloft.net>
To: jpirko@...hat.com
Cc: linux-kernel@...r.kernel.org, netdev@...r.kernel.org,
jgarzik@...ox.com, shemminger@...ux-foundation.org,
bridge@...ts.linux-foundation.org, fubar@...ibm.com,
bonding-devel@...ts.sourceforge.net, kaber@...sh.net,
mschmidt@...hat.com, dada1@...mosbay.com, ivecera@...hat.com
Subject: Re: [PATCH 2/4] net: introduce a list of device addresses
dev_addr_list
From: Jiri Pirko <jpirko@...hat.com>
Date: Mon, 13 Apr 2009 10:42:02 +0200
> @@ -210,6 +210,12 @@ struct dev_addr_list
> #define dmi_users da_users
> #define dmi_gusers da_gusers
>
> +struct hw_addr {
> + struct list_head list;
> + unsigned char addr[MAX_ADDR_LEN];
> + int refcount;
> +};
> +
Please don't pollute the global namespace with a structure name
like this. Use "netdev_hw_addr" or "net_hw_addr".
> +static inline int __hw_addr_add(struct list_head *list, unsigned char *addr,
> + int addr_len)
Please let the compiler inline things as it sees fit. These
aren't routines in some header file or anything like that.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists