diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-01-30 10:53:46 +0100 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-02-25 11:18:59 +0100 |
commit | 9366d6b2e48ba409366adc0516825c41a86dec9b (patch) | |
tree | 10431eba7bdaf8bfbb8811a5c4fed93616c5eb0d /libnetfs/netfs.h | |
parent | d4129a39dda08e8cfbc002461e1e76103de8f108 (diff) | |
download | hurd-9366d6b2e48ba409366adc0516825c41a86dec9b.tar.gz hurd-9366d6b2e48ba409366adc0516825c41a86dec9b.tar.bz2 hurd-9366d6b2e48ba409366adc0516825c41a86dec9b.zip |
hurd: fix the get-children and get-source procedures
* hurd/fs.defs: Add file_get_children and file_get_source.
* hurd/fsys.defs: Remove fsys_get_children and fsys_get_source.
* libdiskfs/fsys-get-children.c: Rename and adapt accordingly.
* libdiskfs/fsys-get-source.c: Likewise.
* libnetfs/fsys-get-children.c: Likewise.
* libnetfs/fsys-get-source.c: Likewise.
* libtrivfs/fsys-get-children.c: Likewise.
* libtrivfs/fsys-get-source.c: Likewise.
* libdiskfs/diskfs.h: Adapt prototype and comment.
* libnetfs/netfs.h: Likewise.
* libtrivfs/trivfs.h: Likewise.
* libdiskfs/get-source.c: Adapt default implementation, provide
diskfs_disk_name by default.
* libnetfs/netfs.h: Adapt default implementation.
* libtrivfs/get-source.c: Likewise.
* libdiskfs/Makefile: Adapt accordingly.
* libnetfs/Makefile: Likewise.
* libtrivfs/Makefile: Likewise.
* trans/symlink.c: Likewise.
* trans/mtab.c: Likewise.
Diffstat (limited to 'libnetfs/netfs.h')
-rw-r--r-- | libnetfs/netfs.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/libnetfs/netfs.h b/libnetfs/netfs.h index e10ccae0..5d50f57d 100644 --- a/libnetfs/netfs.h +++ b/libnetfs/netfs.h @@ -315,10 +315,11 @@ error_t netfs_file_get_storage_info (struct iouser *cred, mach_msg_type_number_t *data_len); /* The user may define this function. The function must set source to - the source device of the filesystem. The function may return an - EOPNOTSUPP to indicate that the concept of a source device is not - applicable. The default function always returns EOPNOTSUPP. */ -error_t netfs_get_source (char *source); + the source of CRED. The function may return an EOPNOTSUPP to + indicate that the concept of a source device is not applicable. The + default function always returns EOPNOTSUPP. */ +error_t netfs_get_source (struct protid *cred, + char *source, size_t source_len); /* Option parsing */ |