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
621ce5a8
Commit
621ce5a8
authored
Nov 19, 2002
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge
bk://linux-scsi.bkbits.net/scsi-for-linus-2.5
into home.transmeta.com:/home/torvalds/v2.5/linux
parents
2983e9a6
ed9d059f
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
37 deletions
+16
-37
arch/i386/kernel/entry.S
arch/i386/kernel/entry.S
+12
-35
drivers/video/matrox/matroxfb_accel.c
drivers/video/matrox/matroxfb_accel.c
+2
-0
drivers/video/matrox/matroxfb_misc.c
drivers/video/matrox/matroxfb_misc.c
+1
-1
fs/ncpfs/dir.c
fs/ncpfs/dir.c
+1
-1
No files found.
arch/i386/kernel/entry.S
View file @
621ce5a8
...
...
@@ -130,12 +130,16 @@ ENTRY(lcall7)
#
gates
,
which
has
to
be
cleaned
up
later
..
pushl
%
eax
SAVE_ALL
movl
EIP
(%
esp
),
%
eax
#
due
to
call
gates
,
this
is
eflags
,
not
eip
..
movl
CS
(%
esp
),
%
edx
#
this
is
eip
..
movl
EFLAGS
(%
esp
),
%
ecx
#
and
this
is
cs
..
movl
%
eax
,
EFLAGS
(%
esp
)
#
movl
%
edx
,
EIP
(%
esp
)
#
Now
we
move
them
to
their
"normal"
places
movl
%
ecx
,
CS
(%
esp
)
#
movl
%
esp
,
%
ebx
pushl
%
ebx
pushl
$
0x7
do_lcall
:
movl
EIP
(%
ebx
),
%
eax
#
due
to
call
gates
,
this
is
eflags
,
not
eip
..
movl
CS
(%
ebx
),
%
edx
#
this
is
eip
..
movl
EFLAGS
(%
ebx
),
%
ecx
#
and
this
is
cs
..
movl
%
eax
,
EFLAGS
(%
ebx
)
#
movl
%
edx
,
EIP
(%
ebx
)
#
Now
we
move
them
to
their
"normal"
places
movl
%
ecx
,
CS
(%
ebx
)
#
#
#
Call
gates
don
't clear TF and NT in eflags like
...
...
@@ -147,13 +151,9 @@ ENTRY(lcall7)
pushl
%
eax
popfl
movl
%
esp
,
%
ebx
pushl
%
ebx
andl
$
-
8192
,
%
ebx
#
GET_THREAD_INFO
movl
TI_EXEC_DOMAIN
(%
ebx
),
%
edx
#
Get
the
execution
domain
movl
4
(%
edx
),
%
edx
#
Get
the
lcall7
handler
for
the
domain
pushl
$
0x7
call
*%
edx
call
*
4
(%
edx
)
#
Call
the
lcall7
handler
for
the
domain
addl
$
4
,
%
esp
popl
%
eax
jmp
resume_userspace
...
...
@@ -163,33 +163,10 @@ ENTRY(lcall27)
#
gates
,
which
has
to
be
cleaned
up
later
..
pushl
%
eax
SAVE_ALL
movl
EIP
(%
esp
),
%
eax
#
due
to
call
gates
,
this
is
eflags
,
not
eip
..
movl
CS
(%
esp
),
%
edx
#
this
is
eip
..
movl
EFLAGS
(%
esp
),
%
ecx
#
and
this
is
cs
..
movl
%
eax
,
EFLAGS
(%
esp
)
#
movl
%
edx
,
EIP
(%
esp
)
#
Now
we
move
them
to
their
"normal"
places
movl
%
ecx
,
CS
(%
esp
)
#
#
#
Call
gates
don
't clear TF and NT in eflags like
#
traps
do
,
so
we
need
to
do
it
ourselves
.
#
%
eax
already
contains
eflags
(
but
it
may
have
#
DF
set
,
clear
that
also
)
#
andl
$~
(
DF_MASK
| TF_MASK |
NT_MASK
),%
eax
pushl
%
eax
popfl
movl
%
esp
,
%
ebx
pushl
%
ebx
andl
$
-
8192
,
%
ebx
#
GET_THREAD_INFO
movl
TI_EXEC_DOMAIN
(%
ebx
),
%
edx
#
Get
the
execution
domain
movl
4
(%
edx
),
%
edx
#
Get
the
lcall7
handler
for
the
domain
pushl
$
0x27
call
*%
edx
addl
$
4
,
%
esp
popl
%
eax
jmp
resume_userspace
jmp
do_lcall
ENTRY
(
ret_from_fork
)
...
...
drivers/video/matrox/matroxfb_accel.c
View file @
621ce5a8
...
...
@@ -758,6 +758,7 @@ static void matrox_cfb8_revc(struct display* p, int xx, int yy) {
}
#endif
#if defined(FBCON_HAS_CFB16) || defined(FBCON_HAS_CFB24) || defined(FBCON_HAS_CFB32)
static
void
matrox_cfbX_revc
(
struct
display
*
p
,
int
xx
,
int
yy
)
{
CRITFLAGS
MINFO_FROM_DISP
(
p
);
...
...
@@ -778,6 +779,7 @@ static void matrox_cfbX_revc(struct display* p, int xx, int yy) {
CRITEND
}
#endif
static
void
matrox_cfbX_clear_margins
(
struct
vc_data
*
conp
,
struct
display
*
p
,
int
bottom_only
)
{
unsigned
int
bottom_height
,
right_width
;
...
...
drivers/video/matrox/matroxfb_misc.c
View file @
621ce5a8
...
...
@@ -849,7 +849,7 @@ static int parse_pins4(WPMINFO const struct matrox_bios* bd) {
(
bd
->
pins
[
86
]
&
0x0000000F
);
MINFO
->
values
.
reg
.
opt
=
((
bd
->
pins
[
53
]
<<
15
)
&
0x00400000
)
|
((
bd
->
pins
[
53
]
<<
22
)
&
0x10000000
)
|
((
bd
->
pins
[
53
]
<<
10
)
&
0x00001C00
);
((
bd
->
pins
[
53
]
<<
7
)
&
0x00001C00
);
MINFO
->
values
.
reg
.
opt3
=
get_u32
(
bd
->
pins
+
67
);
MINFO
->
values
.
pll
.
system
=
(
bd
->
pins
[
65
]
==
0xFF
)
?
200000
:
bd
->
pins
[
65
]
*
4000
;
MINFO
->
features
.
pll
.
ref_freq
=
(
bd
->
pins
[
92
]
&
0x01
)
?
14318
:
27000
;
...
...
fs/ncpfs/dir.c
View file @
621ce5a8
...
...
@@ -909,7 +909,7 @@ int ncp_create_new(struct inode *dir, struct dentry *dentry, int mode,
if
(
S_ISREG
(
mode
)
&&
(
server
->
m
.
flags
&
NCP_MOUNT_EXTRAS
)
&&
(
mode
&
S_IXUGO
))
attributes
|=
aSYSTEM
;
attributes
|=
aSYSTEM
|
aSHARED
;
result
=
ncp_open_create_file_or_subdir
(
server
,
dir
,
__name
,
OC_MODE_CREATE
|
OC_MODE_OPEN
|
OC_MODE_REPLACE
,
...
...
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