From: "Richard W.M. Jones" <rjones@redhat.com>
To: Stefano Brivio <sbrivio@redhat.com>
Cc: passt-dev@passt.top, David Gibson <david@gibson.dropbear.id.au>,
Minxi Hou <mhou@redhat.com>
Subject: Re: [PATCH 5/8] util: Rename write_pidfile() to pidfile_write()
Date: Thu, 23 May 2024 11:06:15 +0100 [thread overview]
Message-ID: <20240523100615.GU4345@redhat.com> (raw)
In-Reply-To: <20240522205911.261325-6-sbrivio@redhat.com>
On Wed, May 22, 2024 at 10:59:08PM +0200, Stefano Brivio wrote:
> As I'm adding pidfile_open() in the next patch. The function comment
> didn't match, by the way.
>
> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
> ---
> passt.c | 2 +-
> util.c | 6 +++---
> util.h | 2 +-
> 3 files changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/passt.c b/passt.c
> index 1df1dc4..fb9773d 100644
> --- a/passt.c
> +++ b/passt.c
> @@ -317,7 +317,7 @@ int main(int argc, char **argv)
> if (!c.foreground)
> __daemon(pidfile_fd, devnull_fd);
> else
> - write_pidfile(pidfile_fd, getpid());
> + pidfile_write(pidfile_fd, getpid());
>
> if (pasta_child_pid)
> kill(pasta_child_pid, SIGUSR1);
> diff --git a/util.c b/util.c
> index 849fa7f..18c04ba 100644
> --- a/util.c
> +++ b/util.c
> @@ -380,11 +380,11 @@ int open_in_ns(const struct ctx *c, const char *path, int flags)
> }
>
> /**
> - * pid_file() - Write PID to file, if requested to do so, and close it
> + * pidfile_write() - Write PID to file, if requested to do so, and close it
> * @fd: Open PID file descriptor, closed on exit, -1 to skip writing it
> * @pid: PID value to write
> */
> -void write_pidfile(int fd, pid_t pid)
> +void pidfile_write(int fd, pid_t pid)
> {
> char pid_buf[12];
> int n;
> @@ -419,7 +419,7 @@ int __daemon(int pidfile_fd, int devnull_fd)
> }
>
> if (pid) {
> - write_pidfile(pidfile_fd, pid);
> + pidfile_write(pidfile_fd, pid);
> exit(EXIT_SUCCESS);
> }
>
> diff --git a/util.h b/util.h
> index 264423b..f811975 100644
> --- a/util.h
> +++ b/util.h
> @@ -156,7 +156,7 @@ char *line_read(char *buf, size_t len, int fd);
> void ns_enter(const struct ctx *c);
> bool ns_is_init(void);
> int open_in_ns(const struct ctx *c, const char *path, int flags);
> -void write_pidfile(int fd, pid_t pid);
> +void pidfile_write(int fd, pid_t pid);
> int __daemon(int pidfile_fd, int devnull_fd);
> int fls(unsigned long x);
> int write_file(const char *path, const char *buf);
Neutral refactoring, so:
Reviewed-by: Richard W.M. Jones <rjones@redhat.com>
However the same function name appears (just as a comment) in
contrib/apparmor/usr.bin.passt so I don't know if you would want to
update that?
Rich.
--
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
Read my programming and virtualization blog: http://rwmj.wordpress.com
virt-top is 'top' for virtual machines. Tiny program with many
powerful monitoring features, net stats, disk stats, logging, etc.
http://people.redhat.com/~rjones/virt-top
next prev parent reply other threads:[~2024-05-23 10:06 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-05-22 20:59 [PATCH 0/8] Open socket and PID files as root, before switching Stefano Brivio
2024-05-22 20:59 ` [PATCH 1/8] conf: Don't lecture user about starting us as root Stefano Brivio
2024-05-23 1:45 ` David Gibson
2024-05-23 9:52 ` Richard W.M. Jones
2024-05-22 20:59 ` [PATCH 2/8] tap: Move all-ones initialisation of mac_guest to tap_sock_init() Stefano Brivio
2024-05-23 1:46 ` David Gibson
2024-05-23 9:59 ` Richard W.M. Jones
2024-05-23 10:03 ` Richard W.M. Jones
2024-05-22 20:59 ` [PATCH 3/8] passt, tap: Don't use -1 as uninitialised value for fd_tap_listen Stefano Brivio
2024-05-23 1:48 ` David Gibson
2024-05-22 20:59 ` [PATCH 4/8] tap: Split tap_sock_unix_init() into opening and listening parts Stefano Brivio
2024-05-23 10:05 ` Richard W.M. Jones
2024-05-28 7:01 ` David Gibson
2024-05-22 20:59 ` [PATCH 5/8] util: Rename write_pidfile() to pidfile_write() Stefano Brivio
2024-05-23 10:06 ` Richard W.M. Jones [this message]
2024-05-22 20:59 ` [PATCH 6/8] passt, util: Move opening of PID file to its own function Stefano Brivio
2024-05-23 10:06 ` Richard W.M. Jones
2024-05-28 7:04 ` David Gibson
2024-05-22 20:59 ` [PATCH 7/8] conf, passt, tap: Open socket and PID files before switching UID/GID Stefano Brivio
2024-05-23 10:10 ` Richard W.M. Jones
2024-05-29 2:35 ` David Gibson
2024-06-20 11:30 ` Richard W.M. Jones
2024-06-20 12:12 ` Stefano Brivio
2024-06-20 12:47 ` Richard W.M. Jones
2024-06-20 14:22 ` Stefano Brivio
2024-06-21 1:02 ` David Gibson
2024-05-22 20:59 ` [PATCH 8/8] conf, passt.h: Rename pid_file in struct ctx to pidfile Stefano Brivio
2024-05-23 10:11 ` Richard W.M. Jones
2024-05-28 7:07 ` David Gibson
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=20240523100615.GU4345@redhat.com \
--to=rjones@redhat.com \
--cc=david@gibson.dropbear.id.au \
--cc=mhou@redhat.com \
--cc=passt-dev@passt.top \
--cc=sbrivio@redhat.com \
/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.
Code repositories for project(s) associated with this public inbox
https://passt.top/passt
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for IMAP folder(s).