public inbox for ltp@lists.linux.it
 help / color / mirror / Atom feed
From: Cyril Hrubis <chrubis@suse.cz>
To: ltp@lists.linux.it
Subject: [LTP] [PATCH 2/3] ltp/numa: cleanup work for numa/*
Date: Wed, 23 Nov 2016 14:34:46 +0100	[thread overview]
Message-ID: <20161123133445.GH3346@rei.lan> (raw)
In-Reply-To: <20161123132612.GG3346@rei.lan>

Hi!
> > +	if (argc != 2) {
> > +		printf("Error: arguments not right.\n");
>                         ^
> 			This is pretty value and hence useless. You should
                                       ^
				       vague

> 			rather explain that the program takes exactly one
> 			numeric parameter.
> 
> > +		exit(-1);
> 
> You should rather exit with 1 here.
> 
> > +	}
> > +
> >  	switch (atoi(argv[1])) {
> >  	case 1:
> >  		printf("%d", PAGE_SIZE);
> > -		tst_exit();
> > +		return 0;
> >  	case 2:
> >  		buf = malloc(MB);
> >  		if (!buf) {
> > -			tst_resm(TINFO, "#Memory is not available\n");
> > -			tst_exit();
> > +			printf("Memory is not available\n");
> 
> It would be a bit better to print the error messages into the stderr
> instead.
> 
> >  			exit(2);
> >  		}
> >  		for (i = 0; i < MB; i += PAGE_SIZE) {
> > -			count++;
> >  			buf[i] = 'a';
> >  			barrier();
> >  		}
> >  		free(buf);
> > -		tst_exit();
> > +		return 0;
> >  	case 3:
> >  		/* Trap SIGINT */
> >  		sa.sa_handler = sigfunc;
> >  		sa.sa_flags = SA_RESTART;
> >  		sigemptyset(&sa.sa_mask);
> >  		if (sigaction(SIGINT, &sa, 0) < 0) {
> > -			tst_brkm(TBROK, NULL, "#Sigaction SIGINT failed\n");
> > -			tst_exit();
> > -			exit(1);
> > +			printf("Sigaction SIGINT failed\n");
> > +			exit(3);
> >  		}
> >  		/* wait for signat Int */
> >  		pause();
> > -		tst_exit();
> > +		return 0;
> >  	default:
> >  		exit(1);
> >  	}
> 
> -- 
> Cyril Hrubis
> chrubis@suse.cz
> 
> -- 
> Mailing list info: https://lists.linux.it/listinfo/ltp

-- 
Cyril Hrubis
chrubis@suse.cz

  reply	other threads:[~2016-11-23 13:34 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-11-23  3:36 [LTP] [PATCH 2/3] ltp/numa: cleanup work for numa/* Li Wang
2016-11-23 13:26 ` Cyril Hrubis
2016-11-23 13:34   ` Cyril Hrubis [this message]
2016-11-28  3:45     ` Li Wang

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20161123133445.GH3346@rei.lan \
    --to=chrubis@suse.cz \
    --cc=ltp@lists.linux.it \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox