Commit 1db93b6e authored by Kirill Tkhai's avatar Kirill Tkhai Committed by Pavel Emelyanov

files: Add comments about FLE_* stages

Signed-off-by: 's avatarKirill Tkhai <ktkhai@virtuozzo.com>
Signed-off-by: 's avatarAndrei Vagin <avagin@virtuozzo.com>
parent a6543ce2
...@@ -66,7 +66,16 @@ struct file_desc; ...@@ -66,7 +66,16 @@ struct file_desc;
enum { enum {
FLE_INITIALIZED, FLE_INITIALIZED,
/*
* FLE is open (via open() or socket() or etc syscalls), and
* common file setting are set up (type-specific are not yet).
* Most possible, the master was already served out.
*/
FLE_OPEN, FLE_OPEN,
/*
* File-type specific settings and preparations are finished,
* and FLE is completely restored.
*/
FLE_RESTORED, FLE_RESTORED,
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment