diff mbox

[PATCHv3] example:generator:option to supply core mask

Message ID 1438255441-5150-1-git-send-email-balakrishna.garapati@linaro.org
State New
Headers show

Commit Message

Balakrishna Garapati July 30, 2015, 11:24 a.m. UTC
Signed-off-by: Balakrishna.Garapati <balakrishna.garapati@linaro.org>
---
 changed the command line argument conventions.
 example/generator/odp_generator.c | 57 ++++++++++++++++++++++++++-------------
 1 file changed, 39 insertions(+), 18 deletions(-)

Comments

Stuart Haslam Aug. 5, 2015, 5:13 p.m. UTC | #1
On Thu, Jul 30, 2015 at 01:24:01PM +0200, Balakrishna.Garapati wrote:
> Signed-off-by: Balakrishna.Garapati <balakrishna.garapati@linaro.org>
> ---
>  changed the command line argument conventions.
>  example/generator/odp_generator.c | 57 ++++++++++++++++++++++++++-------------
>  1 file changed, 39 insertions(+), 18 deletions(-)
> 
> diff --git a/example/generator/odp_generator.c b/example/generator/odp_generator.c
> index d6ec758..19ad7b4 100644
> --- a/example/generator/odp_generator.c
> +++ b/example/generator/odp_generator.c
> @@ -42,6 +42,7 @@
>   */
>  typedef struct {
>  	int cpu_count;		/**< system CPU count */
> +	const char *mask;	/**< core mask */

s/core mask/CPU mask/

>  	int if_count;		/**< Number of interfaces to be used */
>  	char **if_names;	/**< Array of pointers to interface names */
>  	char *if_str;		/**< Storage for interface names */
> @@ -633,18 +634,27 @@ int main(int argc, char *argv[])
>  	if (args->appl.cpu_count)
>  		num_workers = args->appl.cpu_count;
>  
> -	/* ping mode need two worker */
> -	if (args->appl.mode == APPL_MODE_PING)
> -		num_workers = 2;
> +	if (args->appl.mask) {
> +		(void)odp_cpumask_from_str(&cpumask, args->appl.mask);

This (void) isn't needed as the function returns void anyway so you're
not ignoring anything.

> +		num_workers = odp_cpumask_count(&cpumask);
> +	} else {
> +		num_workers = odp_cpumask_def_worker(&cpumask, num_workers);
> +	}
>  
> -	/* Get default worker cpumask */
> -	num_workers = odp_cpumask_def_worker(&cpumask, num_workers);
>  	(void)odp_cpumask_to_str(&cpumask, cpumaskstr, sizeof(cpumaskstr));
>  
>  	printf("num worker threads: %i\n", num_workers);
>  	printf("first CPU:          %i\n", odp_cpumask_first(&cpumask));
>  	printf("cpu mask:           %s\n", cpumaskstr);
>  
> +	/* ping mode need two workers */
> +	if (args->appl.mode == APPL_MODE_PING) {
> +		if (num_workers < 2) {
> +			EXAMPLE_ERR("Need at least two worker threads\n");
> +			exit(EXIT_FAILURE);
> +		}
> +	}
> +
>  	/* Create packet pool */
>  	memset(&params, 0, sizeof(params));
>  	params.pkt.seg_len = SHM_PKT_POOL_BUF_SIZE;
> @@ -692,12 +702,13 @@ int main(int argc, char *argv[])
>  	memset(thread_tbl, 0, sizeof(thread_tbl));
>  
>  	if (args->appl.mode == APPL_MODE_PING) {
> -		odp_cpumask_t cpu0_mask;
> +		odp_cpumask_t cpu_mask;
>  		odp_queue_t tq;
> +                int cpu_first, cpu_next;

checkpatch - space indented.

>  
> -		/* Previous code forced both threads to CPU 0 */
> -		odp_cpumask_zero(&cpu0_mask);
> -		odp_cpumask_set(&cpu0_mask, 0);
> +		odp_cpumask_zero(&cpu_mask);
> +		cpu_first = odp_cpumask_first(&cpumask);
> +		odp_cpumask_set(&cpu_mask, cpu_first);
>  
>  		tq = odp_queue_create("", ODP_QUEUE_TYPE_POLL, NULL);
>  		if (tq == ODP_QUEUE_INVALID)
> @@ -713,7 +724,7 @@ int main(int argc, char *argv[])
>  		if (args->thread[1].tmo_ev == ODP_TIMEOUT_INVALID)
>  			abort();
>  		args->thread[1].mode = args->appl.mode;
> -		odph_linux_pthread_create(&thread_tbl[1], &cpu0_mask,
> +		odph_linux_pthread_create(&thread_tbl[1], &cpu_mask,
>  					  gen_recv_thread, &args->thread[1]);
>  
>  		tq = odp_queue_create("", ODP_QUEUE_TYPE_POLL, NULL);
> @@ -730,7 +741,10 @@ int main(int argc, char *argv[])
>  		if (args->thread[0].tmo_ev == ODP_TIMEOUT_INVALID)
>  			abort();
>  		args->thread[0].mode = args->appl.mode;
> -		odph_linux_pthread_create(&thread_tbl[0], &cpu0_mask,
> +		cpu_next = odp_cpumask_next(&cpumask, cpu_first);
> +		odp_cpumask_zero(&cpu_mask);
> +		odp_cpumask_set(&cpu_mask, cpu_next);
> +		odph_linux_pthread_create(&thread_tbl[0], &cpu_mask,
>  					  gen_send_thread, &args->thread[0]);
>  
>  		/* only wait send thread to join */
> @@ -812,11 +826,12 @@ static void parse_args(int argc, char *argv[], appl_args_t *appl_args)
>  	static struct option longopts[] = {
>  		{"interface", required_argument, NULL, 'I'},
>  		{"workers", required_argument, NULL, 'w'},
> +		{"coremask", required_argument, NULL, 'c'},

cpumask

>  		{"srcmac", required_argument, NULL, 'a'},
>  		{"dstmac", required_argument, NULL, 'b'},
> -		{"srcip", required_argument, NULL, 'c'},
> +		{"srcip", required_argument, NULL, 's'},
>  		{"dstip", required_argument, NULL, 'd'},
> -		{"packetsize", required_argument, NULL, 's'},
> +		{"packetsize", required_argument, NULL, 'p'},
>  		{"mode", required_argument, NULL, 'm'},
>  		{"count", required_argument, NULL, 'n'},
>  		{"timeout", required_argument, NULL, 't'},
> @@ -831,7 +846,7 @@ static void parse_args(int argc, char *argv[], appl_args_t *appl_args)
>  	appl_args->timeout = -1;
>  
>  	while (1) {
> -		opt = getopt_long(argc, argv, "+I:a:b:c:d:s:i:m:n:t:w:h",
> +		opt = getopt_long(argc, argv, "+I:a:b:s:d:p:i:m:n:t:w:c:h",
>  					longopts, &long_index);

checkpatch - alignment

>  		if (opt == -1)
>  			break;	/* No more options */
> @@ -840,6 +855,9 @@ static void parse_args(int argc, char *argv[], appl_args_t *appl_args)
>  		case 'w':
>  			appl_args->cpu_count = atoi(optarg);
>  			break;
> +		case 'c':
> +			appl_args->mask = optarg;
> +			break;
>  		/* parse packet-io interface names */
>  		case 'I':
>  			len = strlen(optarg);
> @@ -908,7 +926,7 @@ static void parse_args(int argc, char *argv[], appl_args_t *appl_args)
>  			}
>  			break;
>  
> -		case 'c':
> +		case 's':
>  			if (scan_ip(optarg, &appl_args->srcip) != 1) {
>  				EXAMPLE_ERR("wrong src ip:%s\n", optarg);
>  				exit(EXIT_FAILURE);
> @@ -922,7 +940,7 @@ static void parse_args(int argc, char *argv[], appl_args_t *appl_args)
>  			}
>  			break;
>  
> -		case 's':
> +		case 'p':
>  			appl_args->payload = atoi(optarg);
>  			break;
>  
> @@ -1021,14 +1039,17 @@ static void usage(char *progname)
>  	       "  -I, --interface Eth interfaces (comma-separated, no spaces)\n"
>  	       "  -a, --srcmac src mac address\n"
>  	       "  -b, --dstmac dst mac address\n"
> -	       "  -c, --srcip src ip address\n"
> +	       "  -s, --srcip src ip address\n"
>  	       "  -d, --dstip dst ip address\n"
> -	       "  -s, --packetsize payload length of the packets\n"
> +	       "  -p, --packetsize payload length of the packets\n"
>  	       "  -m, --mode work mode: send udp(u), receive(r), send icmp(p)\n"
>  	       "  -n, --count the number of packets to be send\n"
>  	       "  -t, --timeout only for ping mode, wait ICMP reply timeout seconds\n"
>  	       "  -i, --interval wait interval ms between sending each packet\n"
>  	       "                 default is 1000ms. 0 for flood mode\n"
> +	       "  -w, --workers specify number of workers need to be assigned to application\n"
> +	       "	         default is to assign all\n"
> +	       "  -c, --coremask to set on cores\n"
>  	       "\n"
>  	       "Optional OPTIONS\n"
>  	       "  -h, --help       Display help and exit.\n"
> -- 
> 1.9.1
>
Balakrishna Garapati Aug. 5, 2015, 6:38 p.m. UTC | #2
Fixed the comments in the new version.

On 5 August 2015 at 19:13, Stuart Haslam <stuart.haslam@linaro.org> wrote:

> On Thu, Jul 30, 2015 at 01:24:01PM +0200, Balakrishna.Garapati wrote:
> > Signed-off-by: Balakrishna.Garapati <balakrishna.garapati@linaro.org>
> > ---
> >  changed the command line argument conventions.
> >  example/generator/odp_generator.c | 57
> ++++++++++++++++++++++++++-------------
> >  1 file changed, 39 insertions(+), 18 deletions(-)
> >
> > diff --git a/example/generator/odp_generator.c
> b/example/generator/odp_generator.c
> > index d6ec758..19ad7b4 100644
> > --- a/example/generator/odp_generator.c
> > +++ b/example/generator/odp_generator.c
> > @@ -42,6 +42,7 @@
> >   */
> >  typedef struct {
> >       int cpu_count;          /**< system CPU count */
> > +     const char *mask;       /**< core mask */
>
> s/core mask/CPU mask/
>
> >       int if_count;           /**< Number of interfaces to be used */
> >       char **if_names;        /**< Array of pointers to interface names
> */
> >       char *if_str;           /**< Storage for interface names */
> > @@ -633,18 +634,27 @@ int main(int argc, char *argv[])
> >       if (args->appl.cpu_count)
> >               num_workers = args->appl.cpu_count;
> >
> > -     /* ping mode need two worker */
> > -     if (args->appl.mode == APPL_MODE_PING)
> > -             num_workers = 2;
> > +     if (args->appl.mask) {
> > +             (void)odp_cpumask_from_str(&cpumask, args->appl.mask);
>
> This (void) isn't needed as the function returns void anyway so you're
> not ignoring anything.
>
> > +             num_workers = odp_cpumask_count(&cpumask);
> > +     } else {
> > +             num_workers = odp_cpumask_def_worker(&cpumask,
> num_workers);
> > +     }
> >
> > -     /* Get default worker cpumask */
> > -     num_workers = odp_cpumask_def_worker(&cpumask, num_workers);
> >       (void)odp_cpumask_to_str(&cpumask, cpumaskstr, sizeof(cpumaskstr));
> >
> >       printf("num worker threads: %i\n", num_workers);
> >       printf("first CPU:          %i\n", odp_cpumask_first(&cpumask));
> >       printf("cpu mask:           %s\n", cpumaskstr);
> >
> > +     /* ping mode need two workers */
> > +     if (args->appl.mode == APPL_MODE_PING) {
> > +             if (num_workers < 2) {
> > +                     EXAMPLE_ERR("Need at least two worker threads\n");
> > +                     exit(EXIT_FAILURE);
> > +             }
> > +     }
> > +
> >       /* Create packet pool */
> >       memset(&params, 0, sizeof(params));
> >       params.pkt.seg_len = SHM_PKT_POOL_BUF_SIZE;
> > @@ -692,12 +702,13 @@ int main(int argc, char *argv[])
> >       memset(thread_tbl, 0, sizeof(thread_tbl));
> >
> >       if (args->appl.mode == APPL_MODE_PING) {
> > -             odp_cpumask_t cpu0_mask;
> > +             odp_cpumask_t cpu_mask;
> >               odp_queue_t tq;
> > +                int cpu_first, cpu_next;
>
> checkpatch - space indented.
>
> >
> > -             /* Previous code forced both threads to CPU 0 */
> > -             odp_cpumask_zero(&cpu0_mask);
> > -             odp_cpumask_set(&cpu0_mask, 0);
> > +             odp_cpumask_zero(&cpu_mask);
> > +             cpu_first = odp_cpumask_first(&cpumask);
> > +             odp_cpumask_set(&cpu_mask, cpu_first);
> >
> >               tq = odp_queue_create("", ODP_QUEUE_TYPE_POLL, NULL);
> >               if (tq == ODP_QUEUE_INVALID)
> > @@ -713,7 +724,7 @@ int main(int argc, char *argv[])
> >               if (args->thread[1].tmo_ev == ODP_TIMEOUT_INVALID)
> >                       abort();
> >               args->thread[1].mode = args->appl.mode;
> > -             odph_linux_pthread_create(&thread_tbl[1], &cpu0_mask,
> > +             odph_linux_pthread_create(&thread_tbl[1], &cpu_mask,
> >                                         gen_recv_thread,
> &args->thread[1]);
> >
> >               tq = odp_queue_create("", ODP_QUEUE_TYPE_POLL, NULL);
> > @@ -730,7 +741,10 @@ int main(int argc, char *argv[])
> >               if (args->thread[0].tmo_ev == ODP_TIMEOUT_INVALID)
> >                       abort();
> >               args->thread[0].mode = args->appl.mode;
> > -             odph_linux_pthread_create(&thread_tbl[0], &cpu0_mask,
> > +             cpu_next = odp_cpumask_next(&cpumask, cpu_first);
> > +             odp_cpumask_zero(&cpu_mask);
> > +             odp_cpumask_set(&cpu_mask, cpu_next);
> > +             odph_linux_pthread_create(&thread_tbl[0], &cpu_mask,
> >                                         gen_send_thread,
> &args->thread[0]);
> >
> >               /* only wait send thread to join */
> > @@ -812,11 +826,12 @@ static void parse_args(int argc, char *argv[],
> appl_args_t *appl_args)
> >       static struct option longopts[] = {
> >               {"interface", required_argument, NULL, 'I'},
> >               {"workers", required_argument, NULL, 'w'},
> > +             {"coremask", required_argument, NULL, 'c'},
>
> cpumask
>
> >               {"srcmac", required_argument, NULL, 'a'},
> >               {"dstmac", required_argument, NULL, 'b'},
> > -             {"srcip", required_argument, NULL, 'c'},
> > +             {"srcip", required_argument, NULL, 's'},
> >               {"dstip", required_argument, NULL, 'd'},
> > -             {"packetsize", required_argument, NULL, 's'},
> > +             {"packetsize", required_argument, NULL, 'p'},
> >               {"mode", required_argument, NULL, 'm'},
> >               {"count", required_argument, NULL, 'n'},
> >               {"timeout", required_argument, NULL, 't'},
> > @@ -831,7 +846,7 @@ static void parse_args(int argc, char *argv[],
> appl_args_t *appl_args)
> >       appl_args->timeout = -1;
> >
> >       while (1) {
> > -             opt = getopt_long(argc, argv, "+I:a:b:c:d:s:i:m:n:t:w:h",
> > +             opt = getopt_long(argc, argv, "+I:a:b:s:d:p:i:m:n:t:w:c:h",
> >                                       longopts, &long_index);
>
> checkpatch - alignment
>
> >               if (opt == -1)
> >                       break;  /* No more options */
> > @@ -840,6 +855,9 @@ static void parse_args(int argc, char *argv[],
> appl_args_t *appl_args)
> >               case 'w':
> >                       appl_args->cpu_count = atoi(optarg);
> >                       break;
> > +             case 'c':
> > +                     appl_args->mask = optarg;
> > +                     break;
> >               /* parse packet-io interface names */
> >               case 'I':
> >                       len = strlen(optarg);
> > @@ -908,7 +926,7 @@ static void parse_args(int argc, char *argv[],
> appl_args_t *appl_args)
> >                       }
> >                       break;
> >
> > -             case 'c':
> > +             case 's':
> >                       if (scan_ip(optarg, &appl_args->srcip) != 1) {
> >                               EXAMPLE_ERR("wrong src ip:%s\n", optarg);
> >                               exit(EXIT_FAILURE);
> > @@ -922,7 +940,7 @@ static void parse_args(int argc, char *argv[],
> appl_args_t *appl_args)
> >                       }
> >                       break;
> >
> > -             case 's':
> > +             case 'p':
> >                       appl_args->payload = atoi(optarg);
> >                       break;
> >
> > @@ -1021,14 +1039,17 @@ static void usage(char *progname)
> >              "  -I, --interface Eth interfaces (comma-separated, no
> spaces)\n"
> >              "  -a, --srcmac src mac address\n"
> >              "  -b, --dstmac dst mac address\n"
> > -            "  -c, --srcip src ip address\n"
> > +            "  -s, --srcip src ip address\n"
> >              "  -d, --dstip dst ip address\n"
> > -            "  -s, --packetsize payload length of the packets\n"
> > +            "  -p, --packetsize payload length of the packets\n"
> >              "  -m, --mode work mode: send udp(u), receive(r), send
> icmp(p)\n"
> >              "  -n, --count the number of packets to be send\n"
> >              "  -t, --timeout only for ping mode, wait ICMP reply
> timeout seconds\n"
> >              "  -i, --interval wait interval ms between sending each
> packet\n"
> >              "                 default is 1000ms. 0 for flood mode\n"
> > +            "  -w, --workers specify number of workers need to be
> assigned to application\n"
> > +            "                 default is to assign all\n"
> > +            "  -c, --coremask to set on cores\n"
> >              "\n"
> >              "Optional OPTIONS\n"
> >              "  -h, --help       Display help and exit.\n"
> > --
> > 1.9.1
> >
>
diff mbox

Patch

diff --git a/example/generator/odp_generator.c b/example/generator/odp_generator.c
index d6ec758..19ad7b4 100644
--- a/example/generator/odp_generator.c
+++ b/example/generator/odp_generator.c
@@ -42,6 +42,7 @@ 
  */
 typedef struct {
 	int cpu_count;		/**< system CPU count */
+	const char *mask;	/**< core mask */
 	int if_count;		/**< Number of interfaces to be used */
 	char **if_names;	/**< Array of pointers to interface names */
 	char *if_str;		/**< Storage for interface names */
@@ -633,18 +634,27 @@  int main(int argc, char *argv[])
 	if (args->appl.cpu_count)
 		num_workers = args->appl.cpu_count;
 
-	/* ping mode need two worker */
-	if (args->appl.mode == APPL_MODE_PING)
-		num_workers = 2;
+	if (args->appl.mask) {
+		(void)odp_cpumask_from_str(&cpumask, args->appl.mask);
+		num_workers = odp_cpumask_count(&cpumask);
+	} else {
+		num_workers = odp_cpumask_def_worker(&cpumask, num_workers);
+	}
 
-	/* Get default worker cpumask */
-	num_workers = odp_cpumask_def_worker(&cpumask, num_workers);
 	(void)odp_cpumask_to_str(&cpumask, cpumaskstr, sizeof(cpumaskstr));
 
 	printf("num worker threads: %i\n", num_workers);
 	printf("first CPU:          %i\n", odp_cpumask_first(&cpumask));
 	printf("cpu mask:           %s\n", cpumaskstr);
 
+	/* ping mode need two workers */
+	if (args->appl.mode == APPL_MODE_PING) {
+		if (num_workers < 2) {
+			EXAMPLE_ERR("Need at least two worker threads\n");
+			exit(EXIT_FAILURE);
+		}
+	}
+
 	/* Create packet pool */
 	memset(&params, 0, sizeof(params));
 	params.pkt.seg_len = SHM_PKT_POOL_BUF_SIZE;
@@ -692,12 +702,13 @@  int main(int argc, char *argv[])
 	memset(thread_tbl, 0, sizeof(thread_tbl));
 
 	if (args->appl.mode == APPL_MODE_PING) {
-		odp_cpumask_t cpu0_mask;
+		odp_cpumask_t cpu_mask;
 		odp_queue_t tq;
+                int cpu_first, cpu_next;
 
-		/* Previous code forced both threads to CPU 0 */
-		odp_cpumask_zero(&cpu0_mask);
-		odp_cpumask_set(&cpu0_mask, 0);
+		odp_cpumask_zero(&cpu_mask);
+		cpu_first = odp_cpumask_first(&cpumask);
+		odp_cpumask_set(&cpu_mask, cpu_first);
 
 		tq = odp_queue_create("", ODP_QUEUE_TYPE_POLL, NULL);
 		if (tq == ODP_QUEUE_INVALID)
@@ -713,7 +724,7 @@  int main(int argc, char *argv[])
 		if (args->thread[1].tmo_ev == ODP_TIMEOUT_INVALID)
 			abort();
 		args->thread[1].mode = args->appl.mode;
-		odph_linux_pthread_create(&thread_tbl[1], &cpu0_mask,
+		odph_linux_pthread_create(&thread_tbl[1], &cpu_mask,
 					  gen_recv_thread, &args->thread[1]);
 
 		tq = odp_queue_create("", ODP_QUEUE_TYPE_POLL, NULL);
@@ -730,7 +741,10 @@  int main(int argc, char *argv[])
 		if (args->thread[0].tmo_ev == ODP_TIMEOUT_INVALID)
 			abort();
 		args->thread[0].mode = args->appl.mode;
-		odph_linux_pthread_create(&thread_tbl[0], &cpu0_mask,
+		cpu_next = odp_cpumask_next(&cpumask, cpu_first);
+		odp_cpumask_zero(&cpu_mask);
+		odp_cpumask_set(&cpu_mask, cpu_next);
+		odph_linux_pthread_create(&thread_tbl[0], &cpu_mask,
 					  gen_send_thread, &args->thread[0]);
 
 		/* only wait send thread to join */
@@ -812,11 +826,12 @@  static void parse_args(int argc, char *argv[], appl_args_t *appl_args)
 	static struct option longopts[] = {
 		{"interface", required_argument, NULL, 'I'},
 		{"workers", required_argument, NULL, 'w'},
+		{"coremask", required_argument, NULL, 'c'},
 		{"srcmac", required_argument, NULL, 'a'},
 		{"dstmac", required_argument, NULL, 'b'},
-		{"srcip", required_argument, NULL, 'c'},
+		{"srcip", required_argument, NULL, 's'},
 		{"dstip", required_argument, NULL, 'd'},
-		{"packetsize", required_argument, NULL, 's'},
+		{"packetsize", required_argument, NULL, 'p'},
 		{"mode", required_argument, NULL, 'm'},
 		{"count", required_argument, NULL, 'n'},
 		{"timeout", required_argument, NULL, 't'},
@@ -831,7 +846,7 @@  static void parse_args(int argc, char *argv[], appl_args_t *appl_args)
 	appl_args->timeout = -1;
 
 	while (1) {
-		opt = getopt_long(argc, argv, "+I:a:b:c:d:s:i:m:n:t:w:h",
+		opt = getopt_long(argc, argv, "+I:a:b:s:d:p:i:m:n:t:w:c:h",
 					longopts, &long_index);
 		if (opt == -1)
 			break;	/* No more options */
@@ -840,6 +855,9 @@  static void parse_args(int argc, char *argv[], appl_args_t *appl_args)
 		case 'w':
 			appl_args->cpu_count = atoi(optarg);
 			break;
+		case 'c':
+			appl_args->mask = optarg;
+			break;
 		/* parse packet-io interface names */
 		case 'I':
 			len = strlen(optarg);
@@ -908,7 +926,7 @@  static void parse_args(int argc, char *argv[], appl_args_t *appl_args)
 			}
 			break;
 
-		case 'c':
+		case 's':
 			if (scan_ip(optarg, &appl_args->srcip) != 1) {
 				EXAMPLE_ERR("wrong src ip:%s\n", optarg);
 				exit(EXIT_FAILURE);
@@ -922,7 +940,7 @@  static void parse_args(int argc, char *argv[], appl_args_t *appl_args)
 			}
 			break;
 
-		case 's':
+		case 'p':
 			appl_args->payload = atoi(optarg);
 			break;
 
@@ -1021,14 +1039,17 @@  static void usage(char *progname)
 	       "  -I, --interface Eth interfaces (comma-separated, no spaces)\n"
 	       "  -a, --srcmac src mac address\n"
 	       "  -b, --dstmac dst mac address\n"
-	       "  -c, --srcip src ip address\n"
+	       "  -s, --srcip src ip address\n"
 	       "  -d, --dstip dst ip address\n"
-	       "  -s, --packetsize payload length of the packets\n"
+	       "  -p, --packetsize payload length of the packets\n"
 	       "  -m, --mode work mode: send udp(u), receive(r), send icmp(p)\n"
 	       "  -n, --count the number of packets to be send\n"
 	       "  -t, --timeout only for ping mode, wait ICMP reply timeout seconds\n"
 	       "  -i, --interval wait interval ms between sending each packet\n"
 	       "                 default is 1000ms. 0 for flood mode\n"
+	       "  -w, --workers specify number of workers need to be assigned to application\n"
+	       "	         default is to assign all\n"
+	       "  -c, --coremask to set on cores\n"
 	       "\n"
 	       "Optional OPTIONS\n"
 	       "  -h, --help       Display help and exit.\n"