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
683f27ab
Commit
683f27ab
authored
Apr 07, 2003
by
Alan Cox
Committed by
Linus Torvalds
Apr 07, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] x86-64 typo fixes
(Steven Cole)
parent
55bf1ffd
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
include/asm-x86_64/byteorder.h
include/asm-x86_64/byteorder.h
+1
-1
include/asm-x86_64/fixmap.h
include/asm-x86_64/fixmap.h
+1
-1
include/asm-x86_64/mmzone.h
include/asm-x86_64/mmzone.h
+1
-1
include/asm-x86_64/rwsem.h
include/asm-x86_64/rwsem.h
+1
-1
include/asm-x86_64/system.h
include/asm-x86_64/system.h
+1
-1
No files found.
include/asm-x86_64/byteorder.h
View file @
683f27ab
...
...
@@ -17,7 +17,7 @@ static __inline__ __const__ __u32 ___arch__swab32(__u32 x)
return
x
;
}
/* Do not define swab16. Gcc is smart enough
t
to recognize "C" version and
/* Do not define swab16. Gcc is smart enough to recognize "C" version and
convert it into rotation or exhange. */
#define __arch__swab32(x) ___arch__swab32(x)
...
...
include/asm-x86_64/fixmap.h
View file @
683f27ab
...
...
@@ -66,7 +66,7 @@ extern void __this_fixmap_does_not_exist(void);
/*
* 'index to address' translation. If anyone tries to use the idx
* directly without tranlation, we catch the bug with a NULL-deference
* directly without tran
s
lation, we catch the bug with a NULL-deference
* kernel oops. Illegal ranges of incoming indices are caught too.
*/
extern
inline
unsigned
long
fix_to_virt
(
const
unsigned
int
idx
)
...
...
include/asm-x86_64/mmzone.h
View file @
683f27ab
/* K8 NUMA support */
/* Copyright 2002,2003 by Andi Kleen, SuSE Labs */
/* 2.5 Version losely based on the NUMAQ Code by Pat Gaughen. */
/* 2.5 Version lo
o
sely based on the NUMAQ Code by Pat Gaughen. */
#ifndef _ASM_X86_64_MMZONE_H
#define _ASM_X86_64_MMZONE_H 1
...
...
include/asm-x86_64/rwsem.h
View file @
683f27ab
...
...
@@ -26,7 +26,7 @@
* This should be totally fair - if anything is waiting, a process that wants a
* lock will go to the back of the queue. When the currently active lock is
* released, if there's a writer at the front of the queue, then that and only
* that will be woken up; if there's a bunch of conse
q
utive readers at the
* that will be woken up; if there's a bunch of conse
c
utive readers at the
* front, then they'll all be woken up, but no other readers will be.
*/
...
...
include/asm-x86_64/system.h
View file @
683f27ab
...
...
@@ -40,7 +40,7 @@ struct save_context_frame {
/* It would be more efficient to let the compiler clobber most of these registers.
Clobbering all is not possible because that lets reload freak out. Even just
clobbering six generates wrong code with gcc 3.1 for me so do it this way for now.
rbp needs to be always explicit
e
ly saved because gcc cannot clobber the
rbp needs to be always explicitly saved because gcc cannot clobber the
frame pointer and the scheduler is compiled with frame pointers. -AK */
#define SAVE_CONTEXT \
__PUSH(rsi) __PUSH(rdi) \
...
...
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