diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2023-12-14 01:06:37 -0500 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-12-17 23:57:00 +0100 |
commit | 6b494f5e7599ece2ca981472d690db3df3133bde (patch) | |
tree | 82ea19a196c6e4c8c53ddce4d1528e92b9751cb1 /libtrivfs | |
parent | b1d240be9b36a1db738e1357081987873be94636 (diff) | |
download | hurd-6b494f5e7599ece2ca981472d690db3df3133bde.tar.gz hurd-6b494f5e7599ece2ca981472d690db3df3133bde.tar.bz2 hurd-6b494f5e7599ece2ca981472d690db3df3133bde.zip |
Update server handlers to return kern_return_error to fix -Werror=enum-int-mismatch warnings
MiG expects those to return kern_return_t.
Message-ID: <ZXqbbXpVqQAwd2qv@jupiter.tail36e24.ts.net>
Diffstat (limited to 'libtrivfs')
-rw-r--r-- | libtrivfs/file-access.c | 2 | ||||
-rw-r--r-- | libtrivfs/file-get-fs-options.c | 2 | ||||
-rw-r--r-- | libtrivfs/file-get-storage-info.c | 2 | ||||
-rw-r--r-- | libtrivfs/file-reparent.c | 2 | ||||
-rw-r--r-- | libtrivfs/fsys-forward.c | 2 | ||||
-rw-r--r-- | libtrivfs/fsys-get-children.c | 2 | ||||
-rw-r--r-- | libtrivfs/fsys-get-options.c | 2 | ||||
-rw-r--r-- | libtrivfs/fsys-get-source.c | 2 | ||||
-rw-r--r-- | libtrivfs/fsys-set-options.c | 2 | ||||
-rw-r--r-- | libtrivfs/io-identity.c | 2 | ||||
-rw-r--r-- | libtrivfs/io-modes-set.c | 2 |
11 files changed, 11 insertions, 11 deletions
diff --git a/libtrivfs/file-access.c b/libtrivfs/file-access.c index f289a23b..4a65b7a7 100644 --- a/libtrivfs/file-access.c +++ b/libtrivfs/file-access.c @@ -18,7 +18,7 @@ #include "priv.h" #include "trivfs_fs_S.h" -error_t +kern_return_t trivfs_S_file_check_access (struct trivfs_protid *cred, mach_port_t reply, mach_msg_type_name_t reply_type, int *allowed) diff --git a/libtrivfs/file-get-fs-options.c b/libtrivfs/file-get-fs-options.c index e3e033e6..e344eaea 100644 --- a/libtrivfs/file-get-fs-options.c +++ b/libtrivfs/file-get-fs-options.c @@ -24,7 +24,7 @@ #include "priv.h" #include "trivfs_fs_S.h" -error_t +kern_return_t trivfs_S_file_get_fs_options (struct trivfs_protid *cred, mach_port_t reply, mach_msg_type_name_t reply_type, diff --git a/libtrivfs/file-get-storage-info.c b/libtrivfs/file-get-storage-info.c index a4a44bb2..6e96638a 100644 --- a/libtrivfs/file-get-storage-info.c +++ b/libtrivfs/file-get-storage-info.c @@ -18,7 +18,7 @@ #include "priv.h" #include "trivfs_fs_S.h" -error_t +kern_return_t trivfs_S_file_get_storage_info (struct trivfs_protid *cred, mach_port_t reply, mach_msg_type_name_t reply_type, diff --git a/libtrivfs/file-reparent.c b/libtrivfs/file-reparent.c index 5892013c..e52a8bb9 100644 --- a/libtrivfs/file-reparent.c +++ b/libtrivfs/file-reparent.c @@ -22,7 +22,7 @@ #include "trivfs_fs_S.h" #include "trivfs_io_S.h" -error_t +kern_return_t trivfs_S_file_reparent (struct trivfs_protid *cred, mach_port_t reply, mach_msg_type_name_t reply_type, mach_port_t parent, diff --git a/libtrivfs/fsys-forward.c b/libtrivfs/fsys-forward.c index a3be1849..f7b23674 100644 --- a/libtrivfs/fsys-forward.c +++ b/libtrivfs/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 trivfs_S_fsys_forward (mach_port_t server, mach_port_t reply, mach_msg_type_name_t replytype, diff --git a/libtrivfs/fsys-get-children.c b/libtrivfs/fsys-get-children.c index f0cd28c2..5e1d6c7a 100644 --- a/libtrivfs/fsys-get-children.c +++ b/libtrivfs/fsys-get-children.c @@ -27,7 +27,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 trivfs_S_fsys_get_children (struct trivfs_control *fsys, mach_port_t reply, mach_msg_type_name_t replyPoly, diff --git a/libtrivfs/fsys-get-options.c b/libtrivfs/fsys-get-options.c index 37247035..3e3774b1 100644 --- a/libtrivfs/fsys-get-options.c +++ b/libtrivfs/fsys-get-options.c @@ -24,7 +24,7 @@ #include "priv.h" #include "trivfs_fsys_S.h" -error_t +kern_return_t trivfs_S_fsys_get_options (struct trivfs_control *fsys, mach_port_t reply, mach_msg_type_name_t reply_type, data_t *data, mach_msg_type_number_t *len) diff --git a/libtrivfs/fsys-get-source.c b/libtrivfs/fsys-get-source.c index 37ae57d7..7e95a2b5 100644 --- a/libtrivfs/fsys-get-source.c +++ b/libtrivfs/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 trivfs_S_fsys_get_source (struct trivfs_control *fsys, mach_port_t reply, mach_msg_type_name_t replyPoly, diff --git a/libtrivfs/fsys-set-options.c b/libtrivfs/fsys-set-options.c index ca5a9458..cb2015ce 100644 --- a/libtrivfs/fsys-set-options.c +++ b/libtrivfs/fsys-set-options.c @@ -23,7 +23,7 @@ #include "priv.h" #include "trivfs_fsys_S.h" -error_t +kern_return_t trivfs_S_fsys_set_options (struct trivfs_control *cntl, mach_port_t reply, mach_msg_type_name_t reply_type, const_data_t data, mach_msg_type_number_t len, diff --git a/libtrivfs/io-identity.c b/libtrivfs/io-identity.c index a67ed7ec..05888631 100644 --- a/libtrivfs/io-identity.c +++ b/libtrivfs/io-identity.c @@ -21,7 +21,7 @@ #include "priv.h" #include "trivfs_io_S.h" -error_t +kern_return_t trivfs_S_io_identity (struct trivfs_protid *cred, mach_port_t reply, mach_msg_type_name_t replytype, diff --git a/libtrivfs/io-modes-set.c b/libtrivfs/io-modes-set.c index 44846428..fd4ddee6 100644 --- a/libtrivfs/io-modes-set.c +++ b/libtrivfs/io-modes-set.c @@ -23,7 +23,7 @@ #include "trivfs_io_S.h" #include <assert-backtrace.h> -error_t +kern_return_t trivfs_S_io_set_all_openmodes (struct trivfs_protid *cred, mach_port_t reply, mach_msg_type_name_t replytype, |