summaryrefslogtreecommitdiff
path: root/libdiskfs
diff options
context:
space:
mode:
Diffstat (limited to 'libdiskfs')
-rw-r--r--libdiskfs/dir-lookup.c2
-rw-r--r--libdiskfs/file-chmod.c2
-rw-r--r--libdiskfs/file-get-fs-opts.c2
-rw-r--r--libdiskfs/file-getfh.c2
-rw-r--r--libdiskfs/file-record-lock.c2
-rw-r--r--libdiskfs/file-reparent.c2
-rw-r--r--libdiskfs/fsys-forward.c2
-rw-r--r--libdiskfs/fsys-get-children.c2
-rw-r--r--libdiskfs/fsys-get-source.c2
-rw-r--r--libdiskfs/fsys-getfile.c2
-rw-r--r--libdiskfs/fsys-goaway.c2
-rw-r--r--libdiskfs/fsys-options.c2
-rw-r--r--libdiskfs/io-identity.c2
13 files changed, 13 insertions, 13 deletions
diff --git a/libdiskfs/dir-lookup.c b/libdiskfs/dir-lookup.c
index 76b9cb54..32be3411 100644
--- a/libdiskfs/dir-lookup.c
+++ b/libdiskfs/dir-lookup.c
@@ -28,7 +28,7 @@
#include "fs_S.h"
/* Implement dir_lookup as described in <hurd/fs.defs>. */
-error_t
+kern_return_t
diskfs_S_dir_lookup (struct protid *dircred,
const_string_t filename,
int flags,
diff --git a/libdiskfs/file-chmod.c b/libdiskfs/file-chmod.c
index df262ea3..13f2cb93 100644
--- a/libdiskfs/file-chmod.c
+++ b/libdiskfs/file-chmod.c
@@ -19,7 +19,7 @@
#include "fs_S.h"
/* Implement file_chmod as described in <hurd/fs.defs>. */
-error_t
+kern_return_t
diskfs_S_file_chmod (struct protid *cred,
mode_t mode)
{
diff --git a/libdiskfs/file-get-fs-opts.c b/libdiskfs/file-get-fs-opts.c
index 4aa5c166..e11bc0fd 100644
--- a/libdiskfs/file-get-fs-opts.c
+++ b/libdiskfs/file-get-fs-opts.c
@@ -25,7 +25,7 @@
#include "priv.h"
#include "fs_S.h"
-error_t
+kern_return_t
diskfs_S_file_get_fs_options (struct protid *cred, data_t *data,
mach_msg_type_number_t *data_len)
{
diff --git a/libdiskfs/file-getfh.c b/libdiskfs/file-getfh.c
index db120813..140373c4 100644
--- a/libdiskfs/file-getfh.c
+++ b/libdiskfs/file-getfh.c
@@ -25,7 +25,7 @@
#include "fhandle.h"
/* Return an NFS file handle for CRED in FH & FN_LEN. */
-error_t
+kern_return_t
diskfs_S_file_getfh (struct protid *cred, data_t *fh,
mach_msg_type_number_t *fh_len)
{
diff --git a/libdiskfs/file-record-lock.c b/libdiskfs/file-record-lock.c
index a3ce9f42..83a05bbd 100644
--- a/libdiskfs/file-record-lock.c
+++ b/libdiskfs/file-record-lock.c
@@ -22,7 +22,7 @@
#include <errno.h>
#include <hurd/fshelp.h>
-error_t
+kern_return_t
diskfs_S_file_record_lock (struct protid *cred,
int cmd,
struct flock64 *lock,
diff --git a/libdiskfs/file-reparent.c b/libdiskfs/file-reparent.c
index bb617d72..fa3479e3 100644
--- a/libdiskfs/file-reparent.c
+++ b/libdiskfs/file-reparent.c
@@ -23,7 +23,7 @@
#include "priv.h"
#include "fs_S.h"
-error_t
+kern_return_t
diskfs_S_file_reparent (struct protid *cred, mach_port_t parent,
mach_port_t *new, mach_msg_type_name_t *new_type)
{
diff --git a/libdiskfs/fsys-forward.c b/libdiskfs/fsys-forward.c
index f5095941..8068b0d2 100644
--- a/libdiskfs/fsys-forward.c
+++ b/libdiskfs/fsys-forward.c
@@ -28,7 +28,7 @@
the command line arguments. If the recipient accepts the request, he
(or some delegate) should send fsys_startup to REQUESTOR to start the
filesystem up. */
-error_t
+kern_return_t
diskfs_S_fsys_forward (mach_port_t server,
mach_port_t reply, mach_msg_type_name_t reply_type,
mach_port_t requestor, const_data_t argz,
diff --git a/libdiskfs/fsys-get-children.c b/libdiskfs/fsys-get-children.c
index 81ebf032..27d9d114 100644
--- a/libdiskfs/fsys-get-children.c
+++ b/libdiskfs/fsys-get-children.c
@@ -29,7 +29,7 @@
or more links in the file system, therefore there is no guarantee
that a translators name refers to an existing link in the file
system. */
-error_t
+kern_return_t
diskfs_S_fsys_get_children (struct diskfs_control *fsys,
mach_port_t reply,
mach_msg_type_name_t replytype,
diff --git a/libdiskfs/fsys-get-source.c b/libdiskfs/fsys-get-source.c
index cd151560..c2197a61 100644
--- a/libdiskfs/fsys-get-source.c
+++ b/libdiskfs/fsys-get-source.c
@@ -26,7 +26,7 @@
appropriate in the context of the translator. For example, if the
translator is a filesystem residing on a block device, then SOURCE
should be the file name of the underlying block device. */
-error_t
+kern_return_t
diskfs_S_fsys_get_source (struct diskfs_control *fsys,
mach_port_t reply,
mach_msg_type_name_t replytype,
diff --git a/libdiskfs/fsys-getfile.c b/libdiskfs/fsys-getfile.c
index 4dadd736..b80c2869 100644
--- a/libdiskfs/fsys-getfile.c
+++ b/libdiskfs/fsys-getfile.c
@@ -26,7 +26,7 @@
/* Return in FILE & FILE_TYPE the file in FSYS corresponding to the NFS file
handle HANDLE & HANDLE_LEN. */
-error_t
+kern_return_t
diskfs_S_fsys_getfile (struct diskfs_control *pt,
mach_port_t reply, mach_msg_type_name_t reply_type,
const uid_t *uids, mach_msg_type_number_t nuids,
diff --git a/libdiskfs/fsys-goaway.c b/libdiskfs/fsys-goaway.c
index f716970c..a1a00038 100644
--- a/libdiskfs/fsys-goaway.c
+++ b/libdiskfs/fsys-goaway.c
@@ -24,7 +24,7 @@
#include "fsys_reply_U.h"
/* Implement fsys_goaway as described in <hurd/fsys.defs>. */
-error_t
+kern_return_t
diskfs_S_fsys_goaway (struct diskfs_control *pt,
mach_port_t reply,
mach_msg_type_name_t reply_type,
diff --git a/libdiskfs/fsys-options.c b/libdiskfs/fsys-options.c
index ca646a8d..49d1b18d 100644
--- a/libdiskfs/fsys-options.c
+++ b/libdiskfs/fsys-options.c
@@ -77,7 +77,7 @@ diskfs_S_fsys_set_options (struct diskfs_control *pt,
}
/* Implement fsys_get_options as described in <hurd/fsys.defs>. */
-error_t
+kern_return_t
diskfs_S_fsys_get_options (struct diskfs_control *port,
mach_port_t reply,
mach_msg_type_name_t replytype,
diff --git a/libdiskfs/io-identity.c b/libdiskfs/io-identity.c
index 0f3fce0f..2dbd0ae8 100644
--- a/libdiskfs/io-identity.c
+++ b/libdiskfs/io-identity.c
@@ -22,7 +22,7 @@
#include "io_S.h"
/* Implement io_identity as described in <hurd/io.defs>. */
-error_t
+kern_return_t
diskfs_S_io_identity (struct protid *cred,
mach_port_t *id,
mach_msg_type_name_t *idtype,