I get this message in my webservers (with NFS mounted homedirs) logs once
in a while :
kernel: VFS: Busy inodes after unmount. Self-destruct in 5 seconds. Have a nice day...
It doesn't seem to have any bad effect on anything, but it would be nice
to know if there is any cause for concern.
The NFS server is running 2.6.18.1 and the webservers are running 2.6.17.8
--
Jesper Juhl <[email protected]>
On Dec 28 2006 10:27, Jesper Juhl wrote:
>
>I get this message in my webservers (with NFS mounted homedirs) logs once
>in a while :
>
> kernel: VFS: Busy inodes after unmount. Self-destruct in 5 seconds. Have a nice day...
This happens when the underlying "block device" disappears, the most
prominent case being ejecting the CD while the fs is still mounted. I
have not seen it with nfs yet, since networked fs don't have any
real backing device and instead provide either [waiting for
reconnection] or -EIO, i.e. proper error handling.
>
-`J'
--
On Thu, 28 Dec 2006, Jesper Juhl wrote:
>
> I get this message in my webservers (with NFS mounted homedirs) logs once
> in a while :
>
> kernel: VFS: Busy inodes after unmount. Self-destruct in 5 seconds. Have a nice day...
>
> It doesn't seem to have any bad effect on anything, but it would be nice
> to know if there is any cause for concern.
It's at least a memory leak.
>
> The NFS server is running 2.6.18.1 and the webservers are running 2.6.17.8
Strange, I've not heard of this message appearing for a long time now.
Ian
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
NFS maillist - [email protected]
https://lists.sourceforge.net/lists/listinfo/nfs
Jesper Juhl wrote:
> I get this message in my webservers (with NFS mounted homedirs) logs once
> in a while :
>
> kernel: VFS: Busy inodes after unmount. Self-destruct in 5 seconds. Have a nice day...
>
> It doesn't seem to have any bad effect on anything, but it would be nice
> to know if there is any cause for concern.
>
It is cause for concern. This means that the filesystem was unmounted (and the
superblock was freed), but the inode structs are still hanging around. The
"self-destruct" is telling you that eventually, this machine will crash due to
this. If you see this message you should probably plan a reboot sometime.
What will happen is that eventually the kernel may try to reference these
inodes, but they now have pointers into a freed superblock. If that superblock
memory was reused for another purpose, you'll likely crash.
IMO, we should probably consider this to be a BUG(), but that only really is
helpful if you can capture a coredump and can try to track down why these inodes
couldn't be flushed correctly. In the very least, it's probably time to change
this message to be less cryptic.
I've seen some sporadic reports of this problem on earlier kernels in situations
where a NFS server is unable to be contacted for a while, but have not gotten
enough info to get a handle on it.
-- Jeff