Displaying 3 results from an estimated 3 matches for "958d4b3".
Did you mean:
958493
2016 Mar 17
0
[PATCH 1/3] appliance: Pass "quiet" option to kernel when !verbose.
...to be listening for
GUESTFS_EVENT_APPLIANCE events, and they will see fewer messages now
(although what kernel messages programs see is never defined).
---
src/launch.c | 4 ++--
src/proto.c | 3 +++
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/src/launch.c b/src/launch.c
index 958d4b3..074ac6f 100644
--- a/src/launch.c
+++ b/src/launch.c
@@ -351,7 +351,7 @@ guestfs_int_appliance_command_line (guestfs_h *g, const char *appliance_dev,
" cgroup_disable=memory" /* saves us about 5 MB of RAM */
"%s" /* root=appliance_dev */...
2016 Feb 09
2
[PATCH 1/2] tmpdirs: centralize permissions handling
...fatal
code doing that in guestfs_impl_launch.
Followup of commit 772f649e595d202bdb67f05aeb62157c1104be89.
---
src/launch.c | 7 -------
src/tmpdirs.c | 30 ++++++++++++------------------
2 files changed, 12 insertions(+), 25 deletions(-)
diff --git a/src/launch.c b/src/launch.c
index 9273c58..958d4b3 100644
--- a/src/launch.c
+++ b/src/launch.c
@@ -60,13 +60,6 @@ guestfs_impl_launch (guestfs_h *g)
if (guestfs_int_lazy_make_tmpdir (g) == -1)
return -1;
- /* Allow anyone to read the temporary directory. The socket in this
- * directory won't be readable but anyone can see it exi...
2016 Mar 17
5
[PATCH 0/3] appliance: Pass "quiet" option to kernel when !verbose.
Using the quiet option (when not in verbose mode) improves boot speeds
by rather a lot, by avoiding sending messages over the slow emulated
UART.
Rich.