aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHimbeer <himbeer@disroot.org>2024-07-17 18:30:52 +0200
committerHimbeer <himbeer@disroot.org>2024-07-17 18:30:52 +0200
commitb8a91dedeff41df63c52c1907401f619ded36d2d (patch)
tree580fb64616a0da5ebbed3a21d89dbff4e6b86058
parente0eb56b39086f24ca46ff90fd7a7a009889a105a (diff)
Add documentation for Detached and Orphaned errors to the SRVRE kernel wiki
-rw-r--r--static/md/srvre/kernel/wiki/errors.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/static/md/srvre/kernel/wiki/errors.md b/static/md/srvre/kernel/wiki/errors.md
index 103d5b1..80656d6 100644
--- a/static/md/srvre/kernel/wiki/errors.md
+++ b/static/md/srvre/kernel/wiki/errors.md
@@ -75,6 +75,8 @@ and user-friendly descriptions as well as some troubleshooting tips.
| 53 | read_not_supported | ReadNotSupported | The resource pointed to by a resource descriptor handle does not support reading despite read access being permitted for the calling process. This is likely an issue with the affected program (specifically its error handling) or a version mismatch between it and the driver/kernel. |
| 54 | write_not_supported | WriteNotSupported | The resource pointed to by a resource descriptor handle does not support writing despite write access being permitted for the calling process. This is likely an issue with the affected program (specifically its error handling) or a version mismatch between it and the driver/kernel. |
| 55 | in_use | InUse | An inode cannot be modified or removed because it is currently referenced by at least one resource descriptor. Close all resource descriptors to it and try again. |
+| 56 | detached | Detached | The resource operation failed because the provider is terminated and the resource has not been reclaimed yet. You may (and usually should) retry the operation. |
+| 57 | orphaned | Orphaned | The resource operation failed because the provider is terminated and the resource cannot be reclaimed. The resource descriptor handle is closed after receiving this error. You may try to reopen the resource, but it is not guaranteed to exist anymore. |
| 2⁶⁴ - 1 = 18446744073709551615 | unknown | Unknown | An error that isn't listed above occured (e.g. a Zig standard library error). |
[Return to Wiki Main Page](/md/srvre/kernel/wiki.md)