Displaying 2 results from an estimated 2 matches for "__getname".
Did you mean:
_getname
2013 Nov 26
2
Lustre 1.8 client on EL 6.5?
Hello,
in preparation for CentOS 6.5 I was trying to build Lustre 1.8 client on
CentOS 6.4 updated with 2.6.32-431 kernel.
Seems like recent changes in fs.h
(/usr/src/kernels/2.6.32-431.el6.x86_64/include/linux/fs.h) is causing
problems.
make[5]: Entering directory `/usr/src/kernels/2.6.32-431.el6.x86_64''
cc1: warnings being treated as errors
2002 Feb 14
1
[BUG] [PATCH]: handling bad inodes in 2.4.x kernels
...set which forces the effect.
what confuses me is that the system remains stable after that happened, the
only effect i got was that i wasn't able to rename() a file on any filesystem
anymore. what the rename() syscall does on kernel side is getting memory from
the names_cache twice by calling __getname() which gives out the same pointer
twice when the kernel is poisoned this way.
anyway, it's an ugly bug that needs to get fixed.
the bug is most likely in fs/namei.c, open_namei() - at least i fixed my
machine here with this:
--- linux-2.4.17-orig/fs/namei.c Wed Oct 17 23:46:29 2001
+++ linux...