> On Tue, Mar 03, 2009 at 09:19:09PM +0300, Evgeniy Polyakov wrote:
> > Hi Neil.
> >
> > On Tue, Mar 03, 2009 at 12:04:35PM -0500, Neil Horman (
nhorman@tuxdriver.com) wrote:
> > > +typedef enum {
> > > + NET_DM_CFG_VERSION = 0,
> > > + NET_DM_CFG_ALERT_COUNT,
> > > + NET_DM_CFG_ALERT_DELAY,
> > > + NET_DM_CFG_MAX,
> > > +} config_type_t;
> > > +
> > > +struct net_dm_config_entry {
> > > + config_type_t type;
> > > + uint64_t data;
> > > +};
> > > +
> >
> > Ugh, please add either some comments about its alignment or some padding
> > fields.
> >
> Yeah, I probably should align that to 64 bit boundaries for performance, thanks!