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
b43e708b
Commit
b43e708b
authored
Jul 22, 2002
by
Linus Torvalds
Committed by
Linus Torvalds
Jul 22, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixups for previous changesets, avoid warnings etc.
parent
f1594c9c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
2 deletions
+4
-2
arch/i386/kernel/bluesmoke.c
arch/i386/kernel/bluesmoke.c
+2
-0
arch/i386/mm/ioremap.c
arch/i386/mm/ioremap.c
+1
-1
fs/nfs/dir.c
fs/nfs/dir.c
+1
-1
No files found.
arch/i386/kernel/bluesmoke.c
View file @
b43e708b
...
@@ -10,12 +10,14 @@
...
@@ -10,12 +10,14 @@
#include <linux/config.h>
#include <linux/config.h>
#include <linux/irq.h>
#include <linux/irq.h>
#include <linux/tqueue.h>
#include <linux/tqueue.h>
#include <asm/processor.h>
#include <asm/processor.h>
#include <asm/system.h>
#include <asm/system.h>
#include <asm/msr.h>
#include <asm/msr.h>
#include <asm/apic.h>
#include <asm/apic.h>
#include <asm/pgtable.h>
#include <asm/pgtable.h>
#include <asm/tlbflush.h>
#include <asm/tlbflush.h>
#include <asm/hardirq.h>
#ifdef CONFIG_X86_MCE
#ifdef CONFIG_X86_MCE
...
...
arch/i386/mm/ioremap.c
View file @
b43e708b
...
@@ -215,7 +215,7 @@ void iounmap(void *addr)
...
@@ -215,7 +215,7 @@ void iounmap(void *addr)
struct
vm_struct
*
p
;
struct
vm_struct
*
p
;
if
(
addr
<=
high_memory
)
if
(
addr
<=
high_memory
)
return
;
return
;
p
=
remove_kernel_area
(
PAGE_MASK
&
(
unsigned
long
)
addr
);
p
=
remove_kernel_area
(
(
void
*
)
(
PAGE_MASK
&
(
unsigned
long
)
addr
));
if
(
!
p
)
{
if
(
!
p
)
{
printk
(
"__iounmap: bad address %p
\n
"
,
addr
);
printk
(
"__iounmap: bad address %p
\n
"
,
addr
);
return
;
return
;
...
...
fs/nfs/dir.c
View file @
b43e708b
...
@@ -833,7 +833,7 @@ static int nfs_safe_remove(struct dentry *dentry)
...
@@ -833,7 +833,7 @@ static int nfs_safe_remove(struct dentry *dentry)
{
{
struct
inode
*
dir
=
dentry
->
d_parent
->
d_inode
;
struct
inode
*
dir
=
dentry
->
d_parent
->
d_inode
;
struct
inode
*
inode
=
dentry
->
d_inode
;
struct
inode
*
inode
=
dentry
->
d_inode
;
int
error
=
-
EBUSY
,
rehash
=
0
;
int
error
=
-
EBUSY
;
dfprintk
(
VFS
,
"NFS: safe_remove(%s/%s)
\n
"
,
dfprintk
(
VFS
,
"NFS: safe_remove(%s/%s)
\n
"
,
dentry
->
d_parent
->
d_name
.
name
,
dentry
->
d_name
.
name
);
dentry
->
d_parent
->
d_name
.
name
,
dentry
->
d_name
.
name
);
...
...
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