aboutsummaryrefslogtreecommitdiffstats
path: root/fs/nilfs2/dat.c
diff options
context:
space:
mode:
authorVyacheslav Dubeyko <slava@dubeyko.com>2012-07-30 17:42:10 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2012-07-30 20:25:19 -0400
commitf5974c8f8cf431baf44e7127b669e3b1960f184f (patch)
tree93df5ca85bdb49be8dd6d2ce46e10fb1d6cc9411 /fs/nilfs2/dat.c
parent8c74ac0557b4cabc9017c2740c5f62b330192416 (diff)
nilfs2: add omitted comments for different structures in driver implementation
Add omitted comments for different structures in driver implementation. Signed-off-by: Vyacheslav Dubeyko <slava@dubeyko.com> Signed-off-by: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/nilfs2/dat.c')
-rw-r--r--fs/nilfs2/dat.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/fs/nilfs2/dat.c b/fs/nilfs2/dat.c
index b5c13f3576b9..fa0f80308c2d 100644
--- a/fs/nilfs2/dat.c
+++ b/fs/nilfs2/dat.c
@@ -33,6 +33,12 @@
33#define NILFS_CNO_MIN ((__u64)1) 33#define NILFS_CNO_MIN ((__u64)1)
34#define NILFS_CNO_MAX (~(__u64)0) 34#define NILFS_CNO_MAX (~(__u64)0)
35 35
36/**
37 * struct nilfs_dat_info - on-memory private data of DAT file
38 * @mi: on-memory private data of metadata file
39 * @palloc_cache: persistent object allocator cache of DAT file
40 * @shadow: shadow map of DAT file
41 */
36struct nilfs_dat_info { 42struct nilfs_dat_info {
37 struct nilfs_mdt_info mi; 43 struct nilfs_mdt_info mi;
38 struct nilfs_palloc_cache palloc_cache; 44 struct nilfs_palloc_cache palloc_cache;