blob: 46e89872294c4fd43400128ac62afa401fbac5f7 [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 *
Ryusuke Konishi4b420ab2016-05-23 16:23:09 -070016 * Written by Koji Sato.
Koji Sato6c98cd42009-04-06 19:01:32 -070017 */
18
19#ifndef _NILFS_SUFILE_H
20#define _NILFS_SUFILE_H
21
22#include <linux/fs.h>
23#include <linux/buffer_head.h>
24#include <linux/nilfs2_fs.h>
25#include "mdt.h"
26
Koji Sato6c98cd42009-04-06 19:01:32 -070027
28static inline unsigned long nilfs_sufile_get_nsegments(struct inode *sufile)
29{
Ryusuke Konishi0ef28f92011-05-05 12:56:51 +090030 return ((struct the_nilfs *)sufile->i_sb->s_fs_info)->ns_nsegments;
Koji Sato6c98cd42009-04-06 19:01:32 -070031}
32
Ryusuke Konishief7d4752009-11-13 08:45:32 +090033unsigned long nilfs_sufile_get_ncleansegs(struct inode *sufile);
34
Ryusuke Konishi619205d2011-05-05 01:23:57 +090035int nilfs_sufile_set_alloc_range(struct inode *sufile, __u64 start, __u64 end);
Koji Sato6c98cd42009-04-06 19:01:32 -070036int nilfs_sufile_alloc(struct inode *, __u64 *);
Ryusuke Konishi61a189e2009-11-18 17:25:12 +090037int nilfs_sufile_mark_dirty(struct inode *sufile, __u64 segnum);
Ryusuke Konishi071ec542009-11-18 18:23:34 +090038int nilfs_sufile_set_segment_usage(struct inode *sufile, __u64 segnum,
39 unsigned long nblocks, time_t modtime);
Koji Sato6c98cd42009-04-06 19:01:32 -070040int nilfs_sufile_get_stat(struct inode *, struct nilfs_sustat *);
Ryusuke Konishif19e78d2016-05-23 16:23:03 -070041ssize_t nilfs_sufile_get_suinfo(struct inode *, __u64, void *, unsigned int,
Koji Sato6c98cd42009-04-06 19:01:32 -070042 size_t);
Ryusuke Konishif19e78d2016-05-23 16:23:03 -070043ssize_t nilfs_sufile_set_suinfo(struct inode *, void *, unsigned int, size_t);
Koji Sato6c98cd42009-04-06 19:01:32 -070044
Ryusuke Konishidda54f42009-05-16 21:49:10 +090045int nilfs_sufile_updatev(struct inode *, __u64 *, size_t, int, size_t *,
46 void (*dofunc)(struct inode *, __u64,
47 struct buffer_head *,
48 struct buffer_head *));
Ryusuke Konishia7030182009-04-05 18:24:11 +090049int nilfs_sufile_update(struct inode *, __u64, int,
50 void (*dofunc)(struct inode *, __u64,
51 struct buffer_head *,
52 struct buffer_head *));
Ryusuke Konishic85399c2009-04-05 18:30:58 +090053void nilfs_sufile_do_scrap(struct inode *, __u64, struct buffer_head *,
54 struct buffer_head *);
Ryusuke Konishia7030182009-04-05 18:24:11 +090055void nilfs_sufile_do_free(struct inode *, __u64, struct buffer_head *,
56 struct buffer_head *);
Ryusuke Konishi071cb4b2009-05-16 23:44:55 +090057void nilfs_sufile_do_cancel_free(struct inode *, __u64, struct buffer_head *,
58 struct buffer_head *);
Ryusuke Konishia7030182009-04-05 18:24:11 +090059void nilfs_sufile_do_set_error(struct inode *, __u64, struct buffer_head *,
60 struct buffer_head *);
61
Ryusuke Konishi4e33f9e2011-05-05 01:23:58 +090062int nilfs_sufile_resize(struct inode *sufile, __u64 newnsegs);
Ryusuke Konishif1e89c82010-09-05 12:20:59 +090063int nilfs_sufile_read(struct super_block *sb, size_t susize,
64 struct nilfs_inode *raw_inode, struct inode **inodep);
Andreas Rohner82e11e82014-04-03 14:50:29 -070065int nilfs_sufile_trim_fs(struct inode *sufile, struct fstrim_range *range);
Ryusuke Konishi79739562009-11-12 23:56:43 +090066
Ryusuke Konishia7030182009-04-05 18:24:11 +090067/**
Ryusuke Konishic85399c2009-04-05 18:30:58 +090068 * nilfs_sufile_scrap - make a segment garbage
69 * @sufile: inode of segment usage file
70 * @segnum: segment number to be freed
71 */
72static inline int nilfs_sufile_scrap(struct inode *sufile, __u64 segnum)
73{
74 return nilfs_sufile_update(sufile, segnum, 1, nilfs_sufile_do_scrap);
75}
76
77/**
Ryusuke Konishia7030182009-04-05 18:24:11 +090078 * nilfs_sufile_free - free segment
79 * @sufile: inode of segment usage file
80 * @segnum: segment number to be freed
81 */
82static inline int nilfs_sufile_free(struct inode *sufile, __u64 segnum)
83{
84 return nilfs_sufile_update(sufile, segnum, 0, nilfs_sufile_do_free);
85}
86
87/**
Ryusuke Konishi071cb4b2009-05-16 23:44:55 +090088 * nilfs_sufile_freev - free segments
89 * @sufile: inode of segment usage file
90 * @segnumv: array of segment numbers
91 * @nsegs: size of @segnumv array
92 * @ndone: place to store the number of freed segments
93 */
94static inline int nilfs_sufile_freev(struct inode *sufile, __u64 *segnumv,
95 size_t nsegs, size_t *ndone)
96{
97 return nilfs_sufile_updatev(sufile, segnumv, nsegs, 0, ndone,
98 nilfs_sufile_do_free);
99}
100
101/**
102 * nilfs_sufile_cancel_freev - reallocate freeing segments
103 * @sufile: inode of segment usage file
104 * @segnumv: array of segment numbers
105 * @nsegs: size of @segnumv array
106 * @ndone: place to store the number of cancelled segments
107 *
108 * Return Value: On success, 0 is returned. On error, a negative error codes
109 * is returned.
110 */
111static inline int nilfs_sufile_cancel_freev(struct inode *sufile,
112 __u64 *segnumv, size_t nsegs,
113 size_t *ndone)
114{
115 return nilfs_sufile_updatev(sufile, segnumv, nsegs, 0, ndone,
116 nilfs_sufile_do_cancel_free);
117}
118
119/**
Ryusuke Konishia7030182009-04-05 18:24:11 +0900120 * nilfs_sufile_set_error - mark a segment as erroneous
121 * @sufile: inode of segment usage file
122 * @segnum: segment number
123 *
124 * Description: nilfs_sufile_set_error() marks the segment specified by
125 * @segnum as erroneous. The error segment will never be used again.
126 *
127 * Return Value: On success, 0 is returned. On error, one of the following
128 * negative error codes is returned.
129 *
130 * %-EIO - I/O error.
131 *
132 * %-ENOMEM - Insufficient amount of memory available.
133 *
134 * %-EINVAL - Invalid segment usage number.
135 */
136static inline int nilfs_sufile_set_error(struct inode *sufile, __u64 segnum)
137{
138 return nilfs_sufile_update(sufile, segnum, 0,
139 nilfs_sufile_do_set_error);
140}
Koji Sato6c98cd42009-04-06 19:01:32 -0700141
142#endif /* _NILFS_SUFILE_H */