From: Lennart Poettering Date: Thu, 10 Aug 2023 10:11:52 +0000 (+0200) Subject: coredump: rename gather_pid_metadata() → gather_pid_metadata_from_procfs() X-Git-Tag: v255-rc1~756^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=db9ac8016322e3227b0466f35ca0103e0cc8d829;p=thirdparty%2Fsystemd.git coredump: rename gather_pid_metadata() → gather_pid_metadata_from_procfs() Let's make clear what this function does, and what it distinguishes with the more precisely named gather_pid_metadata_from_argv(). --- diff --git a/src/coredump/coredump.c b/src/coredump/coredump.c index 4898a6f83df..08be963b8a2 100644 --- a/src/coredump/coredump.c +++ b/src/coredump/coredump.c @@ -1253,7 +1253,7 @@ static int gather_pid_metadata_from_argv( return save_context(context, iovw); } -static int gather_pid_metadata(struct iovec_wrapper *iovw, Context *context) { +static int gather_pid_metadata_from_procfs(struct iovec_wrapper *iovw, Context *context) { uid_t owner_uid; pid_t pid; char *t; @@ -1395,7 +1395,7 @@ static int process_kernel(int argc, char* argv[]) { return r; /* Collect the rest of the process metadata retrieved from the runtime */ - r = gather_pid_metadata(iovw, &context); + r = gather_pid_metadata_from_procfs(iovw, &context); if (r < 0) return r; @@ -1443,7 +1443,7 @@ static int process_backtrace(int argc, char *argv[]) { goto finish; /* Collect the rest of the process metadata retrieved from the runtime */ - r = gather_pid_metadata(iovw, &context); + r = gather_pid_metadata_from_procfs(iovw, &context); if (r < 0) goto finish;