From 7af5d296e1996da8b3cae501763366b10af4d171 Mon Sep 17 00:00:00 2001 From: Michal Mielewczyk Date: Fri, 13 Dec 2019 03:08:28 -0500 Subject: [PATCH] New error code for interrupted waiting. This commit is part of patch that will allow to interrupt waiting for OCF operation. Signed-off-by: Michal Mielewczyk --- modules/include/cas_ioctl_codes.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/include/cas_ioctl_codes.h b/modules/include/cas_ioctl_codes.h index 8f51ac4..d424d9a 100644 --- a/modules/include/cas_ioctl_codes.h +++ b/modules/include/cas_ioctl_codes.h @@ -578,6 +578,9 @@ enum kcas_error { /** Condition token does not identify any known condition */ KCAS_ERR_CLS_RULE_UNKNOWN_CONDITION, + + /** Waiting for async operation was interrupted*/ + KCAS_ERR_WAITING_INTERRUPTED, }; #endif