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
903facfa
Commit
903facfa
authored
Jan 10, 2004
by
Nathan Scott
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[XFS] Remove some spurious double semi-colons.
SGI Modid: 2.5.x-xfs:slinx:163116a
parent
a0232262
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
fs/xfs/quota/xfs_dquot.c
fs/xfs/quota/xfs_dquot.c
+1
-1
fs/xfs/xfs_log.c
fs/xfs/xfs_log.c
+1
-1
fs/xfs/xfs_rename.c
fs/xfs/xfs_rename.c
+1
-1
No files found.
fs/xfs/quota/xfs_dquot.c
View file @
903facfa
...
...
@@ -1508,7 +1508,7 @@ xfs_qm_dqpurge(
*/
ASSERT
(
XFS_DQ_IS_ON_FREELIST
(
dqp
));
dqp
->
q_mount
=
NULL
;
;
dqp
->
q_mount
=
NULL
;
dqp
->
q_hash
=
NULL
;
dqp
->
dq_flags
=
XFS_DQ_INACTIVE
;
memset
(
&
dqp
->
q_core
,
0
,
sizeof
(
dqp
->
q_core
));
...
...
fs/xfs/xfs_log.c
View file @
903facfa
...
...
@@ -1056,7 +1056,7 @@ xlog_get_iclog_buffer_size(xfs_mount_t *mp,
if
(
xfs_physmem
<=
btoc
(
128
*
1024
*
1024
))
{
log
->
l_iclog_bufs
=
XLOG_MIN_ICLOGS
;
}
else
if
(
xfs_physmem
<=
btoc
(
400
*
1024
*
1024
))
{
log
->
l_iclog_bufs
=
XLOG_MED_ICLOGS
;
;
log
->
l_iclog_bufs
=
XLOG_MED_ICLOGS
;
}
else
{
/* 256K with 32K bufs */
log
->
l_iclog_bufs
=
XLOG_MAX_ICLOGS
;
...
...
fs/xfs/xfs_rename.c
View file @
903facfa
...
...
@@ -485,7 +485,7 @@ xfs_rename(
error
=
xfs_droplink
(
tp
,
target_ip
);
if
(
error
)
{
rename_which_error_return
=
__LINE__
;
goto
abort_return
;
;
goto
abort_return
;
}
target_ip_dropped
=
1
;
...
...
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