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
730663b8
Commit
730663b8
authored
Dec 03, 2002
by
Alexander Viro
Committed by
Linus Torvalds
Dec 03, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] compile warnings
fixes warnings in acct.h and do_mounts.c
parent
4113dcbd
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
7 deletions
+8
-7
include/linux/acct.h
include/linux/acct.h
+1
-0
init/do_mounts.c
init/do_mounts.c
+7
-7
No files found.
include/linux/acct.h
View file @
730663b8
...
...
@@ -76,6 +76,7 @@ struct acct
#include <linux/config.h>
#ifdef CONFIG_BSD_PROCESS_ACCT
struct
super_block
;
extern
void
acct_auto_close
(
struct
super_block
*
sb
);
extern
int
acct_process
(
long
exitcode
);
#else
...
...
init/do_mounts.c
View file @
730663b8
...
...
@@ -597,7 +597,7 @@ static int __init rd_load_image(char *from)
#ifdef CONFIG_BLK_DEV_RAM
int
in_fd
,
out_fd
;
unsigned
long
rd_blocks
,
devblocks
;
int
nblocks
,
i
;
int
nblocks
,
i
,
disk
;
char
*
buf
;
unsigned
short
rotate
=
0
;
#if !defined(CONFIG_ARCH_S390) && !defined(CONFIG_PPC_ISERIES)
...
...
@@ -640,7 +640,7 @@ static int __init rd_load_image(char *from)
rd_blocks
>>=
1
;
if
(
nblocks
>
rd_blocks
)
{
printk
(
"RAMDISK: image too big! (%d/%d blocks)
\n
"
,
printk
(
"RAMDISK: image too big! (%d/%
l
d blocks)
\n
"
,
nblocks
,
rd_blocks
);
goto
done
;
}
...
...
@@ -667,23 +667,23 @@ static int __init rd_load_image(char *from)
goto
done
;
}
printk
(
KERN_NOTICE
"RAMDISK: Loading %d blocks [%d disk%s] into ram disk... "
,
printk
(
KERN_NOTICE
"RAMDISK: Loading %d blocks [%
l
d disk%s] into ram disk... "
,
nblocks
,
((
nblocks
-
1
)
/
devblocks
)
+
1
,
nblocks
>
devblocks
?
"s"
:
""
);
for
(
i
=
0
;
i
<
nblocks
;
i
++
)
{
for
(
i
=
0
,
disk
=
1
;
i
<
nblocks
;
i
++
)
{
if
(
i
&&
(
i
%
devblocks
==
0
))
{
printk
(
"done disk #%d.
\n
"
,
i
/
devblocks
);
printk
(
"done disk #%d.
\n
"
,
disk
++
);
rotate
=
0
;
if
(
close
(
in_fd
))
{
printk
(
"Error closing the disk.
\n
"
);
goto
noclose_input
;
}
change_floppy
(
"disk #%d"
,
i
/
devblocks
+
1
);
change_floppy
(
"disk #%d"
,
disk
);
in_fd
=
open
(
from
,
O_RDONLY
,
0
);
if
(
in_fd
<
0
)
{
printk
(
"Error opening disk.
\n
"
);
goto
noclose_input
;
}
printk
(
"Loading disk #%d... "
,
i
/
devblocks
+
1
);
printk
(
"Loading disk #%d... "
,
disk
);
}
read
(
in_fd
,
buf
,
BLOCK_SIZE
);
write
(
out_fd
,
buf
,
BLOCK_SIZE
);
...
...
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