Show where huge page filesystem is mounted
()
| 193 | |
| 194 | |
| 195 | def show_mount(): |
| 196 | '''Show where huge page filesystem is mounted''' |
| 197 | mounted = get_mountpoints() |
| 198 | if mounted: |
| 199 | print("Hugepages mounted on", *mounted) |
| 200 | else: |
| 201 | print("Hugepages not mounted") |
| 202 | |
| 203 | |
| 204 | def main(): |
no test coverage detected