[dpdk-dev] [PATCH] eal: remove unused fields

2014-05-05 Thread Thomas Monjalon
2014-04-18 09:23, Neil Horman: > On Fri, Apr 18, 2014 at 02:58:08PM +0200, David Marchand wrote: > > There is no need for a 'magic' field in struct rte_config, as this part of > > the structure is local to each process. All threads of a process are > > synchronised because of the run_once atomic. >

[dpdk-dev] [PATCH] eal: remove unused fields

2014-04-18 Thread David Marchand
There is no need for a 'magic' field in struct rte_config, as this part of the structure is local to each process. All threads of a process are synchronised because of the run_once atomic. So remove this field, as it is only adding confusion when reading code that references 'magic' field from stru

[dpdk-dev] [PATCH] eal: remove unused fields

2014-04-18 Thread Neil Horman
On Fri, Apr 18, 2014 at 02:58:08PM +0200, David Marchand wrote: > There is no need for a 'magic' field in struct rte_config, as this part of the > structure is local to each process. All threads of a process are synchronised > because of the run_once atomic. > So remove this field, as it is only ad