From 532decb715acb2e03bbe373c9bd914a8499896ee Mon Sep 17 00:00:00 2001 From: "Aneesh Kumar K.V" Date: Tue, 2 Aug 2011 11:35:54 +0530 Subject: 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 --- fsdev/file-op-9p.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'fsdev') 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 { -- cgit v1.2.1