aboutsummaryrefslogtreecommitdiff
path: root/libnetfs
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2023-08-08 01:25:50 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2023-08-08 02:28:06 +0200
commit3bc9a699ca7106204ffa97272374313bf04f6cc0 (patch)
treed4b83df84a6bb65a343f746b1f542df3ac64ae4b /libnetfs
parente22f3a3170e5c3028dc83fbdfb0d8705fd00df75 (diff)
downloadhurd-3bc9a699ca7106204ffa97272374313bf04f6cc0.tar.gz
hurd-3bc9a699ca7106204ffa97272374313bf04f6cc0.tar.bz2
hurd-3bc9a699ca7106204ffa97272374313bf04f6cc0.zip
Homogeneize [gs]et_translator and get_dire[nc]ts into mach_msg_type_number_t
This makes netfs_[gs]et_translator use mach_msg_type_number_t like the RPC and diskfs. This also makes the fshelp_fetch_root_callback1_t for fshelp_fetch_root use mach_msg_type_number_t. This also makes procfs_get_translator and the get_translator proc method use mach_msg_type_number_t. This makes diskfs_get_directs use mach_msg_type_number_t like the dir_readdir RPC Also get rid of u_int. This notably fixes _diskfs_translator_callback1_fn's bogus cast of size_t *argz_len into (u_int *).
Diffstat (limited to 'libnetfs')
-rw-r--r--libnetfs/netfs.h4
-rw-r--r--libnetfs/set-get-trans.c4
-rw-r--r--libnetfs/trans-callback.c2
3 files changed, 5 insertions, 5 deletions
diff --git a/libnetfs/netfs.h b/libnetfs/netfs.h
index 3bab63cd..6fc53ce4 100644
--- a/libnetfs/netfs.h
+++ b/libnetfs/netfs.h
@@ -154,7 +154,7 @@ error_t netfs_attempt_mkdev (struct iouser *cred, struct node *np,
translator record for FILE to ARGZ (of length ARGZLEN) for user
CRED. NP is locked. */
error_t netfs_set_translator (struct iouser *cred, struct node *np,
- const char *argz, size_t argzlen);
+ const char *argz, mach_msg_type_number_t argzlen);
/* The user may define this function (but should define it together
with netfs_set_translator). For locked node NODE with S_IPTRANS
@@ -162,7 +162,7 @@ error_t netfs_set_translator (struct iouser *cred, struct node *np,
name into newly malloced storage, and return it in *ARGZ; set
*ARGZ_LEN to the total length. */
error_t netfs_get_translator (struct node *node, char **argz,
- size_t *argz_len);
+ mach_msg_type_number_t *argz_len);
/* The user must define this function. This should attempt a chflags
call for the user specified by CRED on locked node NP, to change
diff --git a/libnetfs/set-get-trans.c b/libnetfs/set-get-trans.c
index 52e68ac7..585e7fd7 100644
--- a/libnetfs/set-get-trans.c
+++ b/libnetfs/set-get-trans.c
@@ -30,7 +30,7 @@
CRED. */
error_t __attribute__ ((weak))
netfs_set_translator (struct iouser *cred, struct node *np,
- const char *argz, size_t argzlen)
+ const char *argz, mach_msg_type_number_t argzlen)
{
return EOPNOTSUPP;
}
@@ -41,7 +41,7 @@ netfs_set_translator (struct iouser *cred, struct node *np,
malloced storage, and return it in *ARGZ; set *ARGZ_LEN to the total
length. */
error_t __attribute__ ((weak))
-netfs_get_translator (struct node *node, char **argz, size_t *argz_len)
+netfs_get_translator (struct node *node, char **argz, mach_msg_type_number_t *argz_len)
{
return EOPNOTSUPP;
}
diff --git a/libnetfs/trans-callback.c b/libnetfs/trans-callback.c
index de436995..d9ec2dc2 100644
--- a/libnetfs/trans-callback.c
+++ b/libnetfs/trans-callback.c
@@ -27,7 +27,7 @@
static error_t
_netfs_translator_callback1_fn (void *cookie1, void *cookie2,
uid_t *uid, gid_t *gid,
- char **argz, size_t *argz_len)
+ char **argz, mach_msg_type_number_t *argz_len)
{
error_t err;
struct node *np = cookie1;