summaryrefslogtreecommitdiff
path: root/error.c
blob: 50c030683e2ae04ae46db628c3fe4071f07e89d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <errno.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <signal.h>

void error_exit(char *format, ...)
{
	char buffer[4096];
	va_list ap;

	va_start(ap, format);
	vsnprintf(buffer, sizeof(buffer), format, ap);
	va_end(ap);

	fprintf(stderr, "%s: errno=%d (if applicable)\n", buffer, errno);

	exit(EXIT_FAILURE);
}
de:
authorSteven Rostedt (Red Hat) <rostedt@goodmis.org>2016-09-23 22:57:13 -0400
committerSteven Rostedt <rostedt@goodmis.org>2016-09-25 10:27:08 -0400
commit1245800c0f96eb6ebb368593e251d66c01e61022 (patch)
treec945fb377258b480d806786d33fbd0f6ce118022 /Documentation/translations/zh_CN
parentc87edb36118664f1fa275107c1138b6f47793240 (diff)
tracing: Move mutex to protect against resetting of seq data
The iter->seq can be reset outside the protection of the mutex. So can reading of user data. Move the mutex up to the beginning of the function. Fixes: d7350c3f45694 ("tracing/core: make the read callbacks reentrants") Cc: stable@vger.kernel.org # 2.6.30+ Reported-by: Al Viro <viro@ZenIV.linux.org.uk> Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'Documentation/translations/zh_CN')