diff options
author | Sergey Bugaev <bugaevc@gmail.com> | 2021-05-26 17:28:18 +0300 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-08-10 22:13:26 +0200 |
commit | f10886297e77091b7bc313766cf7c8bac97d4291 (patch) | |
tree | f8479886a2a2b0882ab322a1dd4cf9e463b21f18 /libdiskfs | |
parent | b24812dce9062559ab2b9a3d07505d9985ccc83a (diff) | |
download | hurd-f10886297e77091b7bc313766cf7c8bac97d4291.tar.gz hurd-f10886297e77091b7bc313766cf7c8bac97d4291.tar.bz2 hurd-f10886297e77091b7bc313766cf7c8bac97d4291.zip |
libdiskfs, libnetfs: Disable broken code
This logic is obviously broken, let's disable it for now.
Diffstat (limited to 'libdiskfs')
-rw-r--r-- | libdiskfs/dead-name.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/libdiskfs/dead-name.c b/libdiskfs/dead-name.c index 6ca208e4..5e0cf787 100644 --- a/libdiskfs/dead-name.c +++ b/libdiskfs/dead-name.c @@ -23,10 +23,14 @@ void ports_dead_name (void *notify, mach_port_t dead_name) { +#if 0 + /* FIXME: This makes no sense, the dead name could be np->sockaddr, but not + the protid; it's pointless to look it up this way. It also leaks a + reference. */ struct protid *pi = ports_lookup_port (diskfs_port_bucket, dead_name, diskfs_protid_class); struct node *np; - + if (pi) { np = pi->po->np; @@ -40,6 +44,7 @@ ports_dead_name (void *notify, mach_port_t dead_name) else pthread_mutex_unlock (&np->lock); } +#endif fshelp_remove_active_translator (dead_name); |