maestro
maestro copied to clipboard
The umount syscall does not check if the mount is busy
The umount
syscall does not check if there are any open file descriptors in the mount point. This means that when unmounting, there can be a dangling inode. The umount
syscall should return EBUSY
when there are still open file descriptors.