1 /* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
6 * Buffer cache handling
8 * Copyright (C) 2002, 2004 Oracle. All rights reserved.
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public
12 * License as published by the Free Software Foundation; either
13 * version 2 of the License, or (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
20 * You should have received a copy of the GNU General Public
21 * License along with this program; if not, write to the
22 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 * Boston, MA 021110-1307, USA.
27 #include <linux/types.h>
28 #include <linux/slab.h>
29 #include <linux/highmem.h>
31 #include <cluster/masklog.h>
40 #include "buffer_head_io.h"
42 int ocfs2_write_block(struct ocfs2_super
*osb
, struct buffer_head
*bh
,
47 mlog_entry("(bh->b_blocknr = %llu, inode=%p)\n",
48 (unsigned long long)bh
->b_blocknr
, inode
);
50 BUG_ON(bh
->b_blocknr
< OCFS2_SUPER_BLOCK_BLKNO
);
51 BUG_ON(buffer_jbd(bh
));
53 /* No need to check for a soft readonly file system here. non
54 * journalled writes are only ever done on system files which
55 * can get modified during recovery even if read-only. */
56 if (ocfs2_is_hard_readonly(osb
)) {
61 mutex_lock(&OCFS2_I(inode
)->ip_io_mutex
);
64 set_buffer_uptodate(bh
);
66 /* remove from dirty list before I/O. */
67 clear_buffer_dirty(bh
);
69 get_bh(bh
); /* for end_buffer_write_sync() */
70 bh
->b_end_io
= end_buffer_write_sync
;
75 if (buffer_uptodate(bh
)) {
76 ocfs2_set_buffer_uptodate(inode
, bh
);
78 /* We don't need to remove the clustered uptodate
79 * information for this bh as it's not marked locally
85 mutex_unlock(&OCFS2_I(inode
)->ip_io_mutex
);
91 int ocfs2_read_blocks(struct ocfs2_super
*osb
, u64 block
, int nr
,
92 struct buffer_head
*bhs
[], int flags
,
96 struct super_block
*sb
;
97 int i
, ignore_cache
= 0;
98 struct buffer_head
*bh
;
100 mlog_entry("(block=(%llu), nr=(%d), flags=%d, inode=%p)\n",
101 (unsigned long long)block
, nr
, flags
, inode
);
103 BUG_ON((flags
& OCFS2_BH_READAHEAD
) &&
104 (!inode
|| !(flags
& OCFS2_BH_CACHED
)));
106 if (osb
== NULL
|| osb
->sb
== NULL
|| bhs
== NULL
) {
113 mlog(ML_ERROR
, "asked to read %d blocks!\n", nr
);
120 mlog(ML_BH_IO
, "No buffers will be read!\n");
127 if (flags
& OCFS2_BH_CACHED
&& !inode
)
128 flags
&= ~OCFS2_BH_CACHED
;
131 mutex_lock(&OCFS2_I(inode
)->ip_io_mutex
);
132 for (i
= 0 ; i
< nr
; i
++) {
133 if (bhs
[i
] == NULL
) {
134 bhs
[i
] = sb_getblk(sb
, block
++);
135 if (bhs
[i
] == NULL
) {
137 mutex_unlock(&OCFS2_I(inode
)->ip_io_mutex
);
146 /* There are three read-ahead cases here which we need to
147 * be concerned with. All three assume a buffer has
148 * previously been submitted with OCFS2_BH_READAHEAD
149 * and it hasn't yet completed I/O.
151 * 1) The current request is sync to disk. This rarely
152 * happens these days, and never when performance
153 * matters - the code can just wait on the buffer
154 * lock and re-submit.
156 * 2) The current request is cached, but not
157 * readahead. ocfs2_buffer_uptodate() will return
158 * false anyway, so we'll wind up waiting on the
159 * buffer lock to do I/O. We re-check the request
160 * with after getting the lock to avoid a re-submit.
162 * 3) The current request is readahead (and so must
163 * also be a caching one). We short circuit if the
164 * buffer is locked (under I/O) and if it's in the
165 * uptodate cache. The re-check from #2 catches the
166 * case that the previous read-ahead completes just
167 * before our is-it-in-flight check.
170 if (flags
& OCFS2_BH_CACHED
&&
171 !ocfs2_buffer_uptodate(inode
, bh
)) {
173 "bh (%llu), inode %llu not uptodate\n",
174 (unsigned long long)bh
->b_blocknr
,
175 (unsigned long long)OCFS2_I(inode
)->ip_blkno
);
179 /* XXX: Can we ever get this and *not* have the cached
181 if (buffer_jbd(bh
)) {
182 if (!(flags
& OCFS2_BH_CACHED
) || ignore_cache
)
183 mlog(ML_BH_IO
, "trying to sync read a jbd "
184 "managed bh (blocknr = %llu)\n",
185 (unsigned long long)bh
->b_blocknr
);
189 if (!(flags
& OCFS2_BH_CACHED
) || ignore_cache
) {
190 if (buffer_dirty(bh
)) {
191 /* This should probably be a BUG, or
192 * at least return an error. */
193 mlog(ML_BH_IO
, "asking me to sync read a dirty "
194 "buffer! (blocknr = %llu)\n",
195 (unsigned long long)bh
->b_blocknr
);
199 /* A read-ahead request was made - if the
200 * buffer is already under read-ahead from a
201 * previously submitted request than we are
203 if ((flags
& OCFS2_BH_READAHEAD
)
204 && ocfs2_buffer_read_ahead(inode
, bh
))
208 if (buffer_jbd(bh
)) {
209 #ifdef CATCH_BH_JBD_RACES
210 mlog(ML_ERROR
, "block %llu had the JBD bit set "
211 "while I was in lock_buffer!",
212 (unsigned long long)bh
->b_blocknr
);
220 /* Re-check ocfs2_buffer_uptodate() as a
221 * previously read-ahead buffer may have
222 * completed I/O while we were waiting for the
224 if ((flags
& OCFS2_BH_CACHED
)
225 && !(flags
& OCFS2_BH_READAHEAD
)
226 && ocfs2_buffer_uptodate(inode
, bh
)) {
231 clear_buffer_uptodate(bh
);
232 get_bh(bh
); /* for end_buffer_read_sync() */
233 bh
->b_end_io
= end_buffer_read_sync
;
241 for (i
= (nr
- 1); i
>= 0; i
--) {
244 if (!(flags
& OCFS2_BH_READAHEAD
)) {
245 /* We know this can't have changed as we hold the
246 * inode sem. Avoid doing any work on the bh if the
251 if (!buffer_uptodate(bh
)) {
252 /* Status won't be cleared from here on out,
253 * so we can safely record this and loop back
254 * to cleanup the other buffers. Don't need to
255 * remove the clustered uptodate information
256 * for this bh as it's not marked locally
265 /* Always set the buffer in the cache, even if it was
266 * a forced read, or read-ahead which hasn't yet
269 ocfs2_set_buffer_uptodate(inode
, bh
);
272 mutex_unlock(&OCFS2_I(inode
)->ip_io_mutex
);
274 mlog(ML_BH_IO
, "block=(%llu), nr=(%d), cached=%s, flags=0x%x\n",
275 (unsigned long long)block
, nr
,
276 (!(flags
& OCFS2_BH_CACHED
) || ignore_cache
) ? "no" : "yes", flags
);
284 /* Check whether the blkno is the super block or one of the backups. */
285 static void ocfs2_check_super_or_backup(struct super_block
*sb
,
291 if (blkno
== OCFS2_SUPER_BLOCK_BLKNO
)
294 for (i
= 0; i
< OCFS2_MAX_BACKUP_SUPERBLOCKS
; i
++) {
295 backup_blkno
= ocfs2_backup_super_blkno(sb
, i
);
296 if (backup_blkno
== blkno
)
304 * Write super block and backups doesn't need to collaborate with journal,
305 * so we don't need to lock ip_io_mutex and inode doesn't need to bea passed
306 * into this function.
308 int ocfs2_write_super_or_backup(struct ocfs2_super
*osb
,
309 struct buffer_head
*bh
)
315 BUG_ON(buffer_jbd(bh
));
316 ocfs2_check_super_or_backup(osb
->sb
, bh
->b_blocknr
);
318 if (ocfs2_is_hard_readonly(osb
) || ocfs2_is_soft_readonly(osb
)) {
324 set_buffer_uptodate(bh
);
326 /* remove from dirty list before I/O. */
327 clear_buffer_dirty(bh
);
329 get_bh(bh
); /* for end_buffer_write_sync() */
330 bh
->b_end_io
= end_buffer_write_sync
;
331 submit_bh(WRITE
, bh
);
335 if (!buffer_uptodate(bh
)) {