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
6d6372a7
Commit
6d6372a7
authored
Feb 25, 2003
by
Christoph Hellwig
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[XFS] spin_lock_irqsave must take an ulong, not int. Spotted by Anton Blanchard <anton@samba.org>
SGI Modid: 2.5.x-xfs:slinx:140135a
parent
70fd0766
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
fs/xfs/support/debug.c
fs/xfs/support/debug.c
+2
-2
No files found.
fs/xfs/support/debug.c
View file @
6d6372a7
...
...
@@ -85,8 +85,8 @@ void
cmn_err
(
register
int
level
,
char
*
fmt
,
...)
{
char
*
fp
=
fmt
;
ulong
flags
;
int
len
;
unsigned
long
flags
;
va_list
ap
;
level
&=
XFS_ERR_MASK
;
...
...
@@ -110,8 +110,8 @@ cmn_err(register int level, char *fmt, ...)
void
icmn_err
(
register
int
level
,
char
*
fmt
,
va_list
ap
)
{
ulong
flags
;
int
len
;
int
flags
;
level
&=
XFS_ERR_MASK
;
if
(
level
>
XFS_MAX_ERR_LEVEL
)
...
...
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