[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 1/8] libdiskfs: fix /servers/exec lookup
From: |
Justus Winter |
Subject: |
[PATCH 1/8] libdiskfs: fix /servers/exec lookup |
Date: |
Wed, 3 Sep 2014 14:33:09 +0200 |
* libdiskfs/boot-start.c (diskfs_start_bootstrap): Pass retry_name to
dir_lookup, which is later checked to be the empty string.
---
libdiskfs/boot-start.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libdiskfs/boot-start.c b/libdiskfs/boot-start.c
index 4cc7bb8..a590975 100644
--- a/libdiskfs/boot-start.c
+++ b/libdiskfs/boot-start.c
@@ -178,7 +178,7 @@ diskfs_start_bootstrap ()
/* Attempt to set the active translator for the exec server so that
filesystems other than the bootstrap can find it. */
err = dir_lookup (root_pt, _SERVERS_EXEC, O_NOTRANS, 0,
- &retry, pathbuf, &execnode);
+ &retry, retry_name, &execnode);
if (err)
{
error (0, err, "cannot set translator on %s", _SERVERS_EXEC);
--
2.1.0
- [PATCH 1/8] libdiskfs: fix /servers/exec lookup,
Justus Winter <=
- [PATCH 2/8] Add proc_set_init_task, make runsystem pid 1, Justus Winter, 2014/09/03
- [PATCH 4/8] init: add a minimalist init program, Justus Winter, 2014/09/03
- [PATCH 5/8] startup: do not pass signals on to the child, Justus Winter, 2014/09/03
- [PATCH 6/8] startup: be more specific in the shutdown message, Justus Winter, 2014/09/03
- [PATCH 7/8] startup: fix the declaration of the *_server functions, Justus Winter, 2014/09/03
- [PATCH 8/8] startup: bind the startup server to /servers/startup, Justus Winter, 2014/09/03