[dpdk-dev] [PATCH v5] distributor_app: new sample app

2014-10-01 Thread reshmapa
From: Reshma Pattan A new sample app that shows the usage of the distributor library. This app works as follows: * An RX thread runs which pulls packets from each ethernet port in turn and passes those packets to worker using a distributor component. * The workers

[dpdk-dev] [PATCH v4] distributor_app: gracefull shutdown of tx/rx threads on SIGINT

2014-10-01 Thread reshmapa
From: Reshma Pattan *Handled gracefull shutdown of rx and tx threads upon SIGINT. *Gracefull shutdown of worker threads will be handled in future enhancements. Signed-off-by: Reshma Pattan --- examples/distributor_app/main.c | 12

[dpdk-dev] [PATCH v3] distributor_app: new sample app

2014-09-30 Thread reshmapa
From: Reshma Pattan A new sample app that shows the usage of the distributor library. This app works as follows: * An RX thread runs which pulls packets from each ethernet port in turn and passes those packets to worker using a distributor component. * The workers

[dpdk-dev] [PATCH v2] distributor_app: new sample app

2014-09-24 Thread reshmapa
From: Reshma Pattan A new sample app that shows the usage of the distributor library. This app works as follows: * An RX thread runs which pulls packets from each ethernet port in turn and passes those packets to worker using a distributor component. * The workers

[dpdk-dev] [PATCH 3/3] distributor_app: removed extra spaces

2014-09-16 Thread reshmapa
From: Reshma Pattan Changes in V2: Signed-off-by: Reshma Pattan --- examples/distributor_app/main.c | 22 +++--- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/examples/distributor_app/main.c b/examples/distributor_app/main.c index

[dpdk-dev] [PATCH 2/3] distributor_app: code review comments implementation

2014-09-16 Thread reshmapa
From: Reshma Pattan * support provided for command-line option portmask. * removed -g option in make file * spacing adjustment in header files inclusion in main.c * removal of const +3 in delcarration of rte_mbuf inside output_buffer structure

[dpdk-dev] [PATCH 1/3] distributor_app: new sample app

2014-09-16 Thread reshmapa
From: Bruce Richardson A new sample app that shows the usage of the distributor library. This app works as follows: * An RX thread runs which pulls packets from each ethernet port in turn and passes those packets to worker using a distributor component. * The

[dpdk-dev] [PATCH 0/3] distributor_app: new sample application for distributor library

2014-09-16 Thread reshmapa
From: Reshma Pattan A new sample app that shows the usage of the distributor library. This app works as follows: *An RX thread runs which pulls packets from each ethernet port in turn and passes those packets to worker using a distributor component. *The workers take