nilfs2: implementation of NILFS_IOCTL_SET_SUINFO ioctl
[deliverable/linux.git] / fs / nilfs2 / sufile.h
CommitLineData
6c98cd4e
KS
1/*
2 * sufile.h - NILFS segment usage file.
3 *
4 * Copyright (C) 2006-2008 Nippon Telegraph and Telephone Corporation.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 *
20 * Written by Koji Sato <koji@osrg.net>.
21 */
22
23#ifndef _NILFS_SUFILE_H
24#define _NILFS_SUFILE_H
25
26#include <linux/fs.h>
27#include <linux/buffer_head.h>
28#include <linux/nilfs2_fs.h>
29#include "mdt.h"
30
6c98cd4e
KS
31
32static inline unsigned long nilfs_sufile_get_nsegments(struct inode *sufile)
33{
0ef28f9a 34 return ((struct the_nilfs *)sufile->i_sb->s_fs_info)->ns_nsegments;
6c98cd4e
KS
35}
36
ef7d4757
RK
37unsigned long nilfs_sufile_get_ncleansegs(struct inode *sufile);
38
619205da 39int nilfs_sufile_set_alloc_range(struct inode *sufile, __u64 start, __u64 end);
6c98cd4e 40int nilfs_sufile_alloc(struct inode *, __u64 *);
61a189e9 41int nilfs_sufile_mark_dirty(struct inode *sufile, __u64 segnum);
071ec54d
RK
42int nilfs_sufile_set_segment_usage(struct inode *sufile, __u64 segnum,
43 unsigned long nblocks, time_t modtime);
6c98cd4e 44int nilfs_sufile_get_stat(struct inode *, struct nilfs_sustat *);
003ff182 45ssize_t nilfs_sufile_get_suinfo(struct inode *, __u64, void *, unsigned,
6c98cd4e 46 size_t);
00e9ffcd 47ssize_t nilfs_sufile_set_suinfo(struct inode *, void *, unsigned , size_t);
6c98cd4e 48
dda54f4b
RK
49int nilfs_sufile_updatev(struct inode *, __u64 *, size_t, int, size_t *,
50 void (*dofunc)(struct inode *, __u64,
51 struct buffer_head *,
52 struct buffer_head *));
a703018f
RK
53int nilfs_sufile_update(struct inode *, __u64, int,
54 void (*dofunc)(struct inode *, __u64,
55 struct buffer_head *,
56 struct buffer_head *));
c85399c2
RK
57void nilfs_sufile_do_scrap(struct inode *, __u64, struct buffer_head *,
58 struct buffer_head *);
a703018f
RK
59void nilfs_sufile_do_free(struct inode *, __u64, struct buffer_head *,
60 struct buffer_head *);
071cb4b8
RK
61void nilfs_sufile_do_cancel_free(struct inode *, __u64, struct buffer_head *,
62 struct buffer_head *);
a703018f
RK
63void nilfs_sufile_do_set_error(struct inode *, __u64, struct buffer_head *,
64 struct buffer_head *);
65
4e33f9ea 66int nilfs_sufile_resize(struct inode *sufile, __u64 newnsegs);
f1e89c86
RK
67int nilfs_sufile_read(struct super_block *sb, size_t susize,
68 struct nilfs_inode *raw_inode, struct inode **inodep);
79739565 69
c85399c2
RK
70/**
71 * nilfs_sufile_scrap - make a segment garbage
72 * @sufile: inode of segment usage file
73 * @segnum: segment number to be freed
74 */
75static inline int nilfs_sufile_scrap(struct inode *sufile, __u64 segnum)
76{
77 return nilfs_sufile_update(sufile, segnum, 1, nilfs_sufile_do_scrap);
78}
79
a703018f
RK
80/**
81 * nilfs_sufile_free - free segment
82 * @sufile: inode of segment usage file
83 * @segnum: segment number to be freed
84 */
85static inline int nilfs_sufile_free(struct inode *sufile, __u64 segnum)
86{
87 return nilfs_sufile_update(sufile, segnum, 0, nilfs_sufile_do_free);
88}
89
071cb4b8
RK
90/**
91 * nilfs_sufile_freev - free segments
92 * @sufile: inode of segment usage file
93 * @segnumv: array of segment numbers
94 * @nsegs: size of @segnumv array
95 * @ndone: place to store the number of freed segments
96 */
97static inline int nilfs_sufile_freev(struct inode *sufile, __u64 *segnumv,
98 size_t nsegs, size_t *ndone)
99{
100 return nilfs_sufile_updatev(sufile, segnumv, nsegs, 0, ndone,
101 nilfs_sufile_do_free);
102}
103
104/**
105 * nilfs_sufile_cancel_freev - reallocate freeing segments
106 * @sufile: inode of segment usage file
107 * @segnumv: array of segment numbers
108 * @nsegs: size of @segnumv array
109 * @ndone: place to store the number of cancelled segments
110 *
111 * Return Value: On success, 0 is returned. On error, a negative error codes
112 * is returned.
113 */
114static inline int nilfs_sufile_cancel_freev(struct inode *sufile,
115 __u64 *segnumv, size_t nsegs,
116 size_t *ndone)
117{
118 return nilfs_sufile_updatev(sufile, segnumv, nsegs, 0, ndone,
119 nilfs_sufile_do_cancel_free);
120}
121
a703018f
RK
122/**
123 * nilfs_sufile_set_error - mark a segment as erroneous
124 * @sufile: inode of segment usage file
125 * @segnum: segment number
126 *
127 * Description: nilfs_sufile_set_error() marks the segment specified by
128 * @segnum as erroneous. The error segment will never be used again.
129 *
130 * Return Value: On success, 0 is returned. On error, one of the following
131 * negative error codes is returned.
132 *
133 * %-EIO - I/O error.
134 *
135 * %-ENOMEM - Insufficient amount of memory available.
136 *
137 * %-EINVAL - Invalid segment usage number.
138 */
139static inline int nilfs_sufile_set_error(struct inode *sufile, __u64 segnum)
140{
141 return nilfs_sufile_update(sufile, segnum, 0,
142 nilfs_sufile_do_set_error);
143}
6c98cd4e
KS
144
145#endif /* _NILFS_SUFILE_H */
This page took 0.313978 seconds and 5 git commands to generate.