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
d6611edf
Commit
d6611edf
authored
Oct 26, 2003
by
David S. Miller
Browse files
Options
Browse Files
Download
Plain Diff
Merge nuts.ninka.net:/disk1/davem/BK/network-2.5
into nuts.ninka.net:/disk1/davem/BK/net-2.5
parents
82cfd269
edf12049
Changes
39
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
39 changed files
with
391 additions
and
249 deletions
+391
-249
Documentation/video4linux/meye.txt
Documentation/video4linux/meye.txt
+5
-0
Makefile
Makefile
+1
-1
arch/h8300/kernel/time.c
arch/h8300/kernel/time.c
+6
-0
arch/ia64/kernel/efi.c
arch/ia64/kernel/efi.c
+26
-0
arch/ia64/kernel/gate-data.S
arch/ia64/kernel/gate-data.S
+1
-1
arch/ia64/kernel/irq.c
arch/ia64/kernel/irq.c
+1
-1
arch/ia64/kernel/module.c
arch/ia64/kernel/module.c
+75
-7
arch/ia64/kernel/perfmon.c
arch/ia64/kernel/perfmon.c
+118
-82
arch/ia64/kernel/process.c
arch/ia64/kernel/process.c
+6
-2
arch/ia64/kernel/unwind_i.h
arch/ia64/kernel/unwind_i.h
+1
-7
arch/x86_64/kernel/acpi/boot.c
arch/x86_64/kernel/acpi/boot.c
+27
-0
arch/x86_64/kernel/entry.S
arch/x86_64/kernel/entry.S
+8
-2
arch/x86_64/kernel/io_apic.c
arch/x86_64/kernel/io_apic.c
+3
-1
arch/x86_64/kernel/setup64.c
arch/x86_64/kernel/setup64.c
+9
-8
arch/x86_64/kernel/smp.c
arch/x86_64/kernel/smp.c
+0
-22
arch/x86_64/kernel/time.c
arch/x86_64/kernel/time.c
+17
-3
arch/x86_64/kernel/x8664_ksyms.c
arch/x86_64/kernel/x8664_ksyms.c
+1
-1
arch/x86_64/mm/extable.c
arch/x86_64/mm/extable.c
+4
-0
arch/x86_64/mm/k8topology.c
arch/x86_64/mm/k8topology.c
+3
-0
arch/x86_64/mm/numa.c
arch/x86_64/mm/numa.c
+1
-0
drivers/char/sonypi.h
drivers/char/sonypi.h
+3
-3
drivers/input/keyboard/atkbd.c
drivers/input/keyboard/atkbd.c
+10
-11
drivers/media/video/meye.h
drivers/media/video/meye.h
+1
-1
fs/fat/inode.c
fs/fat/inode.c
+8
-4
include/asm-h8300/smplock.h
include/asm-h8300/smplock.h
+0
-51
include/asm-ia64/io.h
include/asm-ia64/io.h
+3
-0
include/asm-ia64/module.h
include/asm-ia64/module.h
+2
-1
include/asm-ia64/namei.h
include/asm-ia64/namei.h
+1
-1
include/asm-ia64/unwind.h
include/asm-ia64/unwind.h
+6
-0
include/asm-x86_64/hw_irq.h
include/asm-x86_64/hw_irq.h
+2
-2
include/asm-x86_64/irq.h
include/asm-x86_64/irq.h
+1
-0
include/asm-x86_64/pci.h
include/asm-x86_64/pci.h
+2
-0
include/asm-x86_64/processor.h
include/asm-x86_64/processor.h
+2
-2
include/asm-x86_64/smp.h
include/asm-x86_64/smp.h
+1
-9
include/asm-x86_64/topology.h
include/asm-x86_64/topology.h
+3
-1
include/linux/sched.h
include/linux/sched.h
+1
-0
kernel/exit.c
kernel/exit.c
+1
-0
kernel/sched.c
kernel/sched.c
+3
-6
lib/div64.c
lib/div64.c
+28
-19
No files found.
Documentation/video4linux/meye.txt
View file @
d6611edf
...
...
@@ -33,6 +33,11 @@ to the developers under a NDA (which allows the develoment of a GPL
driver however), but things are not moving very fast (see
http://r-engine.sourceforge.net/) (PCI vendor/device is 0x10cf/0x2011).
There is a forth model connected on the USB bus in TR1* Vaio laptops.
This camera is not supported at all by the current driver, in fact
little information if any is available for this camera
(USB vendor/device is 0x054c/0x0107).
Driver options:
---------------
...
...
Makefile
View file @
d6611edf
VERSION
=
2
PATCHLEVEL
=
6
SUBLEVEL
=
0
EXTRAVERSION
=
-test
8
EXTRAVERSION
=
-test
9
# *DOCUMENTATION*
# To see a list of typical targets execute "make help"
...
...
arch/h8300/kernel/time.c
View file @
d6611edf
...
...
@@ -143,3 +143,9 @@ int do_settimeofday(struct timespec *tv)
}
EXPORT_SYMBOL
(
do_settimeofday
);
unsigned
long
long
sched_clock
(
void
)
{
return
(
unsigned
long
long
)
jiffies
*
(
1000000000
/
HZ
);
}
arch/ia64/kernel/efi.c
View file @
d6611edf
...
...
@@ -711,6 +711,32 @@ efi_mem_attributes (unsigned long phys_addr)
return
0
;
}
int
valid_phys_addr_range
(
unsigned
long
phys_addr
,
unsigned
long
*
size
)
{
void
*
efi_map_start
,
*
efi_map_end
,
*
p
;
efi_memory_desc_t
*
md
;
u64
efi_desc_size
;
efi_map_start
=
__va
(
ia64_boot_param
->
efi_memmap
);
efi_map_end
=
efi_map_start
+
ia64_boot_param
->
efi_memmap_size
;
efi_desc_size
=
ia64_boot_param
->
efi_memdesc_size
;
for
(
p
=
efi_map_start
;
p
<
efi_map_end
;
p
+=
efi_desc_size
)
{
md
=
p
;
if
(
phys_addr
-
md
->
phys_addr
<
(
md
->
num_pages
<<
EFI_PAGE_SHIFT
))
{
if
(
!
(
md
->
attribute
&
EFI_MEMORY_WB
))
return
0
;
if
(
*
size
>
md
->
phys_addr
+
(
md
->
num_pages
<<
EFI_PAGE_SHIFT
)
-
phys_addr
)
*
size
=
md
->
phys_addr
+
(
md
->
num_pages
<<
EFI_PAGE_SHIFT
)
-
phys_addr
;
return
1
;
}
}
return
0
;
}
static
void
__exit
efivars_exit
(
void
)
{
...
...
arch/ia64/kernel/gate-data.S
View file @
d6611edf
.
section
.
data
.
gate
,
"a
x
"
.
section
.
data
.
gate
,
"a
w
"
.
incbin
"arch/ia64/kernel/gate.so"
arch/ia64/kernel/irq.c
View file @
d6611edf
...
...
@@ -405,7 +405,7 @@ void enable_irq(unsigned int irq)
spin_lock_irqsave
(
&
desc
->
lock
,
flags
);
switch
(
desc
->
depth
)
{
case
1
:
{
unsigned
int
status
=
desc
->
status
&
~
(
IRQ_DISABLED
|
IRQ_INPROGRESS
)
;
unsigned
int
status
=
desc
->
status
&
~
IRQ_DISABLED
;
desc
->
status
=
status
;
if
((
status
&
(
IRQ_PENDING
|
IRQ_REPLAY
))
==
IRQ_PENDING
)
{
desc
->
status
=
status
|
IRQ_REPLAY
;
...
...
arch/ia64/kernel/module.c
View file @
d6611edf
...
...
@@ -322,6 +322,10 @@ module_alloc (unsigned long size)
void
module_free
(
struct
module
*
mod
,
void
*
module_region
)
{
if
(
mod
->
arch
.
init_unw_table
&&
module_region
==
mod
->
module_init
)
{
unw_remove_unwind_table
(
mod
->
arch
.
init_unw_table
);
mod
->
arch
.
init_unw_table
=
NULL
;
}
vfree
(
module_region
);
}
...
...
@@ -843,23 +847,87 @@ apply_relocate (Elf64_Shdr *sechdrs, const char *strtab, unsigned int symindex,
return
-
ENOEXEC
;
}
/*
* Modules contain a single unwind table which covers both the core and the init text
* sections but since the two are not contiguous, we need to split this table up such that
* we can register (and unregister) each "segment" seperately. Fortunately, this sounds
* more complicated than it really is.
*/
static
void
register_unwind_table
(
struct
module
*
mod
)
{
struct
unw_table_entry
*
start
=
(
void
*
)
mod
->
arch
.
unwind
->
sh_addr
;
struct
unw_table_entry
*
end
=
start
+
mod
->
arch
.
unwind
->
sh_size
/
sizeof
(
*
start
);
struct
unw_table_entry
tmp
,
*
e1
,
*
e2
,
*
core
,
*
init
;
unsigned
long
num_init
=
0
,
num_core
=
0
;
/* First, count how many init and core unwind-table entries there are. */
for
(
e1
=
start
;
e1
<
end
;
++
e1
)
if
(
in_init
(
mod
,
e1
->
start_offset
))
++
num_init
;
else
++
num_core
;
/*
* Second, sort the table such that all unwind-table entries for the init and core
* text sections are nicely separated. We do this with a stupid bubble sort
* (unwind tables don't get ridiculously huge).
*/
for
(
e1
=
start
;
e1
<
end
;
++
e1
)
{
for
(
e2
=
e1
+
1
;
e2
<
end
;
++
e2
)
{
if
(
e2
->
start_offset
<
e1
->
start_offset
)
{
tmp
=
*
e1
;
*
e1
=
*
e2
;
*
e2
=
tmp
;
}
}
}
/*
* Third, locate the init and core segments in the unwind table:
*/
if
(
in_init
(
mod
,
start
->
start_offset
))
{
init
=
start
;
core
=
start
+
num_init
;
}
else
{
core
=
start
;
init
=
start
+
num_core
;
}
DEBUGP
(
"%s: name=%s, gp=%lx, num_init=%lu, num_core=%lu
\n
"
,
__FUNCTION__
,
mod
->
name
,
mod
->
arch
.
gp
,
num_init
,
num_core
);
/*
* Fourth, register both tables (if not empty).
*/
if
(
num_core
>
0
)
{
mod
->
arch
.
core_unw_table
=
unw_add_unwind_table
(
mod
->
name
,
0
,
mod
->
arch
.
gp
,
core
,
core
+
num_core
);
DEBUGP
(
"%s: core: handle=%p [%p-%p)
\n
"
,
__FUNCTION__
,
mod
->
arch
.
core_unw_table
,
core
,
core
+
num_core
);
}
if
(
num_init
>
0
)
{
mod
->
arch
.
init_unw_table
=
unw_add_unwind_table
(
mod
->
name
,
0
,
mod
->
arch
.
gp
,
init
,
init
+
num_init
);
DEBUGP
(
"%s: init: handle=%p [%p-%p)
\n
"
,
__FUNCTION__
,
mod
->
arch
.
init_unw_table
,
init
,
init
+
num_init
);
}
}
int
module_finalize
(
const
Elf_Ehdr
*
hdr
,
const
Elf_Shdr
*
sechdrs
,
struct
module
*
mod
)
{
DEBUGP
(
"%s: init: entry=%p
\n
"
,
__FUNCTION__
,
mod
->
init
);
if
(
mod
->
arch
.
unwind
)
mod
->
arch
.
unw_table
=
unw_add_unwind_table
(
mod
->
name
,
0
,
mod
->
arch
.
gp
,
(
void
*
)
mod
->
arch
.
unwind
->
sh_addr
,
((
void
*
)
mod
->
arch
.
unwind
->
sh_addr
+
mod
->
arch
.
unwind
->
sh_size
));
register_unwind_table
(
mod
);
return
0
;
}
void
module_arch_cleanup
(
struct
module
*
mod
)
{
if
(
mod
->
arch
.
unwind
)
unw_remove_unwind_table
(
mod
->
arch
.
unw_table
);
if
(
mod
->
arch
.
init_unw_table
)
unw_remove_unwind_table
(
mod
->
arch
.
init_unw_table
);
if
(
mod
->
arch
.
core_unw_table
)
unw_remove_unwind_table
(
mod
->
arch
.
core_unw_table
);
}
#ifdef CONFIG_SMP
...
...
arch/ia64/kernel/perfmon.c
View file @
d6611edf
This diff is collapsed.
Click to expand it.
arch/ia64/kernel/process.c
View file @
d6611edf
...
...
@@ -353,9 +353,13 @@ copy_thread (int nr, unsigned long clone_flags,
/* copy parts of thread_struct: */
p
->
thread
.
ksp
=
(
unsigned
long
)
child_stack
-
16
;
/* stop some PSR bits from being inherited: */
/* stop some PSR bits from being inherited.
* the psr.up/psr.pp bits must be cleared on fork but inherited on execve()
* therefore we must specify them explicitly here and not include them in
* IA64_PSR_BITS_TO_CLEAR.
*/
child_ptregs
->
cr_ipsr
=
((
child_ptregs
->
cr_ipsr
|
IA64_PSR_BITS_TO_SET
)
&
~
IA64_PSR_BITS_TO_CLEAR
);
&
~
(
IA64_PSR_BITS_TO_CLEAR
|
IA64_PSR_PP
|
IA64_PSR_UP
)
);
/*
* NOTE: The calling convention considers all floating point
...
...
arch/ia64/kernel/unwind_i.h
View file @
d6611edf
/*
* Copyright (C) 2000, 2002 Hewlett-Packard Co
* Copyright (C) 2000, 2002
-2003
Hewlett-Packard Co
* David Mosberger-Tang <davidm@hpl.hp.com>
*
* Kernel unwind support.
...
...
@@ -45,12 +45,6 @@ struct unw_info_block {
/* personality routine and language-specific data follow behind descriptors */
};
struct
unw_table_entry
{
u64
start_offset
;
u64
end_offset
;
u64
info_offset
;
};
struct
unw_table
{
struct
unw_table
*
next
;
/* must be first member! */
const
char
*
name
;
...
...
arch/x86_64/kernel/acpi/boot.c
View file @
d6611edf
...
...
@@ -251,6 +251,33 @@ acpi_parse_hpet (
}
#endif
#ifdef CONFIG_ACPI_BUS
/*
* Set specified PIC IRQ to level triggered mode.
*
* Port 0x4d0-4d1 are ECLR1 and ECLR2, the Edge/Level Control Registers
* for the 8259 PIC. bit[n] = 1 means irq[n] is Level, otherwise Edge.
* ECLR1 is IRQ's 0-7 (IRQ 0, 1, 2 must be 0)
* ECLR2 is IRQ's 8-15 (IRQ 8, 13 must be 0)
*
* As the BIOS should have done this for us,
* print a warning if the IRQ wasn't already set to level.
*/
void
acpi_pic_set_level_irq
(
unsigned
int
irq
)
{
unsigned
char
mask
=
1
<<
(
irq
&
7
);
unsigned
int
port
=
0x4d0
+
(
irq
>>
3
);
unsigned
char
val
=
inb
(
port
);
if
(
!
(
val
&
mask
))
{
printk
(
KERN_WARNING
PREFIX
"IRQ %d was Edge Triggered, "
"setting to Level Triggerd
\n
"
,
irq
);
outb
(
val
|
mask
,
port
);
}
}
#endif
/* CONFIG_ACPI_BUS */
static
unsigned
long
__init
acpi_scan_rsdp
(
unsigned
long
start
,
...
...
arch/x86_64/kernel/entry.S
View file @
d6611edf
...
...
@@ -566,8 +566,14 @@ error_kernelspace:
incl
%
ebx
/
*
There
are
two
places
in
the
kernel
that
can
potentially
fault
with
usergs
.
Handle
them
here
.
The
exception
handlers
after
iret
run
with
kernel
gs
again
,
so
don
't set the user space flag. */
cmpq
$iret_label
,
RIP
(%
rsp
)
iret
run
with
kernel
gs
again
,
so
don
't set the user space flag.
B
stepping
K8s
sometimes
report
an
truncated
RIP
for
IRET
exceptions
returning
to
compat
mode
.
Check
for
these
here
too
.
*/
leaq
iret_label
(%
rip
),%
rbp
cmpq
%
rbp
,
RIP
(%
rsp
)
je
error_swapgs
movl
%
ebp
,%
ebp
/*
zero
extend
*/
cmpq
%
rbp
,
RIP
(%
rsp
)
je
error_swapgs
cmpq
$gs_change
,
RIP
(%
rsp
)
je
error_swapgs
...
...
arch/x86_64/kernel/io_apic.c
View file @
d6611edf
...
...
@@ -622,11 +622,13 @@ static inline int IO_APIC_irq_trigger(int irq)
return
0
;
}
int
irq_vector
[
NR_IRQS
]
=
{
FIRST_DEVICE_VECTOR
,
0
};
/* irq_vectors is indexed by the sum of all RTEs in all I/O APICs. */
u8
irq_vector
[
NR_IRQ_VECTORS
]
=
{
FIRST_DEVICE_VECTOR
,
0
};
static
int
__init
assign_irq_vector
(
int
irq
)
{
static
int
current_vector
=
FIRST_DEVICE_VECTOR
,
offset
=
0
;
BUG_ON
(
irq
>=
NR_IRQ_VECTORS
);
if
(
IO_APIC_VECTOR
(
irq
)
>
0
)
return
IO_APIC_VECTOR
(
irq
);
next:
...
...
arch/x86_64/kernel/setup64.c
View file @
d6611edf
...
...
@@ -189,8 +189,7 @@ void pda_init(int cpu)
pda
->
irqstackptr
+=
IRQSTACKSIZE
-
64
;
}
#define EXCEPTION_STK_ORDER 0
/* >= N_EXCEPTION_STACKS*EXCEPTION_STKSZ */
char
boot_exception_stacks
[
N_EXCEPTION_STACKS
*
EXCEPTION_STKSZ
];
char
boot_exception_stacks
[
N_EXCEPTION_STACKS
*
EXCEPTION_STKSZ
];
void
syscall_init
(
void
)
{
...
...
@@ -226,15 +225,12 @@ void __init cpu_init (void)
#endif
struct
tss_struct
*
t
=
&
init_tss
[
cpu
];
unsigned
long
v
,
efer
;
char
*
estacks
;
char
*
estacks
=
NULL
;
struct
task_struct
*
me
;
/* CPU 0 is initialised in head64.c */
if
(
cpu
!=
0
)
{
pda_init
(
cpu
);
estacks
=
(
char
*
)
__get_free_pages
(
GFP_ATOMIC
,
0
);
if
(
!
estacks
)
panic
(
"Can't allocate exception stacks for CPU %d
\n
"
,
cpu
);
}
else
estacks
=
boot_exception_stacks
;
...
...
@@ -282,10 +278,15 @@ void __init cpu_init (void)
/*
* set up and load the per-CPU TSS
*/
estacks
+=
EXCEPTION_STKSZ
;
for
(
v
=
0
;
v
<
N_EXCEPTION_STACKS
;
v
++
)
{
t
->
ist
[
v
]
=
(
unsigned
long
)
estacks
;
if
(
cpu
)
{
estacks
=
(
char
*
)
__get_free_pages
(
GFP_ATOMIC
,
0
);
if
(
!
estacks
)
panic
(
"Cannot allocate exception stack %ld %d
\n
"
,
v
,
cpu
);
}
estacks
+=
EXCEPTION_STKSZ
;
t
->
ist
[
v
]
=
(
unsigned
long
)
estacks
;
}
t
->
io_bitmap_base
=
INVALID_IO_BITMAP_OFFSET
;
...
...
arch/x86_64/kernel/smp.c
View file @
d6611edf
...
...
@@ -487,25 +487,3 @@ asmlinkage void smp_call_function_interrupt(void)
atomic_inc
(
&
call_data
->
finished
);
}
}
/* Slow. Should be only used for debugging. */
int
slow_smp_processor_id
(
void
)
{
int
stack_location
;
unsigned
long
sp
=
(
unsigned
long
)
&
stack_location
;
int
offset
=
0
,
cpu
;
for
(
offset
=
0
;
next_cpu
(
offset
,
cpu_online_map
)
<
NR_CPUS
;
offset
=
cpu
+
1
)
{
cpu
=
next_cpu
(
offset
,
cpu_online_map
);
if
(
sp
>=
(
u64
)
cpu_pda
[
cpu
].
irqstackptr
-
IRQSTACKSIZE
&&
sp
<=
(
u64
)
cpu_pda
[
cpu
].
irqstackptr
)
return
cpu
;
unsigned
long
estack
=
init_tss
[
cpu
].
ist
[
0
]
-
EXCEPTION_STKSZ
;
if
(
sp
>=
estack
&&
sp
<=
estack
+
(
1
<<
(
PAGE_SHIFT
+
EXCEPTION_STK_ORDER
)))
return
cpu
;
}
return
stack_smp_processor_id
();
}
arch/x86_64/kernel/time.c
View file @
d6611edf
...
...
@@ -111,6 +111,14 @@ void do_gettimeofday(struct timeval *tv)
sec
=
xtime
.
tv_sec
;
usec
=
xtime
.
tv_nsec
/
1000
;
/*
* If time_adjust is negative then NTP is slowing the clock
* so make sure not to go into next possible interval.
* Better to lose some accuracy than have time go backwards..
*/
if
(
unlikely
(
time_adjust
<
0
)
&&
usec
>
tickadj
)
usec
=
tickadj
;
t
=
(
jiffies
-
wall_jiffies
)
*
(
1000000L
/
HZ
)
+
do_gettimeoffset
();
usec
+=
t
;
...
...
@@ -477,22 +485,28 @@ unsigned long get_cmos_time(void)
static
unsigned
int
ref_freq
=
0
;
static
unsigned
long
loops_per_jiffy_ref
=
0
;
//static unsigned long fast_gettimeoffset_ref = 0;
static
unsigned
long
cpu_khz_ref
=
0
;
static
int
time_cpufreq_notifier
(
struct
notifier_block
*
nb
,
unsigned
long
val
,
void
*
data
)
{
struct
cpufreq_freqs
*
freq
=
data
;
unsigned
long
*
lpj
;
#ifdef CONFIG_SMP
lpj
=
&
cpu_data
[
freq
->
cpu
].
loops_per_jiffy
;
#else
lpj
=
&
boot_cpu_data
.
loops_per_jiffy
;
#endif
if
(
!
ref_freq
)
{
ref_freq
=
freq
->
old
;
loops_per_jiffy_ref
=
cpu_data
[
freq
->
cpu
].
loops_per_jiffy
;
loops_per_jiffy_ref
=
*
lpj
;
cpu_khz_ref
=
cpu_khz
;
}
if
((
val
==
CPUFREQ_PRECHANGE
&&
freq
->
old
<
freq
->
new
)
||
(
val
==
CPUFREQ_POSTCHANGE
&&
freq
->
old
>
freq
->
new
))
{
cpu_data
[
freq
->
cpu
].
loops_per_jiffy
=
*
lpj
=
cpufreq_scale
(
loops_per_jiffy_ref
,
ref_freq
,
freq
->
new
);
cpu_khz
=
cpufreq_scale
(
cpu_khz_ref
,
ref_freq
,
freq
->
new
);
...
...
arch/x86_64/kernel/x8664_ksyms.c
View file @
d6611edf
...
...
@@ -153,7 +153,7 @@ EXPORT_SYMBOL_GPL(unset_nmi_callback);
extern
void
*
memset
(
void
*
,
int
,
__kernel_size_t
);
extern
size_t
strlen
(
const
char
*
);
extern
char
*
bcopy
(
const
char
*
src
,
char
*
dest
,
int
count
);
extern
void
bcopy
(
const
char
*
src
,
char
*
dest
,
int
count
);
extern
void
*
memmove
(
void
*
dest
,
const
void
*
src
,
size_t
count
);
extern
char
*
strcpy
(
char
*
dest
,
const
char
*
src
);
extern
int
strcmp
(
const
char
*
cs
,
const
char
*
ct
);
...
...
arch/x86_64/mm/extable.c
View file @
d6611edf
...
...
@@ -14,6 +14,10 @@ search_extable(const struct exception_table_entry *first,
const
struct
exception_table_entry
*
last
,
unsigned
long
value
)
{
/* Work around a B stepping K8 bug */
if
((
value
>>
32
)
==
0
)
value
|=
0xffffffffUL
<<
32
;
while
(
first
<=
last
)
{
const
struct
exception_table_entry
*
mid
;
long
diff
;
...
...
arch/x86_64/mm/k8topology.c
View file @
d6611edf
...
...
@@ -164,5 +164,8 @@ int __init k8_scan_nodes(unsigned long start, unsigned long end)
rr
++
;
}
if
(
found
==
1
)
fake_node
=
1
;
return
0
;
}
arch/x86_64/mm/numa.c
View file @
d6611edf
...
...
@@ -104,6 +104,7 @@ void __init setup_node_bootmem(int nodeid, unsigned long start, unsigned long en
if
(
nodeid
+
1
>
numnodes
)
numnodes
=
nodeid
+
1
;
nodes_present
|=
(
1UL
<<
nodeid
);
node_set_online
(
nodeid
);
}
/* Initialize final allocator for a zone */
...
...
drivers/char/sonypi.h
View file @
d6611edf
...
...
@@ -37,7 +37,7 @@
#ifdef __KERNEL__
#define SONYPI_DRIVER_MAJORVERSION 1
#define SONYPI_DRIVER_MINORVERSION 2
0
#define SONYPI_DRIVER_MINORVERSION 2
1
#define SONYPI_DEVICE_MODEL_TYPE1 1
#define SONYPI_DEVICE_MODEL_TYPE2 2
...
...
@@ -329,8 +329,8 @@ struct sonypi_eventtypes {
{
SONYPI_DEVICE_MODEL_TYPE2
,
0x08
,
SONYPI_PKEY_MASK
,
sonypi_pkeyev
},
{
SONYPI_DEVICE_MODEL_TYPE2
,
0x11
,
SONYPI_BACK_MASK
,
sonypi_backev
},
{
SONYPI_DEVICE_MODEL_TYPE2
,
0x08
,
SONYPI_HELP_MASK
,
sonypi_helpev
},
{
SONYPI_DEVICE_MODEL_TYPE2
,
0x
08
,
SONYPI_ZOOM_MASK
,
sonypi_zoomev
},
{
SONYPI_DEVICE_MODEL_TYPE2
,
0x
08
,
SONYPI_THUMBPHRASE_MASK
,
sonypi_thumbphraseev
},
{
SONYPI_DEVICE_MODEL_TYPE2
,
0x
21
,
SONYPI_ZOOM_MASK
,
sonypi_zoomev
},
{
SONYPI_DEVICE_MODEL_TYPE2
,
0x
20
,
SONYPI_THUMBPHRASE_MASK
,
sonypi_thumbphraseev
},
{
SONYPI_DEVICE_MODEL_TYPE2
,
0x31
,
SONYPI_MEMORYSTICK_MASK
,
sonypi_memorystickev
},
{
SONYPI_DEVICE_MODEL_TYPE2
,
0x41
,
SONYPI_BATTERY_MASK
,
sonypi_batteryev
},
...
...
drivers/input/keyboard/atkbd.c
View file @
d6611edf
...
...
@@ -184,11 +184,19 @@ static irqreturn_t atkbd_interrupt(struct serio *serio, unsigned char data,
atkbd
->
resend
=
0
;
#endif
switch
(
code
)
{
case
ATKBD_RET_ACK
:
atkbd
->
ack
=
1
;
goto
out
;
case
ATKBD_RET_NAK
:
atkbd
->
ack
=
-
1
;
goto
out
;
}
if
(
atkbd
->
translated
)
do
{
if
(
atkbd
->
emul
!=
1
)
{
if
(
code
==
ATKBD_RET_EMUL0
||
code
==
ATKBD_RET_EMUL1
||
code
==
ATKBD_RET_ACK
||
code
==
ATKBD_RET_NAK
)
if
(
code
==
ATKBD_RET_EMUL0
||
code
==
ATKBD_RET_EMUL1
)
break
;
if
(
code
==
ATKBD_RET_BAT
)
{
if
(
!
atkbd
->
bat_xl
)
...
...
@@ -212,15 +220,6 @@ static irqreturn_t atkbd_interrupt(struct serio *serio, unsigned char data,
}
while
(
0
);
switch
(
code
)
{
case
ATKBD_RET_ACK
:
atkbd
->
ack
=
1
;
goto
out
;
case
ATKBD_RET_NAK
:
atkbd
->
ack
=
-
1
;
goto
out
;
}
if
(
atkbd
->
cmdcnt
)
{
atkbd
->
cmdbuf
[
--
atkbd
->
cmdcnt
]
=
code
;
goto
out
;
...
...
drivers/media/video/meye.h
View file @
d6611edf
...
...
@@ -31,7 +31,7 @@
#define _MEYE_PRIV_H_
#define MEYE_DRIVER_MAJORVERSION 1
#define MEYE_DRIVER_MINORVERSION
7
#define MEYE_DRIVER_MINORVERSION
8
#include <linux/config.h>
#include <linux/types.h>
...
...
fs/fat/inode.c
View file @
d6611edf
...
...
@@ -964,13 +964,17 @@ int fat_fill_super(struct super_block *sb, void *data, int silent,
error
=
first
;
goto
out_fail
;
}
if
(
FAT_FIRST_ENT
(
sb
,
media
)
!=
first
&&
(
media
!=
0xf8
||
FAT_FIRST_ENT
(
sb
,
0xfe
)
!=
first
))
{
if
(
!
silent
)
{
if
(
FAT_FIRST_ENT
(
sb
,
media
)
==
first
)
{
/* all is as it should be */
}
else
if
(
media
==
0xf8
&&
FAT_FIRST_ENT
(
sb
,
0xfe
)
==
first
)
{
/* bad, reported on pc9800 */
}
else
if
(
first
==
0
)
{
/* bad, reported with a SmartMedia card */
}
else
{
if
(
!
silent
)
printk
(
KERN_ERR
"FAT: invalid first entry of FAT "
"(0x%x != 0x%x)
\n
"
,
FAT_FIRST_ENT
(
sb
,
media
),
first
);
}
goto
out_invalid
;
}
...
...
include/asm-h8300/smplock.h
deleted
100644 → 0
View file @
82cfd269
/*
* <asm/smplock.h>
*
* Default SMP lock implementation
*/
#include <linux/interrupt.h>
#include <linux/spinlock.h>
extern
spinlock_t
kernel_flag
;
#define kernel_locked() spin_is_locked(&kernel_flag)
/*
* Release global kernel lock and global interrupt lock
*/
#define release_kernel_lock(task, cpu) \
do { \
if (task->lock_depth >= 0) \
spin_unlock(&kernel_flag); \
release_irqlock(cpu); \
__sti(); \
} while (0)
/*
* Re-acquire the kernel lock
*/
#define reacquire_kernel_lock(task) \
do { \
if (task->lock_depth >= 0) \
spin_lock(&kernel_flag); \
} while (0)
/*
* Getting the big kernel lock.
*
* This cannot happen asynchronously,
* so we only need to worry about other
* CPU's.
*/
extern
__inline__
void
lock_kernel
(
void
)
{
if
(
!++
current
->
lock_depth
)
spin_lock
(
&
kernel_flag
);
}
extern
__inline__
void
unlock_kernel
(
void
)
{
if
(
--
current
->
lock_depth
<
0
)
spin_unlock
(
&
kernel_flag
);
}
include/asm-ia64/io.h
View file @
d6611edf
...
...
@@ -72,6 +72,9 @@ phys_to_virt (unsigned long address)
return
(
void
*
)
(
address
+
PAGE_OFFSET
);
}
#define ARCH_HAS_VALID_PHYS_ADDR_RANGE
extern
int
valid_phys_addr_range
(
unsigned
long
addr
,
size_t
*
count
);
/* efi.c */
/*
* The following two macros are deprecated and scheduled for removal.
* Please use the PCI-DMA interface defined in <asm/pci.h> instead.
...
...
include/asm-ia64/module.h
View file @
d6611edf
...
...
@@ -18,7 +18,8 @@ struct mod_arch_specific {
struct
elf64_shdr
*
unwind
;
/* unwind-table section */
unsigned
long
gp
;
/* global-pointer for module */
void
*
unw_table
;
/* unwind-table cookie returned by unwinder */
void
*
core_unw_table
;
/* core unwind-table cookie returned by unwinder */
void
*
init_unw_table
;
/* init unwind-table cookie returned by unwinder */
unsigned
int
next_got_entry
;
/* index of next available got entry */
};
...
...
include/asm-ia64/namei.h
View file @
d6611edf
...
...
@@ -9,7 +9,7 @@
#include <asm/ptrace.h>
#include <asm/system.h>
#define EMUL_PREFIX_LINUX_IA32 "emul/ia32-linux/"
#define EMUL_PREFIX_LINUX_IA32 "
/
emul/ia32-linux/"
static
inline
char
*
__emul_prefix
(
void
)
...
...
include/asm-ia64/unwind.h
View file @
d6611edf
...
...
@@ -93,6 +93,12 @@ struct unw_frame_info {
* The official API follows below:
*/
struct
unw_table_entry
{
u64
start_offset
;
u64
end_offset
;
u64
info_offset
;
};
/*
* Initialize unwind support.
*/
...
...
include/asm-x86_64/hw_irq.h
View file @
d6611edf
...
...
@@ -76,8 +76,8 @@ struct hw_interrupt_type;
#ifndef __ASSEMBLY__
extern
int
irq_vector
[
NR_IRQ
S
];
#define IO_APIC_VECTOR(irq)
irq_vector[irq]
extern
u8
irq_vector
[
NR_IRQ_VECTOR
S
];
#define IO_APIC_VECTOR(irq)
((int)irq_vector[irq])
/*
* Various low-level irq details needed by irq.c, process.c,
...
...
include/asm-x86_64/irq.h
View file @
d6611edf
...
...
@@ -22,6 +22,7 @@
* the usable vector space is 0x20-0xff (224 vectors)
*/
#define NR_IRQS 224
#define NR_IRQ_VECTORS NR_IRQS
static
__inline__
int
irq_canonicalize
(
int
irq
)
{
...
...
include/asm-x86_64/pci.h
View file @
d6611edf
...
...
@@ -24,6 +24,8 @@ extern unsigned long pci_mem_start;
#define PCIBIOS_MIN_IO 0x1000
#define PCIBIOS_MIN_MEM (pci_mem_start)
#define PCIBIOS_MIN_CARDBUS_IO 0x4000
void
pcibios_config_init
(
void
);
struct
pci_bus
*
pcibios_scan_root
(
int
bus
);
extern
int
(
*
pci_config_read
)(
int
seg
,
int
bus
,
int
dev
,
int
fn
,
int
reg
,
int
len
,
u32
*
value
);
...
...
include/asm-x86_64/processor.h
View file @
d6611edf
...
...
@@ -263,8 +263,8 @@ struct thread_struct {
#define DOUBLEFAULT_STACK 2
#define NMI_STACK 3
#define N_EXCEPTION_STACKS 3
/* hw limit: 7 */
#define EXCEPTION_STKSZ
1024
#define EXCEPTION_ST
K_ORDER 0
#define EXCEPTION_STKSZ
(PAGE_SIZE << EXCEPTION_STACK_ORDER)
#define EXCEPTION_ST
ACK_ORDER 0
#define start_thread(regs,new_rip,new_rsp) do { \
asm volatile("movl %0,%%fs; movl %0,%%es; movl %0,%%ds": :"r" (0)); \
...
...
include/asm-x86_64/smp.h
View file @
d6611edf
...
...
@@ -74,15 +74,7 @@ extern __inline int hard_smp_processor_id(void)
return
GET_APIC_ID
(
*
(
unsigned
int
*
)(
APIC_BASE
+
APIC_ID
));
}
extern
int
slow_smp_processor_id
(
void
);
extern
inline
int
safe_smp_processor_id
(
void
)
{
if
(
disable_apic
)
return
slow_smp_processor_id
();
else
return
hard_smp_processor_id
();
}
#define safe_smp_processor_id() (cpuid_ebx(1) >> 24)
#define cpu_online(cpu) cpu_isset(cpu, cpu_online_map)
#endif
/* !ASSEMBLY */
...
...
include/asm-x86_64/topology.h
View file @
d6611edf
...
...
@@ -10,13 +10,15 @@
/* Map the K8 CPU local memory controllers to a simple 1:1 CPU:NODE topology */
extern
int
fake_node
;
/* This is actually a cpumask_t, but doesn't matter because we don't have
>BITS_PER_LONG CPUs */
extern
unsigned
long
cpu_online_map
;
#define cpu_to_node(cpu) (fake_node ? 0 : (cpu))
#define memblk_to_node(memblk) (fake_node ? 0 : (memblk))
#define parent_node(node) (node)
#define node_to_first_cpu(node) (fake_node ? 0 : (node))
#define node_to_cpu
_
mask(node) (fake_node ? cpu_online_map : (1UL << (node)))
#define node_to_cpumask(node) (fake_node ? cpu_online_map : (1UL << (node)))
#define node_to_memblk(node) (node)
static
inline
unsigned
long
pcibus_to_cpumask
(
int
bus
)
...
...
include/linux/sched.h
View file @
d6611edf
...
...
@@ -483,6 +483,7 @@ do { if (atomic_dec_and_test(&(tsk)->usage)) __put_task_struct(tsk); } while(0)
/* Not implemented yet, only for 486*/
#define PF_STARTING 0x00000002
/* being created */
#define PF_EXITING 0x00000004
/* getting shut down */
#define PF_DEAD 0x00000008
/* Dead */
#define PF_FORKNOEXEC 0x00000040
/* forked but didn't exec */
#define PF_SUPERPRIV 0x00000100
/* used super-user privileges */
#define PF_DUMPCORE 0x00000200
/* dumped core */
...
...
kernel/exit.c
View file @
d6611edf
...
...
@@ -688,6 +688,7 @@ static void exit_notify(struct task_struct *tsk)
}
tsk
->
state
=
TASK_ZOMBIE
;
tsk
->
flags
|=
PF_DEAD
;
/*
* In the preemption case it must be impossible for the task
* to get runnable again, so use "_raw_" unlock to keep
...
...
kernel/sched.c
View file @
d6611edf
...
...
@@ -742,7 +742,7 @@ static inline void finish_task_switch(task_t *prev)
{
runqueue_t
*
rq
=
this_rq
();
struct
mm_struct
*
mm
=
rq
->
prev_mm
;
int
drop_task_ref
;
unsigned
long
prev_task_flags
;
rq
->
prev_mm
=
NULL
;
...
...
@@ -757,14 +757,11 @@ static inline void finish_task_switch(task_t *prev)
* be dropped twice.
* Manfred Spraul <manfred@colorfullife.com>
*/
drop_task_ref
=
0
;
if
(
unlikely
(
prev
->
state
&
(
TASK_DEAD
|
TASK_ZOMBIE
)))
drop_task_ref
=
1
;
prev_task_flags
=
prev
->
flags
;
finish_arch_switch
(
rq
,
prev
);
if
(
mm
)
mmdrop
(
mm
);
if
(
drop_task_ref
)
if
(
unlikely
(
prev_task_flags
&
PF_DEAD
)
)
put_task_struct
(
prev
);
}
...
...
lib/div64.c
View file @
d6611edf
...
...
@@ -25,25 +25,34 @@
uint32_t
__div64_32
(
uint64_t
*
n
,
uint32_t
base
)
{
uint32_t
low
,
low2
,
high
,
rem
;
low
=
*
n
&
0xffffffff
;
high
=
*
n
>>
32
;
rem
=
high
%
(
uint32_t
)
base
;
high
=
high
/
(
uint32_t
)
base
;
low2
=
low
>>
16
;
low2
+=
rem
<<
16
;
rem
=
low2
%
(
uint32_t
)
base
;
low2
=
low2
/
(
uint32_t
)
base
;
low
=
low
&
0xffff
;
low
+=
rem
<<
16
;
rem
=
low
%
(
uint32_t
)
base
;
low
=
low
/
(
uint32_t
)
base
;
*
n
=
low
+
((
uint64_t
)
low2
<<
16
)
+
((
uint64_t
)
high
<<
32
);
uint64_t
rem
=
*
n
;
uint64_t
b
=
base
;
uint64_t
res
,
d
=
1
;
uint32_t
high
=
rem
>>
32
;
/* Reduce the thing a bit first */
res
=
0
;
if
(
high
>=
base
)
{
high
/=
base
;
res
=
(
uint64_t
)
high
<<
32
;
rem
-=
(
uint64_t
)
(
high
*
base
)
<<
32
;
}
while
((
int64_t
)
b
>
0
&&
b
<
rem
)
{
b
=
b
+
b
;
d
=
d
+
d
;
}
do
{
if
(
rem
>=
b
)
{
rem
-=
b
;
res
+=
d
;
}
b
>>=
1
;
d
>>=
1
;
}
while
(
d
);
*
n
=
res
;
return
rem
;
}
...
...
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