NetBSD-Bugs archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
Re: kern/55146 (100+ file system test cases failing)
The following reply was made to PR kern/55146; it has been noted by GNATS.
From: "J. Hannken-Illjes" <hannken%eis.cs.tu-bs.de@localhost>
To: gnats-bugs%netbsd.org@localhost
Cc:
Subject: Re: kern/55146 (100+ file system test cases failing)
Date: Tue, 7 Apr 2020 09:17:31 +0200
--Apple-Mail=_6CF9AB13-FD2E-478F-B35A-BFF24D945FB9
Content-Type: multipart/mixed;
boundary="Apple-Mail=_92E7451C-DB59-4ACF-BF72-91780A62D9F6"
--Apple-Mail=_92E7451C-DB59-4ACF-BF72-91780A62D9F6
Content-Transfer-Encoding: 7bit
Content-Type: text/plain;
charset=us-ascii
- UDF errors should be gone with sys/fs/udf/udf_subr.c Rev. 1.150
- *toolong* fail because errors from lookup_fastforward() are
ignored. The attached diff would help but needs more review
as we might hide more errors here.
--
J. Hannken-Illjes - hannken%eis.cs.tu-bs.de@localhost - TU Braunschweig
--Apple-Mail=_92E7451C-DB59-4ACF-BF72-91780A62D9F6
Content-Disposition: attachment;
filename=001_lookup.diff
Content-Type: application/octet-stream;
x-unix-mode=0644;
name="001_lookup.diff"
Content-Transfer-Encoding: 7bit
lookup
ENAMETOOLONG is final and must not be ignored.
diff -r 777271188cd1 -r 3950cceb5ec3 sys/kern/vfs_lookup.c
--- sys/kern/vfs_lookup.c
+++ sys/kern/vfs_lookup.c
@@ -1472,7 +1472,7 @@ namei_oneroot(struct namei_state *state,
* If we didn't get a good answer from the namecache, then
* go directly to the file system.
*/
- if (error != 0 && error != ENOENT) {
+ if (error != 0 && error != ENOENT && error != ENAMETOOLONG) {
error = lookup_once(state, searchdir, &searchdir,
&foundobj, &searchdir_locked);
}
--Apple-Mail=_92E7451C-DB59-4ACF-BF72-91780A62D9F6--
--Apple-Mail=_6CF9AB13-FD2E-478F-B35A-BFF24D945FB9
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment;
filename=signature.asc
Content-Type: application/pgp-signature;
name=signature.asc
Content-Description: Message signed with OpenPGP
-----BEGIN PGP SIGNATURE-----
iQEzBAEBCAAdFiEE2BL3ha7Xao4WUZVYKoaVJdNr+uEFAl6MKQsACgkQKoaVJdNr
+uGH9gf9FtoAWnMiv9K5Lrb6OAGcYZG3N7rishpuiRwUMxBNePcH1l2ryuA6kMnI
8PvQU7MSq8K7L9mHYHfCWG9ahCKAuUc9Q46Hp/arRQ4d5Qg7ywu11WWeynfKwIGN
DRk1KTIkW0zIf92QoQcUIStCpCNUseLlEs5irPyjb0V8ZVUmYsoNwQcQCs1ol3af
8qzLGLAO/BqN4+L8B5g90r1xLtUsVi6MZ7lDPLgqWLJyX6fyYDu4VmVOdHQolJUX
/8HwCmps5zJJfQOe1ffPjMmFNCQGEMlNa9AINS6X+QrIxVGaZJ77EXaFXJCloWG7
FC3N+chi0x3wdOYej06fQ51sFuXr3A==
=ipe4
-----END PGP SIGNATURE-----
--Apple-Mail=_6CF9AB13-FD2E-478F-B35A-BFF24D945FB9--
Home |
Main Index |
Thread Index |
Old Index