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
Kirill Smelkov
linux
Commits
7691283d
Commit
7691283d
authored
Jun 10, 2014
by
Dave Chinner
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'xfs-misc-fixes-3-for-3.16' into for-next
parents
8612c7e5
30265117
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
60 additions
and
53 deletions
+60
-53
fs/xfs/xfs_alloc.c
fs/xfs/xfs_alloc.c
+8
-11
fs/xfs/xfs_aops.c
fs/xfs/xfs_aops.c
+3
-3
fs/xfs/xfs_bit.h
fs/xfs/xfs_bit.h
+5
-2
fs/xfs/xfs_bmap_util.c
fs/xfs/xfs_bmap_util.c
+13
-3
fs/xfs/xfs_bmap_util.h
fs/xfs/xfs_bmap_util.h
+7
-6
fs/xfs/xfs_btree.c
fs/xfs/xfs_btree.c
+2
-10
fs/xfs/xfs_buf.h
fs/xfs/xfs_buf.h
+0
-5
fs/xfs/xfs_buf_item.c
fs/xfs/xfs_buf_item.c
+1
-1
fs/xfs/xfs_dquot.c
fs/xfs/xfs_dquot.c
+3
-3
fs/xfs/xfs_ialloc.c
fs/xfs/xfs_ialloc.c
+0
-1
fs/xfs/xfs_log.c
fs/xfs/xfs_log.c
+1
-1
fs/xfs/xfs_mount.c
fs/xfs/xfs_mount.c
+17
-6
fs/xfs/xfs_rtbitmap.c
fs/xfs/xfs_rtbitmap.c
+0
-1
No files found.
fs/xfs/xfs_alloc.c
View file @
7691283d
...
@@ -257,16 +257,14 @@ xfs_alloc_fix_len(
...
@@ -257,16 +257,14 @@ xfs_alloc_fix_len(
k
=
rlen
%
args
->
prod
;
k
=
rlen
%
args
->
prod
;
if
(
k
==
args
->
mod
)
if
(
k
==
args
->
mod
)
return
;
return
;
if
(
k
>
args
->
mod
)
{
if
(
k
>
args
->
mod
)
if
((
int
)(
rlen
=
rlen
-
k
-
args
->
mod
)
<
(
int
)
args
->
minlen
)
rlen
=
rlen
-
(
k
-
args
->
mod
);
return
;
else
}
else
{
rlen
=
rlen
-
args
->
prod
+
(
args
->
mod
-
k
);
if
((
int
)(
rlen
=
rlen
-
args
->
prod
-
(
args
->
mod
-
k
))
<
if
((
int
)
rlen
<
(
int
)
args
->
minlen
)
(
int
)
args
->
minlen
)
return
;
return
;
ASSERT
(
rlen
>=
args
->
minlen
&&
rlen
<=
args
->
maxlen
);
}
ASSERT
(
rlen
%
args
->
prod
==
args
->
mod
);
ASSERT
(
rlen
>=
args
->
minlen
);
ASSERT
(
rlen
<=
args
->
maxlen
);
args
->
len
=
rlen
;
args
->
len
=
rlen
;
}
}
...
@@ -541,7 +539,6 @@ xfs_alloc_read_agfl(
...
@@ -541,7 +539,6 @@ xfs_alloc_read_agfl(
XFS_FSS_TO_BB
(
mp
,
1
),
0
,
&
bp
,
&
xfs_agfl_buf_ops
);
XFS_FSS_TO_BB
(
mp
,
1
),
0
,
&
bp
,
&
xfs_agfl_buf_ops
);
if
(
error
)
if
(
error
)
return
error
;
return
error
;
ASSERT
(
!
xfs_buf_geterror
(
bp
));
xfs_buf_set_ref
(
bp
,
XFS_AGFL_REF
);
xfs_buf_set_ref
(
bp
,
XFS_AGFL_REF
);
*
bpp
=
bp
;
*
bpp
=
bp
;
return
0
;
return
0
;
...
...
fs/xfs/xfs_aops.c
View file @
7691283d
...
@@ -975,7 +975,7 @@ xfs_vm_writepage(
...
@@ -975,7 +975,7 @@ xfs_vm_writepage(
* Given that we do not allow direct reclaim to call us, we should
* Given that we do not allow direct reclaim to call us, we should
* never be called while in a filesystem transaction.
* never be called while in a filesystem transaction.
*/
*/
if
(
WARN_ON
(
current
->
flags
&
PF_FSTRANS
))
if
(
WARN_ON
_ONCE
(
current
->
flags
&
PF_FSTRANS
))
goto
redirty
;
goto
redirty
;
/* Is this page beyond the end of the file? */
/* Is this page beyond the end of the file? */
...
@@ -1225,9 +1225,9 @@ xfs_vm_releasepage(
...
@@ -1225,9 +1225,9 @@ xfs_vm_releasepage(
xfs_count_page_state
(
page
,
&
delalloc
,
&
unwritten
);
xfs_count_page_state
(
page
,
&
delalloc
,
&
unwritten
);
if
(
WARN_ON
(
delalloc
))
if
(
WARN_ON
_ONCE
(
delalloc
))
return
0
;
return
0
;
if
(
WARN_ON
(
unwritten
))
if
(
WARN_ON
_ONCE
(
unwritten
))
return
0
;
return
0
;
return
try_to_free_buffers
(
page
);
return
try_to_free_buffers
(
page
);
...
...
fs/xfs/xfs_bit.h
View file @
7691283d
...
@@ -66,8 +66,11 @@ static inline int xfs_lowbit64(__uint64_t v)
...
@@ -66,8 +66,11 @@ static inline int xfs_lowbit64(__uint64_t v)
n
=
ffs
(
w
);
n
=
ffs
(
w
);
}
else
{
/* upper bits */
}
else
{
/* upper bits */
w
=
(
__uint32_t
)(
v
>>
32
);
w
=
(
__uint32_t
)(
v
>>
32
);
if
(
w
&&
(
n
=
ffs
(
w
)))
if
(
w
)
{
n
+=
32
;
n
=
ffs
(
w
);
if
(
n
)
n
+=
32
;
}
}
}
return
n
-
1
;
return
n
-
1
;
}
}
...
...
fs/xfs/xfs_bmap_util.c
View file @
7691283d
...
@@ -258,14 +258,23 @@ xfs_bmapi_allocate_worker(
...
@@ -258,14 +258,23 @@ xfs_bmapi_allocate_worker(
struct
xfs_bmalloca
*
args
=
container_of
(
work
,
struct
xfs_bmalloca
*
args
=
container_of
(
work
,
struct
xfs_bmalloca
,
work
);
struct
xfs_bmalloca
,
work
);
unsigned
long
pflags
;
unsigned
long
pflags
;
unsigned
long
new_pflags
=
PF_FSTRANS
;
/* we are in a transaction context here */
/*
current_set_flags_nested
(
&
pflags
,
PF_FSTRANS
);
* we are in a transaction context here, but may also be doing work
* in kswapd context, and hence we may need to inherit that state
* temporarily to ensure that we don't block waiting for memory reclaim
* in any way.
*/
if
(
args
->
kswapd
)
new_pflags
|=
PF_MEMALLOC
|
PF_SWAPWRITE
|
PF_KSWAPD
;
current_set_flags_nested
(
&
pflags
,
new_pflags
);
args
->
result
=
__xfs_bmapi_allocate
(
args
);
args
->
result
=
__xfs_bmapi_allocate
(
args
);
complete
(
args
->
done
);
complete
(
args
->
done
);
current_restore_flags_nested
(
&
pflags
,
PF_FSTRANS
);
current_restore_flags_nested
(
&
pflags
,
new_pflags
);
}
}
/*
/*
...
@@ -284,6 +293,7 @@ xfs_bmapi_allocate(
...
@@ -284,6 +293,7 @@ xfs_bmapi_allocate(
args
->
done
=
&
done
;
args
->
done
=
&
done
;
args
->
kswapd
=
current_is_kswapd
();
INIT_WORK_ONSTACK
(
&
args
->
work
,
xfs_bmapi_allocate_worker
);
INIT_WORK_ONSTACK
(
&
args
->
work
,
xfs_bmapi_allocate_worker
);
queue_work
(
xfs_alloc_wq
,
&
args
->
work
);
queue_work
(
xfs_alloc_wq
,
&
args
->
work
);
wait_for_completion
(
&
done
);
wait_for_completion
(
&
done
);
...
...
fs/xfs/xfs_bmap_util.h
View file @
7691283d
...
@@ -50,12 +50,13 @@ struct xfs_bmalloca {
...
@@ -50,12 +50,13 @@ struct xfs_bmalloca {
xfs_extlen_t
total
;
/* total blocks needed for xaction */
xfs_extlen_t
total
;
/* total blocks needed for xaction */
xfs_extlen_t
minlen
;
/* minimum allocation size (blocks) */
xfs_extlen_t
minlen
;
/* minimum allocation size (blocks) */
xfs_extlen_t
minleft
;
/* amount must be left after alloc */
xfs_extlen_t
minleft
;
/* amount must be left after alloc */
char
eof
;
/* set if allocating past last extent */
bool
eof
;
/* set if allocating past last extent */
char
wasdel
;
/* replacing a delayed allocation */
bool
wasdel
;
/* replacing a delayed allocation */
char
userdata
;
/* set if is user data */
bool
userdata
;
/* set if is user data */
char
aeof
;
/* allocated space at eof */
bool
aeof
;
/* allocated space at eof */
char
conv
;
/* overwriting unwritten extents */
bool
conv
;
/* overwriting unwritten extents */
char
stack_switch
;
bool
stack_switch
;
bool
kswapd
;
/* allocation in kswapd context */
int
flags
;
int
flags
;
struct
completion
*
done
;
struct
completion
*
done
;
struct
work_struct
work
;
struct
work_struct
work
;
...
...
fs/xfs/xfs_btree.c
View file @
7691283d
...
@@ -553,14 +553,11 @@ xfs_btree_get_bufl(
...
@@ -553,14 +553,11 @@ xfs_btree_get_bufl(
xfs_fsblock_t
fsbno
,
/* file system block number */
xfs_fsblock_t
fsbno
,
/* file system block number */
uint
lock
)
/* lock flags for get_buf */
uint
lock
)
/* lock flags for get_buf */
{
{
xfs_buf_t
*
bp
;
/* buffer pointer (return value) */
xfs_daddr_t
d
;
/* real disk block address */
xfs_daddr_t
d
;
/* real disk block address */
ASSERT
(
fsbno
!=
NULLFSBLOCK
);
ASSERT
(
fsbno
!=
NULLFSBLOCK
);
d
=
XFS_FSB_TO_DADDR
(
mp
,
fsbno
);
d
=
XFS_FSB_TO_DADDR
(
mp
,
fsbno
);
bp
=
xfs_trans_get_buf
(
tp
,
mp
->
m_ddev_targp
,
d
,
mp
->
m_bsize
,
lock
);
return
xfs_trans_get_buf
(
tp
,
mp
->
m_ddev_targp
,
d
,
mp
->
m_bsize
,
lock
);
ASSERT
(
!
xfs_buf_geterror
(
bp
));
return
bp
;
}
}
/*
/*
...
@@ -575,15 +572,12 @@ xfs_btree_get_bufs(
...
@@ -575,15 +572,12 @@ xfs_btree_get_bufs(
xfs_agblock_t
agbno
,
/* allocation group block number */
xfs_agblock_t
agbno
,
/* allocation group block number */
uint
lock
)
/* lock flags for get_buf */
uint
lock
)
/* lock flags for get_buf */
{
{
xfs_buf_t
*
bp
;
/* buffer pointer (return value) */
xfs_daddr_t
d
;
/* real disk block address */
xfs_daddr_t
d
;
/* real disk block address */
ASSERT
(
agno
!=
NULLAGNUMBER
);
ASSERT
(
agno
!=
NULLAGNUMBER
);
ASSERT
(
agbno
!=
NULLAGBLOCK
);
ASSERT
(
agbno
!=
NULLAGBLOCK
);
d
=
XFS_AGB_TO_DADDR
(
mp
,
agno
,
agbno
);
d
=
XFS_AGB_TO_DADDR
(
mp
,
agno
,
agbno
);
bp
=
xfs_trans_get_buf
(
tp
,
mp
->
m_ddev_targp
,
d
,
mp
->
m_bsize
,
lock
);
return
xfs_trans_get_buf
(
tp
,
mp
->
m_ddev_targp
,
d
,
mp
->
m_bsize
,
lock
);
ASSERT
(
!
xfs_buf_geterror
(
bp
));
return
bp
;
}
}
/*
/*
...
@@ -723,7 +717,6 @@ xfs_btree_read_bufl(
...
@@ -723,7 +717,6 @@ xfs_btree_read_bufl(
mp
->
m_bsize
,
lock
,
&
bp
,
ops
);
mp
->
m_bsize
,
lock
,
&
bp
,
ops
);
if
(
error
)
if
(
error
)
return
error
;
return
error
;
ASSERT
(
!
xfs_buf_geterror
(
bp
));
if
(
bp
)
if
(
bp
)
xfs_buf_set_ref
(
bp
,
refval
);
xfs_buf_set_ref
(
bp
,
refval
);
*
bpp
=
bp
;
*
bpp
=
bp
;
...
@@ -1179,7 +1172,6 @@ xfs_btree_read_buf_block(
...
@@ -1179,7 +1172,6 @@ xfs_btree_read_buf_block(
if
(
error
)
if
(
error
)
return
error
;
return
error
;
ASSERT
(
!
xfs_buf_geterror
(
*
bpp
));
xfs_btree_set_refs
(
cur
,
*
bpp
);
xfs_btree_set_refs
(
cur
,
*
bpp
);
*
block
=
XFS_BUF_TO_BLOCK
(
*
bpp
);
*
block
=
XFS_BUF_TO_BLOCK
(
*
bpp
);
return
0
;
return
0
;
...
...
fs/xfs/xfs_buf.h
View file @
7691283d
...
@@ -298,11 +298,6 @@ extern void xfs_buf_iomove(xfs_buf_t *, size_t, size_t, void *,
...
@@ -298,11 +298,6 @@ extern void xfs_buf_iomove(xfs_buf_t *, size_t, size_t, void *,
extern
int
xfs_bioerror_relse
(
struct
xfs_buf
*
);
extern
int
xfs_bioerror_relse
(
struct
xfs_buf
*
);
static
inline
int
xfs_buf_geterror
(
xfs_buf_t
*
bp
)
{
return
bp
?
bp
->
b_error
:
ENOMEM
;
}
/* Buffer Utility Routines */
/* Buffer Utility Routines */
extern
xfs_caddr_t
xfs_buf_offset
(
xfs_buf_t
*
,
size_t
);
extern
xfs_caddr_t
xfs_buf_offset
(
xfs_buf_t
*
,
size_t
);
...
...
fs/xfs/xfs_buf_item.c
View file @
7691283d
...
@@ -1052,7 +1052,7 @@ xfs_buf_iodone_callbacks(
...
@@ -1052,7 +1052,7 @@ xfs_buf_iodone_callbacks(
static
ulong
lasttime
;
static
ulong
lasttime
;
static
xfs_buftarg_t
*
lasttarg
;
static
xfs_buftarg_t
*
lasttarg
;
if
(
likely
(
!
xfs_buf_geterror
(
bp
)
))
if
(
likely
(
!
bp
->
b_error
))
goto
do_callbacks
;
goto
do_callbacks
;
/*
/*
...
...
fs/xfs/xfs_dquot.c
View file @
7691283d
...
@@ -353,10 +353,10 @@ xfs_qm_dqalloc(
...
@@ -353,10 +353,10 @@ xfs_qm_dqalloc(
dqp
->
q_blkno
,
dqp
->
q_blkno
,
mp
->
m_quotainfo
->
qi_dqchunklen
,
mp
->
m_quotainfo
->
qi_dqchunklen
,
0
);
0
);
if
(
!
bp
)
{
error
=
xfs_buf_geterror
(
bp
);
error
=
ENOMEM
;
if
(
error
)
goto
error1
;
goto
error1
;
}
bp
->
b_ops
=
&
xfs_dquot_buf_ops
;
bp
->
b_ops
=
&
xfs_dquot_buf_ops
;
/*
/*
...
...
fs/xfs/xfs_ialloc.c
View file @
7691283d
...
@@ -2129,7 +2129,6 @@ xfs_read_agi(
...
@@ -2129,7 +2129,6 @@ xfs_read_agi(
if
(
error
)
if
(
error
)
return
error
;
return
error
;
ASSERT
(
!
xfs_buf_geterror
(
*
bpp
));
xfs_buf_set_ref
(
*
bpp
,
XFS_AGI_REF
);
xfs_buf_set_ref
(
*
bpp
,
XFS_AGI_REF
);
return
0
;
return
0
;
}
}
...
...
fs/xfs/xfs_log.c
View file @
7691283d
...
@@ -1165,7 +1165,7 @@ xlog_iodone(xfs_buf_t *bp)
...
@@ -1165,7 +1165,7 @@ xlog_iodone(xfs_buf_t *bp)
/*
/*
* Race to shutdown the filesystem if we see an error.
* Race to shutdown the filesystem if we see an error.
*/
*/
if
(
XFS_TEST_ERROR
(
(
xfs_buf_geterror
(
bp
))
,
l
->
l_mp
,
if
(
XFS_TEST_ERROR
(
bp
->
b_error
,
l
->
l_mp
,
XFS_ERRTAG_IODONE_IOERR
,
XFS_RANDOM_IODONE_IOERR
))
{
XFS_ERRTAG_IODONE_IOERR
,
XFS_RANDOM_IODONE_IOERR
))
{
xfs_buf_ioerror_alert
(
bp
,
__func__
);
xfs_buf_ioerror_alert
(
bp
,
__func__
);
xfs_buf_stale
(
bp
);
xfs_buf_stale
(
bp
);
...
...
fs/xfs/xfs_mount.c
View file @
7691283d
...
@@ -323,8 +323,19 @@ xfs_readsb(
...
@@ -323,8 +323,19 @@ xfs_readsb(
/*
/*
* Initialize the mount structure from the superblock.
* Initialize the mount structure from the superblock.
*/
*/
xfs_sb_from_disk
(
&
mp
->
m_sb
,
XFS_BUF_TO_SBP
(
bp
));
xfs_sb_from_disk
(
sbp
,
XFS_BUF_TO_SBP
(
bp
));
xfs_sb_quota_from_disk
(
&
mp
->
m_sb
);
xfs_sb_quota_from_disk
(
sbp
);
/*
* If we haven't validated the superblock, do so now before we try
* to check the sector size and reread the superblock appropriately.
*/
if
(
sbp
->
sb_magicnum
!=
XFS_SB_MAGIC
)
{
if
(
loud
)
xfs_warn
(
mp
,
"Invalid superblock magic number"
);
error
=
EINVAL
;
goto
release_buf
;
}
/*
/*
* We must be able to do sector-sized and sector-aligned IO.
* We must be able to do sector-sized and sector-aligned IO.
...
@@ -337,11 +348,11 @@ xfs_readsb(
...
@@ -337,11 +348,11 @@ xfs_readsb(
goto
release_buf
;
goto
release_buf
;
}
}
/*
* Re-read the superblock so the buffer is correctly sized,
* and properly verified.
*/
if
(
buf_ops
==
NULL
)
{
if
(
buf_ops
==
NULL
)
{
/*
* Re-read the superblock so the buffer is correctly sized,
* and properly verified.
*/
xfs_buf_relse
(
bp
);
xfs_buf_relse
(
bp
);
sector_size
=
sbp
->
sb_sectsize
;
sector_size
=
sbp
->
sb_sectsize
;
buf_ops
=
loud
?
&
xfs_sb_buf_ops
:
&
xfs_sb_quiet_buf_ops
;
buf_ops
=
loud
?
&
xfs_sb_buf_ops
:
&
xfs_sb_quiet_buf_ops
;
...
...
fs/xfs/xfs_rtbitmap.c
View file @
7691283d
...
@@ -74,7 +74,6 @@ xfs_rtbuf_get(
...
@@ -74,7 +74,6 @@ xfs_rtbuf_get(
mp
->
m_bsize
,
0
,
&
bp
,
NULL
);
mp
->
m_bsize
,
0
,
&
bp
,
NULL
);
if
(
error
)
if
(
error
)
return
error
;
return
error
;
ASSERT
(
!
xfs_buf_geterror
(
bp
));
*
bpp
=
bp
;
*
bpp
=
bp
;
return
0
;
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