blob: e1186bf3b964aac8860ad23c85bb2ce955f8865c [file] [log] [blame]
Koji Sato6c98cd42009-04-06 19:01:32 -07001/*
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
Koji Sato6c98cd42009-04-06 19:01:32 -070031
32static inline unsigned long nilfs_sufile_get_nsegments(struct inode *sufile)
33{
34 return NILFS_MDT(sufile)->mi_nilfs->ns_nsegments;
35}
36
Ryusuke Konishief7d4752009-11-13 08:45:32 +090037unsigned long nilfs_sufile_get_ncleansegs(struct inode *sufile);
38
Koji Sato6c98cd42009-04-06 19:01:32 -070039int nilfs_sufile_alloc(struct inode *, __u64 *);
Koji Sato6c98cd42009-04-06 19:01:32 -070040int nilfs_sufile_get_segment_usage(struct inode *, __u64,
41 struct nilfs_segment_usage **,
42 struct buffer_head **);
43void nilfs_sufile_put_segment_usage(struct inode *, __u64,
44 struct buffer_head *);
Ryusuke Konishi61a189e2009-11-18 17:25:12 +090045int nilfs_sufile_mark_dirty(struct inode *sufile, __u64 segnum);
Ryusuke Konishi071ec542009-11-18 18:23:34 +090046int nilfs_sufile_set_segment_usage(struct inode *sufile, __u64 segnum,
47 unsigned long nblocks, time_t modtime);
Koji Sato6c98cd42009-04-06 19:01:32 -070048int nilfs_sufile_get_stat(struct inode *, struct nilfs_sustat *);
Ryusuke Konishi003ff182009-05-12 03:58:47 +090049ssize_t nilfs_sufile_get_suinfo(struct inode *, __u64, void *, unsigned,
Koji Sato6c98cd42009-04-06 19:01:32 -070050 size_t);
51
Ryusuke Konishidda54f42009-05-16 21:49:10 +090052int nilfs_sufile_updatev(struct inode *, __u64 *, size_t, int, size_t *,
53 void (*dofunc)(struct inode *, __u64,
54 struct buffer_head *,
55 struct buffer_head *));
Ryusuke Konishia7030182009-04-05 18:24:11 +090056int nilfs_sufile_update(struct inode *, __u64, int,
57 void (*dofunc)(struct inode *, __u64,
58 struct buffer_head *,
59 struct buffer_head *));
Ryusuke Konishic85399c2009-04-05 18:30:58 +090060void nilfs_sufile_do_scrap(struct inode *, __u64, struct buffer_head *,
61 struct buffer_head *);
Ryusuke Konishia7030182009-04-05 18:24:11 +090062void nilfs_sufile_do_free(struct inode *, __u64, struct buffer_head *,
63 struct buffer_head *);
Ryusuke Konishi071cb4b2009-05-16 23:44:55 +090064void nilfs_sufile_do_cancel_free(struct inode *, __u64, struct buffer_head *,
65 struct buffer_head *);
Ryusuke Konishia7030182009-04-05 18:24:11 +090066void nilfs_sufile_do_set_error(struct inode *, __u64, struct buffer_head *,
67 struct buffer_head *);
68
Ryusuke Konishi8707df32009-11-13 01:36:56 +090069int nilfs_sufile_read(struct inode *sufile, struct nilfs_inode *raw_inode);
Ryusuke Konishi79739562009-11-12 23:56:43 +090070struct inode *nilfs_sufile_new(struct the_nilfs *nilfs, size_t susize);
71
Ryusuke Konishia7030182009-04-05 18:24:11 +090072/**
Ryusuke Konishic85399c2009-04-05 18:30:58 +090073 * nilfs_sufile_scrap - make a segment garbage
74 * @sufile: inode of segment usage file
75 * @segnum: segment number to be freed
76 */
77static inline int nilfs_sufile_scrap(struct inode *sufile, __u64 segnum)
78{
79 return nilfs_sufile_update(sufile, segnum, 1, nilfs_sufile_do_scrap);
80}
81
82/**
Ryusuke Konishia7030182009-04-05 18:24:11 +090083 * nilfs_sufile_free - free segment
84 * @sufile: inode of segment usage file
85 * @segnum: segment number to be freed
86 */
87static inline int nilfs_sufile_free(struct inode *sufile, __u64 segnum)
88{
89 return nilfs_sufile_update(sufile, segnum, 0, nilfs_sufile_do_free);
90}
91
92/**
Ryusuke Konishi071cb4b2009-05-16 23:44:55 +090093 * nilfs_sufile_freev - free segments
94 * @sufile: inode of segment usage file
95 * @segnumv: array of segment numbers
96 * @nsegs: size of @segnumv array
97 * @ndone: place to store the number of freed segments
98 */
99static inline int nilfs_sufile_freev(struct inode *sufile, __u64 *segnumv,
100 size_t nsegs, size_t *ndone)
101{
102 return nilfs_sufile_updatev(sufile, segnumv, nsegs, 0, ndone,
103 nilfs_sufile_do_free);
104}
105
106/**
107 * nilfs_sufile_cancel_freev - reallocate freeing segments
108 * @sufile: inode of segment usage file
109 * @segnumv: array of segment numbers
110 * @nsegs: size of @segnumv array
111 * @ndone: place to store the number of cancelled segments
112 *
113 * Return Value: On success, 0 is returned. On error, a negative error codes
114 * is returned.
115 */
116static inline int nilfs_sufile_cancel_freev(struct inode *sufile,
117 __u64 *segnumv, size_t nsegs,
118 size_t *ndone)
119{
120 return nilfs_sufile_updatev(sufile, segnumv, nsegs, 0, ndone,
121 nilfs_sufile_do_cancel_free);
122}
123
124/**
Ryusuke Konishia7030182009-04-05 18:24:11 +0900125 * nilfs_sufile_set_error - mark a segment as erroneous
126 * @sufile: inode of segment usage file
127 * @segnum: segment number
128 *
129 * Description: nilfs_sufile_set_error() marks the segment specified by
130 * @segnum as erroneous. The error segment will never be used again.
131 *
132 * Return Value: On success, 0 is returned. On error, one of the following
133 * negative error codes is returned.
134 *
135 * %-EIO - I/O error.
136 *
137 * %-ENOMEM - Insufficient amount of memory available.
138 *
139 * %-EINVAL - Invalid segment usage number.
140 */
141static inline int nilfs_sufile_set_error(struct inode *sufile, __u64 segnum)
142{
143 return nilfs_sufile_update(sufile, segnum, 0,
144 nilfs_sufile_do_set_error);
145}
Koji Sato6c98cd42009-04-06 19:01:32 -0700146
147#endif /* _NILFS_SUFILE_H */