Re: [ovs-dev] [PATCH v3 04/16] dpif: Allow hash actions in dpif_execute_helper_cb()

2014-05-01 Thread Simon Horman
On Thu, May 01, 2014 at 08:44:29AM -0700, Ben Pfaff wrote: > On Tue, Apr 22, 2014 at 05:54:52PM +0900, Simon Horman wrote: > > Rather then prohibiting hash actions dpif_execute_helper_cb() > > execute them by passing them on to aux->dpif->dpif_class->execute() > > and save the updated packet metada

Re: [ovs-dev] [PATCH v3 04/16] dpif: Allow hash actions in dpif_execute_helper_cb()

2014-05-01 Thread Ben Pfaff
On Tue, Apr 22, 2014 at 05:54:52PM +0900, Simon Horman wrote: > Rather then prohibiting hash actions dpif_execute_helper_cb() > execute them by passing them on to aux->dpif->dpif_class->execute() > and save the updated packet metadata afterwards. It is assumed > that if a hash is calculated it will

[ovs-dev] [PATCH v3 04/16] dpif: Allow hash actions in dpif_execute_helper_cb()

2014-04-22 Thread Simon Horman
Rather then prohibiting hash actions dpif_execute_helper_cb() execute them by passing them on to aux->dpif->dpif_class->execute() and save the updated packet metadata afterwards. It is assumed that if a hash is calculated it will be sored in the dp_hash field of the metadata. This is in preparatio