diff options
author | Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> | 2011-08-02 11:35:54 +0530 |
---|---|---|
committer | Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> | 2011-09-22 21:38:52 +0530 |
commit | 532decb715acb2e03bbe373c9bd914a8499896ee (patch) | |
tree | 9a0592b04564b0d2d2f61b2ef9dd2600c218c6eb /fsdev/file-op-9p.h | |
parent | 0174fe73e605311598d9e7f03e95be9705a3e0e7 (diff) |
hw/9pfs: Add fs driver specific details to fscontext
Add a new context flag PATHNAME_FSCONTEXT and indicate whether
the fs driver track fid using path names. Also add a private
pointer that help us to track fs driver specific values in there
Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Diffstat (limited to 'fsdev/file-op-9p.h')
-rw-r--r-- | fsdev/file-op-9p.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/fsdev/file-op-9p.h b/fsdev/file-op-9p.h index 5221d6d798..8de8abfd5b 100644 --- a/fsdev/file-op-9p.h +++ b/fsdev/file-op-9p.h @@ -50,12 +50,18 @@ typedef struct FsCred struct xattr_operations; +/* FsContext flag values */ +#define PATHNAME_FSCONTEXT 0x1 + typedef struct FsContext { + int flags; char *fs_root; SecModel fs_sm; uid_t uid; struct xattr_operations **xops; + /* fs driver specific data */ + void *private; } FsContext; typedef struct V9fsPath { |