Unmount the huge TLB file system (if mounted)
(mountpoint)
| 187 | |
| 188 | |
| 189 | def umount_huge(mountpoint): |
| 190 | '''Unmount the huge TLB file system (if mounted)''' |
| 191 | if mountpoint in get_mountpoints(): |
| 192 | os.system("umount " + mountpoint) |
| 193 | |
| 194 | |
| 195 | def show_mount(): |
no test coverage detected