>> Add jump targets so that a bit of exception handling can be better reused >> at the end of these functions. >> >> This issue was detected by using the Coccinelle software. > > Please include Coccinelle report in the change log. I guess that I can not append the kind of report you might be looking for so far. This small update suggestion is just another result from one of my evolving scripts for the semantic patch language. It was discussed under the topic “Comparing statement lists with SmPL” to some degree. https://systeme.lip6.fr/pipermail/cocci/2017-August/004388.html >> @@ -104,10 +104,8 @@ static int check_itimer(int which) >> signal(SIGALRM, sig_handler); >> >> err = gettimeofday(&start, NULL); >> - if (err < 0) { >> - perror("Can't call gettimeofday()\n"); >> - return -1; >> - } >> + if (err < 0) >> + goto report_failure; > > Instead of report_failure, makes this specific to the failure. > Something like, gettimeofday_error Would you like to achieve unique error messages in this use case? Regards, Markus -- To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html