aboutsummaryrefslogtreecommitdiff
path: root/libdiskfs/file-set-trans.c
diff options
context:
space:
mode:
authorSergey Bugaev <bugaevc@gmail.com>2021-08-05 18:51:16 +0300
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2022-08-10 22:13:01 +0200
commitb948c942539d47fb91a28dd085a028f3116b70c4 (patch)
tree6a092bd58a5b832c1e7468763169514ac2b1b264 /libdiskfs/file-set-trans.c
parent612674f4b77472c381c8150138fce8a34a4c9119 (diff)
downloadhurd-b948c942539d47fb91a28dd085a028f3116b70c4.tar.gz
hurd-b948c942539d47fb91a28dd085a028f3116b70c4.tar.bz2
hurd-b948c942539d47fb91a28dd085a028f3116b70c4.zip
diskfs: Use libports notifications
Namely, ports_request_dead_name_notification () where we can, and the libports notify port when we have to pass it to libfshelp.
Diffstat (limited to 'libdiskfs/file-set-trans.c')
-rw-r--r--libdiskfs/file-set-trans.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libdiskfs/file-set-trans.c b/libdiskfs/file-set-trans.c
index 36f0c3b8..7359b906 100644
--- a/libdiskfs/file-set-trans.c
+++ b/libdiskfs/file-set-trans.c
@@ -223,7 +223,8 @@ diskfs_S_file_set_translator (struct protid *cred,
pthread_mutex_unlock (&np->lock);
if (! err && cred->po->path && active_flags & FS_TRANS_SET)
- err = fshelp_set_active_translator (&cred->pi, cred->po->path, &np->transbox);
+ err = fshelp_set_active_translator (cred->pi.bucket->notify_port,
+ cred->po->path, &np->transbox);
return err;
}