diff options
author | Christoph Hellwig <hch@infradead.org> | 2011-08-23 08:28:08 +0000 |
---|---|---|
committer | Alex Elder <aelder@sgi.com> | 2011-10-11 21:15:00 -0500 |
commit | c4e1c098ee8a72ea563a697a2b175868be86fdc9 (patch) | |
tree | c584856c23fe1dee09021d93eb8f9ddf88c5dddd /fs/xfs/xfs_buf.h | |
parent | c2b006c1da1602551def200e4661535f02b82488 (diff) | |
download | op-kernel-dev-c4e1c098ee8a72ea563a697a2b175868be86fdc9.zip op-kernel-dev-c4e1c098ee8a72ea563a697a2b175868be86fdc9.tar.gz |
xfs: use the "delwri" terminology consistently
And also remove the strange local lock and delwri list pointers in a few
functions.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Alex Elder <aelder@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_buf.h')
-rw-r--r-- | fs/xfs/xfs_buf.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_buf.h b/fs/xfs/xfs_buf.h index 3f543ed..c238266 100644 --- a/fs/xfs/xfs_buf.h +++ b/fs/xfs/xfs_buf.h @@ -105,8 +105,8 @@ typedef struct xfs_buftarg { /* per device delwri queue */ struct task_struct *bt_task; - struct list_head bt_delwrite_queue; - spinlock_t bt_delwrite_lock; + struct list_head bt_delwri_queue; + spinlock_t bt_delwri_lock; unsigned long bt_flags; /* LRU control structures */ |