Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
822e10da
Commit
822e10da
authored
Apr 22, 2004
by
Nathan Scott
Committed by
Christoph Hellwig
Apr 22, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[XFS] cleanup pagebuf flag usage and simplify pagebuf_free.
SGI Modid: xfs-linux:xfs-kern:169276a
parent
63c642fd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
58 additions
and
100 deletions
+58
-100
fs/xfs/linux/xfs_buf.c
fs/xfs/linux/xfs_buf.c
+44
-82
fs/xfs/linux/xfs_buf.h
fs/xfs/linux/xfs_buf.h
+14
-18
No files found.
fs/xfs/linux/xfs_buf.c
View file @
822e10da
...
@@ -165,8 +165,6 @@ _bhash(
...
@@ -165,8 +165,6 @@ _bhash(
* Mapping of multi-page buffers into contiguous virtual space
* Mapping of multi-page buffers into contiguous virtual space
*/
*/
STATIC
void
*
pagebuf_mapout_locked
(
xfs_buf_t
*
);
typedef
struct
a_list
{
typedef
struct
a_list
{
void
*
vm_addr
;
void
*
vm_addr
;
struct
a_list
*
next
;
struct
a_list
*
next
;
...
@@ -288,67 +286,53 @@ _pagebuf_get_pages(
...
@@ -288,67 +286,53 @@ _pagebuf_get_pages(
}
}
/*
/*
*
Walk a pagebuf releasing all the pages contained within it
.
*
Frees pb_pages if it was malloced
.
*/
*/
STATIC
inline
void
STATIC
void
_pagebuf_freepages
(
_pagebuf_free
_
pages
(
xfs_buf_t
*
pb
)
xfs_buf_t
*
bp
)
{
{
int
buf_index
;
if
(
bp
->
pb_pages
!=
bp
->
pb_page_array
)
{
kmem_free
(
bp
->
pb_pages
,
for
(
buf_index
=
0
;
buf_index
<
pb
->
pb_page_count
;
buf_index
++
)
{
bp
->
pb_page_count
*
sizeof
(
struct
page
*
));
struct
page
*
page
=
pb
->
pb_pages
[
buf_index
];
if
(
page
)
{
pb
->
pb_pages
[
buf_index
]
=
NULL
;
page_cache_release
(
page
);
}
}
}
}
}
/*
/*
*
pagebuf_free
*
Releases the specified buffer.
*
*
* pagebuf_free releases the specified buffer. The modification
* The modification state of any associated pages is left unchanged.
* state of any associated pages is left unchanged.
* The buffer most not be on any hash - use pagebuf_rele instead for
* hashed and refcounted buffers
*/
*/
void
void
pagebuf_free
(
pagebuf_free
(
xfs_buf_t
*
pb
)
xfs_buf_t
*
bp
)
{
{
PB_TRACE
(
pb
,
"free"
,
0
);
PB_TRACE
(
bp
,
"free"
,
0
);
ASSERT
(
list_empty
(
&
pb
->
pb_hash_list
));
/* release any virtual mapping */
;
if
(
pb
->
pb_flags
&
_PBF_ADDR_ALLOCATED
)
{
void
*
vaddr
=
pagebuf_mapout_locked
(
pb
);
if
(
vaddr
)
{
free_address
(
vaddr
);
}
}
if
(
pb
->
pb_flags
&
_PBF_MEM_ALLOCATED
)
{
ASSERT
(
list_empty
(
&
bp
->
pb_hash_list
));
if
(
pb
->
pb_pages
)
{
if
(
pb
->
pb_flags
&
_PBF_MEM_SLAB
)
{
if
(
bp
->
pb_flags
&
_PBF_PAGE_CACHE
)
{
/*
uint
i
;
* XXX: bp->pb_count_desired might be incorrect
* (see pagebuf_associate_memory for details),
if
((
bp
->
pb_flags
&
PBF_MAPPED
)
&&
(
bp
->
pb_page_count
>
1
))
* but fortunately the Linux version of
free_address
(
bp
->
pb_addr
-
bp
->
pb_offset
);
* kmem_free ignores the len argument..
*/
for
(
i
=
0
;
i
<
bp
->
pb_page_count
;
i
++
)
kmem_free
(
pb
->
pb_addr
,
pb
->
pb_count_desired
);
page_cache_release
(
bp
->
pb_pages
[
i
]);
}
else
{
_pagebuf_free_pages
(
bp
);
_pagebuf_freepages
(
pb
);
}
else
if
(
bp
->
pb_flags
&
_PBF_KMEM_ALLOC
)
{
}
/*
if
(
pb
->
pb_pages
!=
pb
->
pb_page_array
)
* XXX(hch): bp->pb_count_desired might be incorrect (see
kfree
(
pb
->
pb_pages
);
* pagebuf_associate_memory for details), but fortunately
pb
->
pb_pages
=
NULL
;
* the Linux version of kmem_free ignores the len argument..
}
*/
pb
->
pb_flags
&=
~
(
_PBF_MEM_ALLOCATED
|
_PBF_MEM_SLAB
);
kmem_free
(
bp
->
pb_addr
,
bp
->
pb_count_desired
);
_pagebuf_free_pages
(
bp
);
}
}
pagebuf_deallocate
(
pb
);
pagebuf_deallocate
(
bp
);
}
}
/*
/*
...
@@ -443,7 +427,7 @@ _pagebuf_lookup_pages(
...
@@ -443,7 +427,7 @@ _pagebuf_lookup_pages(
unlock_page
(
bp
->
pb_pages
[
i
]);
unlock_page
(
bp
->
pb_pages
[
i
]);
}
}
bp
->
pb_flags
|=
(
_PBF_PAGECACHE
|
_PBF_MEM_ALLOCATED
)
;
bp
->
pb_flags
|=
_PBF_PAGE_CACHE
;
if
(
page_count
)
{
if
(
page_count
)
{
/* if we have any uptodate pages, mark that in the buffer */
/* if we have any uptodate pages, mark that in the buffer */
...
@@ -478,7 +462,7 @@ _pagebuf_map_pages(
...
@@ -478,7 +462,7 @@ _pagebuf_map_pages(
if
(
unlikely
(
bp
->
pb_addr
==
NULL
))
if
(
unlikely
(
bp
->
pb_addr
==
NULL
))
return
-
ENOMEM
;
return
-
ENOMEM
;
bp
->
pb_addr
+=
bp
->
pb_offset
;
bp
->
pb_addr
+=
bp
->
pb_offset
;
bp
->
pb_flags
|=
PBF_MAPPED
|
_PBF_ADDR_ALLOCATED
;
bp
->
pb_flags
|=
PBF_MAPPED
;
}
}
return
0
;
return
0
;
...
@@ -584,10 +568,7 @@ _pagebuf_find( /* find buffer for block */
...
@@ -584,10 +568,7 @@ _pagebuf_find( /* find buffer for block */
}
}
if
(
pb
->
pb_flags
&
PBF_STALE
)
if
(
pb
->
pb_flags
&
PBF_STALE
)
pb
->
pb_flags
&=
PBF_MAPPED
|
\
pb
->
pb_flags
&=
PBF_MAPPED
;
_PBF_ADDR_ALLOCATED
|
\
_PBF_MEM_ALLOCATED
|
\
_PBF_MEM_SLAB
;
PB_TRACE
(
pb
,
"got_lock"
,
0
);
PB_TRACE
(
pb
,
"got_lock"
,
0
);
XFS_STATS_INC
(
pb_get_locked
);
XFS_STATS_INC
(
pb_get_locked
);
return
(
pb
);
return
(
pb
);
...
@@ -789,9 +770,9 @@ pagebuf_associate_memory(
...
@@ -789,9 +770,9 @@ pagebuf_associate_memory(
page_count
++
;
page_count
++
;
/* Free any previous set of page pointers */
/* Free any previous set of page pointers */
if
(
pb
->
pb_pages
&&
(
pb
->
pb_pages
!=
pb
->
pb_page_array
))
{
if
(
pb
->
pb_pages
)
kfree
(
pb
->
pb_pages
);
_pagebuf_free_pages
(
pb
);
}
pb
->
pb_pages
=
NULL
;
pb
->
pb_pages
=
NULL
;
pb
->
pb_addr
=
mem
;
pb
->
pb_addr
=
mem
;
...
@@ -856,7 +837,7 @@ pagebuf_get_no_daddr(
...
@@ -856,7 +837,7 @@ pagebuf_get_no_daddr(
error
=
pagebuf_associate_memory
(
bp
,
data
,
len
);
error
=
pagebuf_associate_memory
(
bp
,
data
,
len
);
if
(
error
)
if
(
error
)
goto
fail_free_mem
;
goto
fail_free_mem
;
bp
->
pb_flags
|=
(
_PBF_MEM_ALLOCATED
|
_PBF_MEM_SLAB
)
;
bp
->
pb_flags
|=
_PBF_KMEM_ALLOC
;
pagebuf_unlock
(
bp
);
pagebuf_unlock
(
bp
);
...
@@ -1189,9 +1170,9 @@ pagebuf_iostart( /* start I/O on a buffer */
...
@@ -1189,9 +1170,9 @@ pagebuf_iostart( /* start I/O on a buffer */
}
}
pb
->
pb_flags
&=
~
(
PBF_READ
|
PBF_WRITE
|
PBF_ASYNC
|
PBF_DELWRI
|
\
pb
->
pb_flags
&=
~
(
PBF_READ
|
PBF_WRITE
|
PBF_ASYNC
|
PBF_DELWRI
|
\
PBF_READ_AHEAD
|
PBF_RUN_QUEUES
);
PBF_READ_AHEAD
|
_
PBF_RUN_QUEUES
);
pb
->
pb_flags
|=
flags
&
(
PBF_READ
|
PBF_WRITE
|
PBF_ASYNC
|
\
pb
->
pb_flags
|=
flags
&
(
PBF_READ
|
PBF_WRITE
|
PBF_ASYNC
|
\
PBF_READ_AHEAD
|
PBF_RUN_QUEUES
);
PBF_READ_AHEAD
|
_
PBF_RUN_QUEUES
);
BUG_ON
(
pb
->
pb_bn
==
XFS_BUF_DADDR_NULL
);
BUG_ON
(
pb
->
pb_bn
==
XFS_BUF_DADDR_NULL
);
...
@@ -1378,8 +1359,8 @@ _pagebuf_ioapply(
...
@@ -1378,8 +1359,8 @@ _pagebuf_ioapply(
pagebuf_ioerror
(
pb
,
EIO
);
pagebuf_ioerror
(
pb
,
EIO
);
}
}
if
(
pb
->
pb_flags
&
PBF_RUN_QUEUES
)
{
if
(
pb
->
pb_flags
&
_
PBF_RUN_QUEUES
)
{
pb
->
pb_flags
&=
~
PBF_RUN_QUEUES
;
pb
->
pb_flags
&=
~
_
PBF_RUN_QUEUES
;
if
(
atomic_read
(
&
pb
->
pb_io_remaining
)
>
1
)
if
(
atomic_read
(
&
pb
->
pb_io_remaining
)
>
1
)
blk_run_address_space
(
pb
->
pb_target
->
pbr_mapping
);
blk_run_address_space
(
pb
->
pb_target
->
pbr_mapping
);
}
}
...
@@ -1436,25 +1417,6 @@ pagebuf_iowait(
...
@@ -1436,25 +1417,6 @@ pagebuf_iowait(
return
pb
->
pb_error
;
return
pb
->
pb_error
;
}
}
STATIC
void
*
pagebuf_mapout_locked
(
xfs_buf_t
*
pb
)
{
void
*
old_addr
=
NULL
;
if
(
pb
->
pb_flags
&
PBF_MAPPED
)
{
if
(
pb
->
pb_flags
&
_PBF_ADDR_ALLOCATED
)
old_addr
=
pb
->
pb_addr
-
pb
->
pb_offset
;
pb
->
pb_addr
=
NULL
;
pb
->
pb_flags
&=
~
(
PBF_MAPPED
|
_PBF_ADDR_ALLOCATED
);
}
return
old_addr
;
/* Caller must free the address space,
* we are under a spin lock, probably
* not safe to do vfree here
*/
}
caddr_t
caddr_t
pagebuf_offset
(
pagebuf_offset
(
xfs_buf_t
*
pb
,
xfs_buf_t
*
pb
,
...
...
fs/xfs/linux/xfs_buf.h
View file @
822e10da
...
@@ -73,26 +73,22 @@ typedef enum page_buf_flags_e { /* pb_flags values */
...
@@ -73,26 +73,22 @@ typedef enum page_buf_flags_e { /* pb_flags values */
PBF_ASYNC
=
(
1
<<
4
),
/* initiator will not wait for completion */
PBF_ASYNC
=
(
1
<<
4
),
/* initiator will not wait for completion */
PBF_NONE
=
(
1
<<
5
),
/* buffer not read at all */
PBF_NONE
=
(
1
<<
5
),
/* buffer not read at all */
PBF_DELWRI
=
(
1
<<
6
),
/* buffer has dirty pages */
PBF_DELWRI
=
(
1
<<
6
),
/* buffer has dirty pages */
PBF_STALE
=
(
1
<<
10
),
/* buffer has been staled, do not find it */
PBF_STALE
=
(
1
<<
7
),
/* buffer has been staled, do not find it */
PBF_FS_MANAGED
=
(
1
<<
11
),
/* filesystem controls freeing memory */
PBF_FS_MANAGED
=
(
1
<<
8
),
/* filesystem controls freeing memory */
PBF_FS_DATAIOD
=
(
1
<<
12
),
/* schedule IO completion on fs datad */
PBF_FS_DATAIOD
=
(
1
<<
9
),
/* schedule IO completion on fs datad */
PBF_FORCEIO
=
(
1
<<
10
),
/* ignore any cache state */
PBF_FLUSH
=
(
1
<<
11
),
/* flush disk write cache */
PBF_READ_AHEAD
=
(
1
<<
12
),
/* asynchronous read-ahead */
/* flags used only as arguments to access routines */
/* flags used only as arguments to access routines */
PBF_LOCK
=
(
1
<<
1
3
),
/* lock requested */
PBF_LOCK
=
(
1
<<
1
4
),
/* lock requested */
PBF_TRYLOCK
=
(
1
<<
1
4
),
/* lock requested, but do not wait */
PBF_TRYLOCK
=
(
1
<<
1
5
),
/* lock requested, but do not wait */
PBF_DONT_BLOCK
=
(
1
<<
1
5
),
/* do not block in current thread */
PBF_DONT_BLOCK
=
(
1
<<
1
6
),
/* do not block in current thread */
/* flags used only internally */
/* flags used only internally */
_PBF_PAGECACHE
=
(
1
<<
16
),
/* backed by pagecache */
_PBF_PAGE_CACHE
=
(
1
<<
17
),
/* backed by pagecache */
_PBF_ADDR_ALLOCATED
=
(
1
<<
19
),
/* pb_addr space was allocated */
_PBF_KMEM_ALLOC
=
(
1
<<
18
),
/* backed by kmem_alloc() */
_PBF_MEM_ALLOCATED
=
(
1
<<
20
),
/* underlying pages are allocated */
_PBF_RUN_QUEUES
=
(
1
<<
19
),
/* run block device task queue */
_PBF_MEM_SLAB
=
(
1
<<
21
),
/* underlying pages are slab allocated */
PBF_FORCEIO
=
(
1
<<
22
),
/* ignore any cache state */
PBF_FLUSH
=
(
1
<<
23
),
/* flush disk write cache */
PBF_READ_AHEAD
=
(
1
<<
24
),
/* asynchronous read-ahead */
PBF_RUN_QUEUES
=
(
1
<<
25
),
/* run block device task queue */
}
page_buf_flags_t
;
}
page_buf_flags_t
;
#define PBF_UPDATE (PBF_READ | PBF_WRITE)
#define PBF_UPDATE (PBF_READ | PBF_WRITE)
...
@@ -508,7 +504,7 @@ static inline int xfs_bawrite(void *mp, xfs_buf_t *bp)
...
@@ -508,7 +504,7 @@ static inline int xfs_bawrite(void *mp, xfs_buf_t *bp)
bp
->
pb_fspriv3
=
mp
;
bp
->
pb_fspriv3
=
mp
;
bp
->
pb_strat
=
xfs_bdstrat_cb
;
bp
->
pb_strat
=
xfs_bdstrat_cb
;
xfs_buf_undelay
(
bp
);
xfs_buf_undelay
(
bp
);
return
pagebuf_iostart
(
bp
,
PBF_WRITE
|
PBF_ASYNC
|
PBF_RUN_QUEUES
);
return
pagebuf_iostart
(
bp
,
PBF_WRITE
|
PBF_ASYNC
|
_
PBF_RUN_QUEUES
);
}
}
static
inline
void
xfs_buf_relse
(
xfs_buf_t
*
bp
)
static
inline
void
xfs_buf_relse
(
xfs_buf_t
*
bp
)
...
@@ -545,7 +541,7 @@ static inline int XFS_bwrite(xfs_buf_t *pb)
...
@@ -545,7 +541,7 @@ static inline int XFS_bwrite(xfs_buf_t *pb)
int
error
=
0
;
int
error
=
0
;
if
(
!
iowait
)
if
(
!
iowait
)
pb
->
pb_flags
|=
PBF_RUN_QUEUES
;
pb
->
pb_flags
|=
_
PBF_RUN_QUEUES
;
xfs_buf_undelay
(
pb
);
xfs_buf_undelay
(
pb
);
pagebuf_iostrategy
(
pb
);
pagebuf_iostrategy
(
pb
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment