Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1728701

[PATCH 2/3] perf tools: Open perf.data with O_CLOEXEC flag

From Jiri Olsa <jolsa@kernel.org>
Newsgroups linux.kernel
Subject [PATCH 2/3] perf tools: Open perf.data with O_CLOEXEC flag
Date 2017-09-08 10:50 +0200
Message-ID <unn98-4mN-27@gated-at.bofh.it> (permalink)
References <unn97-4mN-1@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


Do not carry the perf.data file descriptor into
the workload process and close it when perf
executes the workload.

Link: http://lkml.kernel.org/n/tip-j7qdp4ucreain1cqvy485wd4@git.kernel.org
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
---
 tools/perf/util/data.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tools/perf/util/data.c b/tools/perf/util/data.c
index e84bbc8ec058..6b9d3ec2c276 100644
--- a/tools/perf/util/data.c
+++ b/tools/perf/util/data.c
@@ -96,7 +96,8 @@ static int open_file_write(struct perf_data_file *file)
 	if (check_backup(file))
 		return -1;
 
-	fd = open(file->path, O_CREAT|O_RDWR|O_TRUNC, S_IRUSR|S_IWUSR);
+	fd = open(file->path, O_CREAT|O_RDWR|O_TRUNC|O_CLOEXEC,
+		  S_IRUSR|S_IWUSR);
 
 	if (fd < 0)
 		pr_err("failed to open %s : %s\n", file->path,
-- 
2.9.5

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH 1/3] tools lib api: Fix make DEBUG=1 build Jiri Olsa <jolsa@kernel.org> - 2017-09-08 10:50 +0200
  [PATCH 3/3] perf tools: Add python-clean target Jiri Olsa <jolsa@kernel.org> - 2017-09-08 10:50 +0200
  [PATCH 2/3] perf tools: Open perf.data with O_CLOEXEC flag Jiri Olsa <jolsa@kernel.org> - 2017-09-08 10:50 +0200
    Re: [PATCH 2/3] perf tools: Open perf.data with O_CLOEXEC flag Arnaldo Carvalho de Melo <acme@kernel.org> - 2017-09-08 20:20 +0200
  Re: [PATCH 1/3] tools lib api: Fix make DEBUG=1 build Arnaldo Carvalho de Melo <acme@kernel.org> - 2017-09-08 15:40 +0200

csiph-web