crimson/os/seastore: extend mkfs/mount errorators to enospc
Previously when after being unable to open enough segments:
```
ERROR 2025-09-29 11:21:53,993 [shard 2:main] seastore_epm -
ExtentPlacementManager::open_for_write: Not enough EMPTY segments!
Consider increasing the device size (needed 6 got 2)
```
The abort message was:
```
ERROR 2025-09-29 11:21:53,994 [shard 2:main] osd -
/home/matan/ceph/src/crimson/common/errorator.h:1319 : In function
'crimson::ct_error::assert_all::operator()<const ..., abort()
Invalid error in mount_managers: Input/output error
```
Where it would have been easier to understand the issue with:
```
ERROR 2025-09-29 11:36:57,901 [shard 2:main] osd -
/home/matan/ceph/src/crimson/common/errorator.h:1319 : In function
'crimson::ct_error::assert_all::operator()<const ..., abort()
Invalid error in mount_managers: No space left on device
```