Commit 7748573a authored by Han-Wen Nienhuys's avatar Han-Wen Nienhuys

Only stop on ENODEV.

parent 646ae57a
...@@ -179,13 +179,8 @@ func (me *MountState) loop() { ...@@ -179,13 +179,8 @@ func (me *MountState) loop() {
continue continue
} }
// According to fuse_chan_receive()
if errNo == syscall.ENODEV { if errNo == syscall.ENODEV {
break // Unmount.
}
// What I see on linux-x86 2.6.35.10.
if errNo == syscall.ENOSYS {
break break
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment