Last change
on this file since 29455 was 28800, checked in by vboxsync, 15 years ago |
Automated rebranding to Oracle copyright/license strings via filemuncher
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Id
|
File size:
1.2 KB
|
Line | |
---|
1 | /* $Id: vboxfs_vfs.h 28800 2010-04-27 08:22:32Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VirtualBox File System for Solaris Guests, VFS header.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2009-2010 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 | #ifndef ___VBoxFS_vfs_Solaris_h
|
---|
19 | #define ___VBoxFS_vfs_Solaris_h
|
---|
20 |
|
---|
21 | #ifdef __cplusplus
|
---|
22 | extern "C" {
|
---|
23 | #endif
|
---|
24 |
|
---|
25 | /*
|
---|
26 | * Shared Folders filesystem per-mount data structure.
|
---|
27 | */
|
---|
28 | typedef struct sffs_data {
|
---|
29 | vfs_t *sf_vfsp; /* filesystem's vfs struct */
|
---|
30 | vnode_t *sf_rootnode; /* of vnode of the root directory */
|
---|
31 | uid_t sf_uid; /* owner of all shared folders */
|
---|
32 | gid_t sf_gid; /* group of all shared folders */
|
---|
33 | char *sf_share_name;
|
---|
34 | char *sf_mntpath; /* name of mount point */
|
---|
35 | sfp_mount_t *sf_handle;
|
---|
36 | uint64_t sf_ino; /* per FS ino generator */
|
---|
37 | } sffs_data_t;
|
---|
38 |
|
---|
39 |
|
---|
40 | #ifdef __cplusplus
|
---|
41 | }
|
---|
42 | #endif
|
---|
43 |
|
---|
44 | #endif /* !___VBoxFS_vfs_Solaris_h */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.