File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -102,7 +102,8 @@ enum class EIoResult : i64 {
102
102
InvalidSequence = 14 , // aka EILSEQ: GetEvents
103
103
// for broken disk's error-log: "READ_ERROR: The read data could not be recovered from the media"
104
104
NoData = 15 , // aka ENODATA: GetEvents
105
- RemoteIOError = 16 // aka EREMOTEIO: GetEvents
105
+ RemoteIOError = 16 , // aka EREMOTEIO: GetEvents
106
+ NoSpaceLeft = 17 // aka ENOSPC: GetEvents
106
107
};
107
108
108
109
struct TAsyncIoOperationResult {
Original file line number Diff line number Diff line change @@ -549,6 +549,7 @@ class TAsyncIoContextLiburing : public IAsyncIoContext {
549
549
case ENOSYS: return EIoResult::FunctionNotImplemented;
550
550
case EILSEQ: return EIoResult::InvalidSequence;
551
551
case ENODATA: return EIoResult::NoData;
552
+ case ENOSPC: return EIoResult::NoSpaceLeft;
552
553
default : Y_FAIL_S (PDiskInfo << " unexpected error in " << info << " , error# " << -ret
553
554
<< " strerror# " << strerror (-ret));
554
555
}
You can’t perform that action at this time.
0 commit comments