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
5937c67e
Commit
5937c67e
authored
Sep 17, 2002
by
Jens Axboe
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] jfs and xfs update
missed updating xfs and jfs to new bi_end_io handling
parent
392aaa18
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
5 deletions
+16
-5
fs/jfs/jfs_logmgr.c
fs/jfs/jfs_logmgr.c
+8
-3
fs/xfs/pagebuf/page_buf.c
fs/xfs/pagebuf/page_buf.c
+8
-2
No files found.
fs/jfs/jfs_logmgr.c
View file @
5937c67e
...
...
@@ -1969,13 +1969,16 @@ static int lbmIOWait(struct lbuf * bp, int flag)
*
* executed at INTIODONE level
*/
static
void
lbmIODone
(
struct
bio
*
bio
)
static
int
lbmIODone
(
struct
bio
*
bio
,
unsigned
int
bytes_done
,
int
error
)
{
struct
lbuf
*
bp
=
bio
->
bi_private
;
struct
lbuf
*
nextbp
,
*
tail
;
struct
jfs_log
*
log
;
unsigned
long
flags
;
if
(
bio
->
bi_size
)
return
1
;
/*
* get back jfs buffer bound to the i/o buffer
*/
...
...
@@ -2004,7 +2007,7 @@ static void lbmIODone(struct bio *bio)
/* wakeup I/O initiator */
LCACHE_WAKEUP
(
&
bp
->
l_ioevent
);
return
;
return
0
;
}
/*
...
...
@@ -2029,7 +2032,7 @@ static void lbmIODone(struct bio *bio)
if
(
bp
->
l_flag
&
lbmDIRECT
)
{
LCACHE_WAKEUP
(
&
bp
->
l_ioevent
);
LCACHE_UNLOCK
(
flags
);
return
;
return
0
;
}
tail
=
log
->
wqueue
;
...
...
@@ -2108,6 +2111,8 @@ static void lbmIODone(struct bio *bio)
LCACHE_UNLOCK
(
flags
);
/* unlock+enable */
}
return
0
;
}
int
jfsIOWait
(
void
*
arg
)
...
...
fs/xfs/pagebuf/page_buf.c
View file @
5937c67e
...
...
@@ -1291,14 +1291,19 @@ pagebuf_iostart( /* start I/O on a buffer */
/*
* Helper routine for pagebuf_iorequest
*/
STATIC
void
STATIC
int
bio_end_io_pagebuf
(
struct
bio
*
bio
)
struct
bio
*
bio
,
unsigned
int
bytes_done
,
int
error
)
{
page_buf_t
*
pb
=
(
page_buf_t
*
)
bio
->
bi_private
;
unsigned
int
i
,
blocksize
=
pb
->
pb_target
->
pbr_blocksize
;
struct
bio_vec
*
bvec
=
bio
->
bi_io_vec
;
if
(
bio
->
bi_size
)
return
1
;
if
(
!
test_bit
(
BIO_UPTODATE
,
&
bio
->
bi_flags
))
pb
->
pb_error
=
EIO
;
...
...
@@ -1335,6 +1340,7 @@ bio_end_io_pagebuf(
}
bio_put
(
bio
);
return
0
;
}
/*
...
...
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