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
bad96266
Commit
bad96266
authored
Feb 10, 2015
by
Dave Chinner
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'xfs-misc-fixes-for-3.20-4' into for-next
parents
17907362
e9892d3c
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
14 additions
and
6 deletions
+14
-6
Documentation/filesystems/xfs.txt
Documentation/filesystems/xfs.txt
+3
-2
fs/xfs/xfs_fsops.c
fs/xfs/xfs_fsops.c
+1
-0
fs/xfs/xfs_ioctl.c
fs/xfs/xfs_ioctl.c
+2
-2
fs/xfs/xfs_super.c
fs/xfs/xfs_super.c
+5
-0
fs/xfs/xfs_trans_buf.c
fs/xfs/xfs_trans_buf.c
+3
-2
No files found.
Documentation/filesystems/xfs.txt
View file @
bad96266
...
...
@@ -287,9 +287,9 @@ The following sysctls are available for the XFS filesystem:
XFS_ERRLEVEL_LOW: 1
XFS_ERRLEVEL_HIGH: 5
fs.xfs.panic_mask (Min: 0 Default: 0 Max:
127
)
fs.xfs.panic_mask (Min: 0 Default: 0 Max:
255
)
Causes certain error conditions to call BUG(). Value is a bitmask;
AND
together the tags which represent errors which should cause panics:
OR
together the tags which represent errors which should cause panics:
XFS_NO_PTAG 0
XFS_PTAG_IFLUSH 0x00000001
...
...
@@ -299,6 +299,7 @@ The following sysctls are available for the XFS filesystem:
XFS_PTAG_SHUTDOWN_CORRUPT 0x00000010
XFS_PTAG_SHUTDOWN_IOERROR 0x00000020
XFS_PTAG_SHUTDOWN_LOGERROR 0x00000040
XFS_PTAG_FSBLOCK_ZERO 0x00000080
This option is intended for debugging only.
...
...
fs/xfs/xfs_fsops.c
View file @
bad96266
...
...
@@ -488,6 +488,7 @@ xfs_growfs_data_private(
xfs_trans_mod_sb
(
tp
,
XFS_TRANS_SB_FDBLOCKS
,
nfree
);
if
(
dpct
)
xfs_trans_mod_sb
(
tp
,
XFS_TRANS_SB_IMAXPCT
,
dpct
);
xfs_trans_set_sync
(
tp
);
error
=
xfs_trans_commit
(
tp
,
0
);
if
(
error
)
return
error
;
...
...
fs/xfs/xfs_ioctl.c
View file @
bad96266
...
...
@@ -1086,7 +1086,7 @@ xfs_ioctl_setattr_get_trans(
* to half the AG size to avoid alignment extending the extent beyond the
* limits of the AG.
*/
int
static
int
xfs_ioctl_setattr_check_extsize
(
struct
xfs_inode
*
ip
,
struct
fsxattr
*
fa
)
...
...
@@ -1129,7 +1129,7 @@ xfs_ioctl_setattr_check_extsize(
return
0
;
}
int
static
int
xfs_ioctl_setattr_check_projid
(
struct
xfs_inode
*
ip
,
struct
fsxattr
*
fa
)
...
...
fs/xfs/xfs_super.c
View file @
bad96266
...
...
@@ -1111,6 +1111,11 @@ xfs_fs_statfs(
statp
->
f_files
,
mp
->
m_maxicount
);
/* If sb_icount overshot maxicount, report actual allocation */
statp
->
f_files
=
max_t
(
typeof
(
statp
->
f_files
),
statp
->
f_files
,
sbp
->
sb_icount
);
/* make sure statp->f_ffree does not underflow */
ffree
=
statp
->
f_files
-
(
sbp
->
sb_icount
-
sbp
->
sb_ifree
);
statp
->
f_ffree
=
max_t
(
__int64_t
,
ffree
,
0
);
...
...
fs/xfs/xfs_trans_buf.c
View file @
bad96266
...
...
@@ -327,9 +327,10 @@ xfs_trans_read_buf_map(
return
-
EIO
;
}
if
(
tp
)
if
(
tp
)
{
_xfs_trans_bjoin
(
tp
,
bp
,
1
);
trace_xfs_trans_read_buf
(
bp
->
b_fspriv
);
}
*
bpp
=
bp
;
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