Rev 2625 | Rev 2679 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 2625 | Rev 2641 | ||
---|---|---|---|
Line 81... | Line 81... | ||
81 | * registered FS. More importantly, through this structure, the FS announces |
81 | * registered FS. More importantly, through this structure, the FS announces |
82 | * what operations it supports. |
82 | * what operations it supports. |
83 | */ |
83 | */ |
84 | typedef struct { |
84 | typedef struct { |
85 | /** Unique identifier of the fs. */ |
85 | /** Unique identifier of the fs. */ |
86 | char name[FS_NAME_MAXLEN]; |
86 | char name[FS_NAME_MAXLEN + 1]; |
87 | 87 | ||
88 | /** Operations. */ |
88 | /** Operations. */ |
89 | vfs_op_t ops[VFS_LAST - VFS_FIRST]; |
89 | vfs_op_t ops[VFS_LAST - VFS_FIRST]; |
90 | } vfs_info_t; |
90 | } vfs_info_t; |
91 | 91 |