blob: 4dd6592d5a4cbf0c9f3ebdfa7a95fcc5870d253d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#ifndef __XFS_BUF_H__
19#define __XFS_BUF_H__
20
21#include <linux/config.h>
22#include <linux/list.h>
23#include <linux/types.h>
24#include <linux/spinlock.h>
25#include <asm/system.h>
26#include <linux/mm.h>
27#include <linux/fs.h>
28#include <linux/buffer_head.h>
29#include <linux/uio.h>
30
31/*
32 * Base types
33 */
34
Nathan Scottce8e9222006-01-11 15:39:08 +110035#define XFS_BUF_DADDR_NULL ((xfs_daddr_t) (-1LL))
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Nathan Scottce8e9222006-01-11 15:39:08 +110037#define xfs_buf_ctob(pp) ((pp) * PAGE_CACHE_SIZE)
38#define xfs_buf_btoc(dd) (((dd) + PAGE_CACHE_SIZE-1) >> PAGE_CACHE_SHIFT)
39#define xfs_buf_btoct(dd) ((dd) >> PAGE_CACHE_SHIFT)
40#define xfs_buf_poff(aa) ((aa) & ~PAGE_CACHE_MASK)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Nathan Scottce8e9222006-01-11 15:39:08 +110042typedef enum {
43 XBRW_READ = 1, /* transfer into target memory */
44 XBRW_WRITE = 2, /* transfer from target memory */
45 XBRW_ZERO = 3, /* Zero target memory */
46} xfs_buf_rw_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Nathan Scottce8e9222006-01-11 15:39:08 +110048typedef enum {
49 XBF_READ = (1 << 0), /* buffer intended for reading from device */
50 XBF_WRITE = (1 << 1), /* buffer intended for writing to device */
51 XBF_MAPPED = (1 << 2), /* buffer mapped (b_addr valid) */
52 XBF_ASYNC = (1 << 4), /* initiator will not wait for completion */
53 XBF_DONE = (1 << 5), /* all pages in the buffer uptodate */
54 XBF_DELWRI = (1 << 6), /* buffer has dirty pages */
55 XBF_STALE = (1 << 7), /* buffer has been staled, do not find it */
56 XBF_FS_MANAGED = (1 << 8), /* filesystem controls freeing memory */
57 XBF_ORDERED = (1 << 11), /* use ordered writes */
58 XBF_READ_AHEAD = (1 << 12), /* asynchronous read-ahead */
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60 /* flags used only as arguments to access routines */
Nathan Scottce8e9222006-01-11 15:39:08 +110061 XBF_LOCK = (1 << 14), /* lock requested */
62 XBF_TRYLOCK = (1 << 15), /* lock requested, but do not wait */
63 XBF_DONT_BLOCK = (1 << 16), /* do not block in current thread */
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65 /* flags used only internally */
Nathan Scottce8e9222006-01-11 15:39:08 +110066 _XBF_PAGE_CACHE = (1 << 17),/* backed by pagecache */
67 _XBF_KMEM_ALLOC = (1 << 18),/* backed by kmem_alloc() */
68 _XBF_RUN_QUEUES = (1 << 19),/* run block device task queue */
69 _XBF_DELWRI_Q = (1 << 21), /* buffer on delwri queue */
70} xfs_buf_flags_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Nathan Scottce8e9222006-01-11 15:39:08 +110072typedef enum {
73 XBT_FORCE_SLEEP = (0 << 1),
74 XBT_FORCE_FLUSH = (1 << 1),
75} xfs_buftarg_flags_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77typedef struct xfs_bufhash {
78 struct list_head bh_list;
79 spinlock_t bh_lock;
80} xfs_bufhash_t;
81
82typedef struct xfs_buftarg {
Nathan Scottce8e9222006-01-11 15:39:08 +110083 dev_t bt_dev;
84 struct block_device *bt_bdev;
85 struct address_space *bt_mapping;
86 unsigned int bt_bsize;
87 unsigned int bt_sshift;
88 size_t bt_smask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Nathan Scottce8e9222006-01-11 15:39:08 +110090 /* per device buffer hash table */
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 uint bt_hashmask;
92 uint bt_hashshift;
93 xfs_bufhash_t *bt_hash;
David Chinnera6867a62006-01-11 15:37:58 +110094
95 /* per device delwri queue */
96 struct task_struct *bt_task;
97 struct list_head bt_list;
98 struct list_head bt_delwrite_queue;
99 spinlock_t bt_delwrite_lock;
Nathan Scottce8e9222006-01-11 15:39:08 +1100100 unsigned long bt_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101} xfs_buftarg_t;
102
103/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100104 * xfs_buf_t: Buffer structure for pagecache-based buffers
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 *
Nathan Scottce8e9222006-01-11 15:39:08 +1100106 * This buffer structure is used by the pagecache buffer management routines
107 * to refer to an assembly of pages forming a logical buffer.
108 *
109 * The buffer structure is used on a temporary basis only, and discarded when
110 * released. The real data storage is recorded in the pagecache. Buffers are
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 * hashed to the block device on which the file system resides.
112 */
113
114struct xfs_buf;
Nathan Scottce8e9222006-01-11 15:39:08 +1100115typedef void (*xfs_buf_iodone_t)(struct xfs_buf *);
116typedef void (*xfs_buf_relse_t)(struct xfs_buf *);
117typedef int (*xfs_buf_bdstrat_t)(struct xfs_buf *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Nathan Scottce8e9222006-01-11 15:39:08 +1100119#define XB_PAGES 2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121typedef struct xfs_buf {
Nathan Scottce8e9222006-01-11 15:39:08 +1100122 struct semaphore b_sema; /* semaphore for lockables */
123 unsigned long b_queuetime; /* time buffer was queued */
124 atomic_t b_pin_count; /* pin count */
125 wait_queue_head_t b_waiters; /* unpin waiters */
126 struct list_head b_list;
127 xfs_buf_flags_t b_flags; /* status flags */
128 struct list_head b_hash_list; /* hash table list */
129 xfs_bufhash_t *b_hash; /* hash table list start */
130 xfs_buftarg_t *b_target; /* buffer target (device) */
131 atomic_t b_hold; /* reference count */
132 xfs_daddr_t b_bn; /* block number for I/O */
133 xfs_off_t b_file_offset; /* offset in file */
134 size_t b_buffer_length;/* size of buffer in bytes */
135 size_t b_count_desired;/* desired transfer size */
136 void *b_addr; /* virtual address of buffer */
137 struct work_struct b_iodone_work;
138 atomic_t b_io_remaining; /* #outstanding I/O requests */
139 xfs_buf_iodone_t b_iodone; /* I/O completion function */
140 xfs_buf_relse_t b_relse; /* releasing function */
141 xfs_buf_bdstrat_t b_strat; /* pre-write function */
142 struct semaphore b_iodonesema; /* Semaphore for I/O waiters */
143 void *b_fspriv;
144 void *b_fspriv2;
145 void *b_fspriv3;
146 unsigned short b_error; /* error code on I/O */
147 unsigned short b_locked; /* page array is locked */
148 unsigned int b_page_count; /* size of page array */
149 unsigned int b_offset; /* page offset in first page */
150 struct page **b_pages; /* array of page pointers */
151 struct page *b_page_array[XB_PAGES]; /* inline pages */
152#ifdef XFS_BUF_LOCK_TRACKING
153 int b_last_holder;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154#endif
155} xfs_buf_t;
156
157
158/* Finding and Reading Buffers */
Nathan Scottce8e9222006-01-11 15:39:08 +1100159extern xfs_buf_t *_xfs_buf_find(xfs_buftarg_t *, xfs_off_t, size_t,
160 xfs_buf_flags_t, xfs_buf_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161#define xfs_incore(buftarg,blkno,len,lockit) \
Nathan Scottce8e9222006-01-11 15:39:08 +1100162 _xfs_buf_find(buftarg, blkno ,len, lockit, NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Nathan Scottce8e9222006-01-11 15:39:08 +1100164extern xfs_buf_t *xfs_buf_get_flags(xfs_buftarg_t *, xfs_off_t, size_t,
165 xfs_buf_flags_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166#define xfs_buf_get(target, blkno, len, flags) \
Nathan Scottce8e9222006-01-11 15:39:08 +1100167 xfs_buf_get_flags((target), (blkno), (len), XBF_LOCK | XBF_MAPPED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Nathan Scottce8e9222006-01-11 15:39:08 +1100169extern xfs_buf_t *xfs_buf_read_flags(xfs_buftarg_t *, xfs_off_t, size_t,
170 xfs_buf_flags_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171#define xfs_buf_read(target, blkno, len, flags) \
Nathan Scottce8e9222006-01-11 15:39:08 +1100172 xfs_buf_read_flags((target), (blkno), (len), XBF_LOCK | XBF_MAPPED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Nathan Scottce8e9222006-01-11 15:39:08 +1100174extern xfs_buf_t *xfs_buf_get_empty(size_t, xfs_buftarg_t *);
175extern xfs_buf_t *xfs_buf_get_noaddr(size_t, xfs_buftarg_t *);
176extern int xfs_buf_associate_memory(xfs_buf_t *, void *, size_t);
177extern void xfs_buf_hold(xfs_buf_t *);
178extern void xfs_buf_readahead(xfs_buftarg_t *, xfs_off_t, size_t,
179 xfs_buf_flags_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
181/* Releasing Buffers */
Nathan Scottce8e9222006-01-11 15:39:08 +1100182extern void xfs_buf_free(xfs_buf_t *);
183extern void xfs_buf_rele(xfs_buf_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185/* Locking and Unlocking Buffers */
Nathan Scottce8e9222006-01-11 15:39:08 +1100186extern int xfs_buf_cond_lock(xfs_buf_t *);
187extern int xfs_buf_lock_value(xfs_buf_t *);
188extern void xfs_buf_lock(xfs_buf_t *);
189extern void xfs_buf_unlock(xfs_buf_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
191/* Buffer Read and Write Routines */
Nathan Scottce8e9222006-01-11 15:39:08 +1100192extern void xfs_buf_ioend(xfs_buf_t *, int);
193extern void xfs_buf_ioerror(xfs_buf_t *, int);
194extern int xfs_buf_iostart(xfs_buf_t *, xfs_buf_flags_t);
195extern int xfs_buf_iorequest(xfs_buf_t *);
196extern int xfs_buf_iowait(xfs_buf_t *);
197extern void xfs_buf_iomove(xfs_buf_t *, size_t, size_t, xfs_caddr_t,
198 xfs_buf_rw_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Nathan Scottce8e9222006-01-11 15:39:08 +1100200static inline int xfs_buf_iostrategy(xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
Nathan Scottce8e9222006-01-11 15:39:08 +1100202 return bp->b_strat ? bp->b_strat(bp) : xfs_buf_iorequest(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203}
204
Nathan Scottce8e9222006-01-11 15:39:08 +1100205static inline int xfs_buf_geterror(xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
Nathan Scottce8e9222006-01-11 15:39:08 +1100207 return bp ? bp->b_error : ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208}
209
210/* Buffer Utility Routines */
Nathan Scottce8e9222006-01-11 15:39:08 +1100211extern xfs_caddr_t xfs_buf_offset(xfs_buf_t *, size_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213/* Pinning Buffer Storage in Memory */
Nathan Scottce8e9222006-01-11 15:39:08 +1100214extern void xfs_buf_pin(xfs_buf_t *);
215extern void xfs_buf_unpin(xfs_buf_t *);
216extern int xfs_buf_ispin(xfs_buf_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
218/* Delayed Write Buffer Routines */
Nathan Scottce8e9222006-01-11 15:39:08 +1100219extern void xfs_buf_delwri_dequeue(xfs_buf_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221/* Buffer Daemon Setup Routines */
Nathan Scottce8e9222006-01-11 15:39:08 +1100222extern int xfs_buf_init(void);
223extern void xfs_buf_terminate(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Nathan Scottce8e9222006-01-11 15:39:08 +1100225#ifdef XFS_BUF_TRACE
226extern ktrace_t *xfs_buf_trace_buf;
227extern void xfs_buf_trace(xfs_buf_t *, char *, void *, void *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228#else
Nathan Scottce8e9222006-01-11 15:39:08 +1100229#define xfs_buf_trace(bp,id,ptr,ra) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230#endif
231
Nathan Scottce8e9222006-01-11 15:39:08 +1100232#define xfs_buf_target_name(target) \
233 ({ char __b[BDEVNAME_SIZE]; bdevname((target)->bt_bdev, __b); __b; })
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
235
Nathan Scottce8e9222006-01-11 15:39:08 +1100236#define XFS_B_ASYNC XBF_ASYNC
237#define XFS_B_DELWRI XBF_DELWRI
238#define XFS_B_READ XBF_READ
239#define XFS_B_WRITE XBF_WRITE
240#define XFS_B_STALE XBF_STALE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Nathan Scottce8e9222006-01-11 15:39:08 +1100242#define XFS_BUF_TRYLOCK XBF_TRYLOCK
243#define XFS_INCORE_TRYLOCK XBF_TRYLOCK
244#define XFS_BUF_LOCK XBF_LOCK
245#define XFS_BUF_MAPPED XBF_MAPPED
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Nathan Scottce8e9222006-01-11 15:39:08 +1100247#define BUF_BUSY XBF_DONT_BLOCK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Nathan Scottce8e9222006-01-11 15:39:08 +1100249#define XFS_BUF_BFLAGS(bp) ((bp)->b_flags)
250#define XFS_BUF_ZEROFLAGS(bp) \
251 ((bp)->b_flags &= ~(XBF_READ|XBF_WRITE|XBF_ASYNC|XBF_DELWRI))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Nathan Scottce8e9222006-01-11 15:39:08 +1100253#define XFS_BUF_STALE(bp) ((bp)->b_flags |= XFS_B_STALE)
254#define XFS_BUF_UNSTALE(bp) ((bp)->b_flags &= ~XFS_B_STALE)
255#define XFS_BUF_ISSTALE(bp) ((bp)->b_flags & XFS_B_STALE)
256#define XFS_BUF_SUPER_STALE(bp) do { \
257 XFS_BUF_STALE(bp); \
258 xfs_buf_delwri_dequeue(bp); \
259 XFS_BUF_DONE(bp); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 } while (0)
261
Nathan Scottce8e9222006-01-11 15:39:08 +1100262#define XFS_BUF_MANAGE XBF_FS_MANAGED
263#define XFS_BUF_UNMANAGE(bp) ((bp)->b_flags &= ~XBF_FS_MANAGED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Nathan Scottce8e9222006-01-11 15:39:08 +1100265#define XFS_BUF_DELAYWRITE(bp) ((bp)->b_flags |= XBF_DELWRI)
266#define XFS_BUF_UNDELAYWRITE(bp) xfs_buf_delwri_dequeue(bp)
267#define XFS_BUF_ISDELAYWRITE(bp) ((bp)->b_flags & XBF_DELWRI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Nathan Scottce8e9222006-01-11 15:39:08 +1100269#define XFS_BUF_ERROR(bp,no) xfs_buf_ioerror(bp,no)
270#define XFS_BUF_GETERROR(bp) xfs_buf_geterror(bp)
271#define XFS_BUF_ISERROR(bp) (xfs_buf_geterror(bp) ? 1 : 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Nathan Scottce8e9222006-01-11 15:39:08 +1100273#define XFS_BUF_DONE(bp) ((bp)->b_flags |= XBF_DONE)
274#define XFS_BUF_UNDONE(bp) ((bp)->b_flags &= ~XBF_DONE)
275#define XFS_BUF_ISDONE(bp) ((bp)->b_flags & XBF_DONE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Nathan Scottce8e9222006-01-11 15:39:08 +1100277#define XFS_BUF_BUSY(bp) do { } while (0)
278#define XFS_BUF_UNBUSY(bp) do { } while (0)
279#define XFS_BUF_ISBUSY(bp) (1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Nathan Scottce8e9222006-01-11 15:39:08 +1100281#define XFS_BUF_ASYNC(bp) ((bp)->b_flags |= XBF_ASYNC)
282#define XFS_BUF_UNASYNC(bp) ((bp)->b_flags &= ~XBF_ASYNC)
283#define XFS_BUF_ISASYNC(bp) ((bp)->b_flags & XBF_ASYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Nathan Scottce8e9222006-01-11 15:39:08 +1100285#define XFS_BUF_ORDERED(bp) ((bp)->b_flags |= XBF_ORDERED)
286#define XFS_BUF_UNORDERED(bp) ((bp)->b_flags &= ~XBF_ORDERED)
287#define XFS_BUF_ISORDERED(bp) ((bp)->b_flags & XBF_ORDERED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Nathan Scottce8e9222006-01-11 15:39:08 +1100289#define XFS_BUF_SHUT(bp) do { } while (0)
290#define XFS_BUF_UNSHUT(bp) do { } while (0)
291#define XFS_BUF_ISSHUT(bp) (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Nathan Scottce8e9222006-01-11 15:39:08 +1100293#define XFS_BUF_HOLD(bp) xfs_buf_hold(bp)
294#define XFS_BUF_READ(bp) ((bp)->b_flags |= XBF_READ)
295#define XFS_BUF_UNREAD(bp) ((bp)->b_flags &= ~XBF_READ)
296#define XFS_BUF_ISREAD(bp) ((bp)->b_flags & XBF_READ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Nathan Scottce8e9222006-01-11 15:39:08 +1100298#define XFS_BUF_WRITE(bp) ((bp)->b_flags |= XBF_WRITE)
299#define XFS_BUF_UNWRITE(bp) ((bp)->b_flags &= ~XBF_WRITE)
300#define XFS_BUF_ISWRITE(bp) ((bp)->b_flags & XBF_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Nathan Scottce8e9222006-01-11 15:39:08 +1100302#define XFS_BUF_ISUNINITIAL(bp) (0)
303#define XFS_BUF_UNUNINITIAL(bp) (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Nathan Scottce8e9222006-01-11 15:39:08 +1100305#define XFS_BUF_BP_ISMAPPED(bp) (1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Nathan Scottce8e9222006-01-11 15:39:08 +1100307#define XFS_BUF_IODONE_FUNC(bp) ((bp)->b_iodone)
308#define XFS_BUF_SET_IODONE_FUNC(bp, func) ((bp)->b_iodone = (func))
309#define XFS_BUF_CLR_IODONE_FUNC(bp) ((bp)->b_iodone = NULL)
310#define XFS_BUF_SET_BDSTRAT_FUNC(bp, func) ((bp)->b_strat = (func))
311#define XFS_BUF_CLR_BDSTRAT_FUNC(bp) ((bp)->b_strat = NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Nathan Scottce8e9222006-01-11 15:39:08 +1100313#define XFS_BUF_FSPRIVATE(bp, type) ((type)(bp)->b_fspriv)
314#define XFS_BUF_SET_FSPRIVATE(bp, val) ((bp)->b_fspriv = (void*)(val))
315#define XFS_BUF_FSPRIVATE2(bp, type) ((type)(bp)->b_fspriv2)
316#define XFS_BUF_SET_FSPRIVATE2(bp, val) ((bp)->b_fspriv2 = (void*)(val))
317#define XFS_BUF_FSPRIVATE3(bp, type) ((type)(bp)->b_fspriv3)
318#define XFS_BUF_SET_FSPRIVATE3(bp, val) ((bp)->b_fspriv3 = (void*)(val))
319#define XFS_BUF_SET_START(bp) do { } while (0)
320#define XFS_BUF_SET_BRELSE_FUNC(bp, func) ((bp)->b_relse = (func))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Nathan Scottce8e9222006-01-11 15:39:08 +1100322#define XFS_BUF_PTR(bp) (xfs_caddr_t)((bp)->b_addr)
323#define XFS_BUF_SET_PTR(bp, val, cnt) xfs_buf_associate_memory(bp, val, cnt)
324#define XFS_BUF_ADDR(bp) ((bp)->b_bn)
325#define XFS_BUF_SET_ADDR(bp, bno) ((bp)->b_bn = (xfs_daddr_t)(bno))
326#define XFS_BUF_OFFSET(bp) ((bp)->b_file_offset)
327#define XFS_BUF_SET_OFFSET(bp, off) ((bp)->b_file_offset = (off))
328#define XFS_BUF_COUNT(bp) ((bp)->b_count_desired)
329#define XFS_BUF_SET_COUNT(bp, cnt) ((bp)->b_count_desired = (cnt))
330#define XFS_BUF_SIZE(bp) ((bp)->b_buffer_length)
331#define XFS_BUF_SET_SIZE(bp, cnt) ((bp)->b_buffer_length = (cnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Nathan Scottce8e9222006-01-11 15:39:08 +1100333#define XFS_BUF_SET_VTYPE_REF(bp, type, ref) do { } while (0)
334#define XFS_BUF_SET_VTYPE(bp, type) do { } while (0)
335#define XFS_BUF_SET_REF(bp, ref) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Nathan Scottce8e9222006-01-11 15:39:08 +1100337#define XFS_BUF_ISPINNED(bp) xfs_buf_ispin(bp)
338
339#define XFS_BUF_VALUSEMA(bp) xfs_buf_lock_value(bp)
340#define XFS_BUF_CPSEMA(bp) (xfs_buf_cond_lock(bp) == 0)
341#define XFS_BUF_VSEMA(bp) xfs_buf_unlock(bp)
342#define XFS_BUF_PSEMA(bp,x) xfs_buf_lock(bp)
343#define XFS_BUF_V_IODONESEMA(bp) up(&bp->b_iodonesema);
344
345#define XFS_BUF_SET_TARGET(bp, target) ((bp)->b_target = (target))
346#define XFS_BUF_TARGET(bp) ((bp)->b_target)
347#define XFS_BUFTARG_NAME(target) xfs_buf_target_name(target)
348
349static inline int xfs_bawrite(void *mp, xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
Nathan Scottce8e9222006-01-11 15:39:08 +1100351 bp->b_fspriv3 = mp;
352 bp->b_strat = xfs_bdstrat_cb;
353 xfs_buf_delwri_dequeue(bp);
354 return xfs_buf_iostart(bp, XBF_WRITE | XBF_ASYNC | _XBF_RUN_QUEUES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355}
356
Nathan Scottce8e9222006-01-11 15:39:08 +1100357static inline void xfs_buf_relse(xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
Nathan Scottce8e9222006-01-11 15:39:08 +1100359 if (!bp->b_relse)
360 xfs_buf_unlock(bp);
361 xfs_buf_rele(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362}
363
Nathan Scottce8e9222006-01-11 15:39:08 +1100364#define xfs_bpin(bp) xfs_buf_pin(bp)
365#define xfs_bunpin(bp) xfs_buf_unpin(bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
367#define xfs_buftrace(id, bp) \
Nathan Scottce8e9222006-01-11 15:39:08 +1100368 xfs_buf_trace(bp, id, NULL, (void *)__builtin_return_address(0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Nathan Scottce8e9222006-01-11 15:39:08 +1100370#define xfs_biodone(bp) xfs_buf_ioend(bp, 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Nathan Scottce8e9222006-01-11 15:39:08 +1100372#define xfs_biomove(bp, off, len, data, rw) \
373 xfs_buf_iomove((bp), (off), (len), (data), \
374 ((rw) == XFS_B_WRITE) ? XBRW_WRITE : XBRW_READ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Nathan Scottce8e9222006-01-11 15:39:08 +1100376#define xfs_biozero(bp, off, len) \
377 xfs_buf_iomove((bp), (off), (len), NULL, XBRW_ZERO)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
379
Nathan Scottce8e9222006-01-11 15:39:08 +1100380static inline int XFS_bwrite(xfs_buf_t *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
Nathan Scottce8e9222006-01-11 15:39:08 +1100382 int iowait = (bp->b_flags & XBF_ASYNC) == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 int error = 0;
384
385 if (!iowait)
Nathan Scottce8e9222006-01-11 15:39:08 +1100386 bp->b_flags |= _XBF_RUN_QUEUES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Nathan Scottce8e9222006-01-11 15:39:08 +1100388 xfs_buf_delwri_dequeue(bp);
389 xfs_buf_iostrategy(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 if (iowait) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100391 error = xfs_buf_iowait(bp);
392 xfs_buf_relse(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 }
394 return error;
395}
396
Nathan Scottce8e9222006-01-11 15:39:08 +1100397#define XFS_bdwrite(bp) xfs_buf_iostart(bp, XBF_DELWRI | XBF_ASYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
399static inline int xfs_bdwrite(void *mp, xfs_buf_t *bp)
400{
Nathan Scottce8e9222006-01-11 15:39:08 +1100401 bp->b_strat = xfs_bdstrat_cb;
402 bp->b_fspriv3 = mp;
403 return xfs_buf_iostart(bp, XBF_DELWRI | XBF_ASYNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404}
405
Nathan Scottce8e9222006-01-11 15:39:08 +1100406#define XFS_bdstrat(bp) xfs_buf_iorequest(bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Nathan Scottce8e9222006-01-11 15:39:08 +1100408#define xfs_iowait(bp) xfs_buf_iowait(bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
410#define xfs_baread(target, rablkno, ralen) \
Nathan Scottce8e9222006-01-11 15:39:08 +1100411 xfs_buf_readahead((target), (rablkno), (ralen), XBF_DONT_BLOCK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
413
414/*
415 * Handling of buftargs.
416 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417extern xfs_buftarg_t *xfs_alloc_buftarg(struct block_device *, int);
418extern void xfs_free_buftarg(xfs_buftarg_t *, int);
419extern void xfs_wait_buftarg(xfs_buftarg_t *);
420extern int xfs_setsize_buftarg(xfs_buftarg_t *, unsigned int, unsigned int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421extern int xfs_flush_buftarg(xfs_buftarg_t *, int);
422
Nathan Scottce8e9222006-01-11 15:39:08 +1100423#define xfs_getsize_buftarg(buftarg) block_size((buftarg)->bt_bdev)
424#define xfs_readonly_buftarg(buftarg) bdev_read_only((buftarg)->bt_bdev)
425
426#define xfs_binval(buftarg) xfs_flush_buftarg(buftarg, 1)
427#define XFS_bflush(buftarg) xfs_flush_buftarg(buftarg, 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
429#endif /* __XFS_BUF_H__ */