Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
d78fef14
R
raspberrypi-kernel
项目概览
openeuler
/
raspberrypi-kernel
通知
13
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
raspberrypi-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
d78fef14
编写于
1月 03, 2006
作者:
L
Len Brown
浏览文件
操作
浏览文件
下载
差异文件
Pull linus into release branch
上级
04348e69
88026842
变更
12
隐藏空白更改
内联
并排
Showing
12 changed file
with
57 addition
and
51 deletion
+57
-51
Makefile
Makefile
+1
-1
arch/i386/kernel/process.c
arch/i386/kernel/process.c
+3
-1
drivers/input/joystick/warrior.c
drivers/input/joystick/warrior.c
+1
-1
drivers/macintosh/therm_pm72.c
drivers/macintosh/therm_pm72.c
+3
-3
drivers/serial/pxa.c
drivers/serial/pxa.c
+2
-2
drivers/usb/input/kbtab.c
drivers/usb/input/kbtab.c
+1
-1
drivers/usb/input/wacom.c
drivers/usb/input/wacom.c
+1
-1
fs/proc/generic.c
fs/proc/generic.c
+23
-24
include/asm-i386/param.h
include/asm-i386/param.h
+1
-2
include/asm-x86_64/param.h
include/asm-x86_64/param.h
+1
-2
kernel/sysctl.c
kernel/sysctl.c
+16
-13
mm/mempolicy.c
mm/mempolicy.c
+4
-0
未找到文件。
Makefile
浏览文件 @
d78fef14
VERSION
=
2
PATCHLEVEL
=
6
SUBLEVEL
=
15
EXTRAVERSION
=
-rc7
EXTRAVERSION
=
NAME
=
Sliding Snow Leopard
# *DOCUMENTATION*
...
...
arch/i386/kernel/process.c
浏览文件 @
d78fef14
...
...
@@ -554,7 +554,9 @@ int dump_task_regs(struct task_struct *tsk, elf_gregset_t *regs)
struct
pt_regs
ptregs
;
ptregs
=
*
(
struct
pt_regs
*
)
((
unsigned
long
)
tsk
->
thread_info
+
THREAD_SIZE
-
sizeof
(
ptregs
));
((
unsigned
long
)
tsk
->
thread_info
+
/* see comments in copy_thread() about -8 */
THREAD_SIZE
-
sizeof
(
ptregs
)
-
8
);
ptregs
.
xcs
&=
0xffff
;
ptregs
.
xds
&=
0xffff
;
ptregs
.
xes
&=
0xffff
;
...
...
drivers/input/joystick/warrior.c
浏览文件 @
d78fef14
...
...
@@ -172,7 +172,7 @@ static int warrior_connect(struct serio *serio, struct serio_driver *drv)
input_set_abs_params
(
input_dev
,
ABS_Y
,
-
64
,
64
,
0
,
8
);
input_set_abs_params
(
input_dev
,
ABS_THROTTLE
,
-
112
,
112
,
0
,
0
);
input_set_abs_params
(
input_dev
,
ABS_HAT0X
,
-
1
,
1
,
0
,
0
);
input_set_abs_params
(
input_dev
,
ABS_HAT0
X
,
-
1
,
1
,
0
,
0
);
input_set_abs_params
(
input_dev
,
ABS_HAT0
Y
,
-
1
,
1
,
0
,
0
);
serio_set_drvdata
(
serio
,
warrior
);
...
...
drivers/macintosh/therm_pm72.c
浏览文件 @
d78fef14
...
...
@@ -923,7 +923,7 @@ static void do_monitor_cpu_combined(void)
if
(
temp_combi
>=
((
state0
->
mpu
.
tmax
+
8
)
<<
16
))
{
printk
(
KERN_WARNING
"Warning ! Temperature way above maximum (%d) !
\n
"
,
temp_combi
>>
16
);
state0
->
overtemp
=
CPU_MAX_OVERTEMP
;
state0
->
overtemp
+=
CPU_MAX_OVERTEMP
/
4
;
}
else
if
(
temp_combi
>
(
state0
->
mpu
.
tmax
<<
16
))
state0
->
overtemp
++
;
else
...
...
@@ -998,7 +998,7 @@ static void do_monitor_cpu_split(struct cpu_pid_state *state)
printk
(
KERN_WARNING
"Warning ! CPU %d temperature way above maximum"
" (%d) !
\n
"
,
state
->
index
,
temp
>>
16
);
state
->
overtemp
=
CPU_MAX_OVERTEMP
;
state
->
overtemp
+=
CPU_MAX_OVERTEMP
/
4
;
}
else
if
(
temp
>
(
state
->
mpu
.
tmax
<<
16
))
state
->
overtemp
++
;
else
...
...
@@ -1060,7 +1060,7 @@ static void do_monitor_cpu_rack(struct cpu_pid_state *state)
printk
(
KERN_WARNING
"Warning ! CPU %d temperature way above maximum"
" (%d) !
\n
"
,
state
->
index
,
temp
>>
16
);
state
->
overtemp
=
CPU_MAX_OVERTEMP
;
state
->
overtemp
=
CPU_MAX_OVERTEMP
/
4
;
}
else
if
(
temp
>
(
state
->
mpu
.
tmax
<<
16
))
state
->
overtemp
++
;
else
...
...
drivers/serial/pxa.c
浏览文件 @
d78fef14
...
...
@@ -361,7 +361,7 @@ static int serial_pxa_startup(struct uart_port *port)
if
(
port
->
line
==
3
)
/* HWUART */
up
->
mcr
|=
UART_MCR_AFE
;
else
up
->
mcr
=
0
;
up
->
mcr
=
0
;
/*
* Allocate the IRQ
...
...
@@ -641,7 +641,7 @@ serial_pxa_console_write(struct console *co, const char *s, unsigned int count)
int
i
;
/*
* First save the
U
ER then disable the interrupts
* First save the
I
ER then disable the interrupts
*/
ier
=
serial_in
(
up
,
UART_IER
);
serial_out
(
up
,
UART_IER
,
UART_IER_UUE
);
...
...
drivers/usb/input/kbtab.c
浏览文件 @
d78fef14
...
...
@@ -159,7 +159,7 @@ static int kbtab_probe(struct usb_interface *intf, const struct usb_device_id *i
input_dev
->
keybit
[
LONG
(
BTN_DIGI
)]
|=
BIT
(
BTN_TOOL_PEN
)
|
BIT
(
BTN_TOUCH
);
input_dev
->
mscbit
[
0
]
|=
BIT
(
MSC_SERIAL
);
input_set_abs_params
(
input_dev
,
ABS_X
,
0
,
0x2000
,
4
,
0
);
input_set_abs_params
(
input_dev
,
ABS_
X
,
0
,
0x1750
,
4
,
0
);
input_set_abs_params
(
input_dev
,
ABS_
Y
,
0
,
0x1750
,
4
,
0
);
input_set_abs_params
(
input_dev
,
ABS_PRESSURE
,
0
,
0xff
,
0
,
0
);
endpoint
=
&
intf
->
cur_altsetting
->
endpoint
[
0
].
desc
;
...
...
drivers/usb/input/wacom.c
浏览文件 @
d78fef14
...
...
@@ -854,7 +854,7 @@ static int wacom_probe(struct usb_interface *intf, const struct usb_device_id *i
input_dev
->
evbit
[
0
]
|=
BIT
(
EV_KEY
)
|
BIT
(
EV_ABS
);
input_dev
->
keybit
[
LONG
(
BTN_DIGI
)]
|=
BIT
(
BTN_TOOL_PEN
)
|
BIT
(
BTN_TOUCH
)
|
BIT
(
BTN_STYLUS
);
input_set_abs_params
(
input_dev
,
ABS_X
,
0
,
wacom
->
features
->
y
_max
,
4
,
0
);
input_set_abs_params
(
input_dev
,
ABS_X
,
0
,
wacom
->
features
->
x
_max
,
4
,
0
);
input_set_abs_params
(
input_dev
,
ABS_Y
,
0
,
wacom
->
features
->
y_max
,
4
,
0
);
input_set_abs_params
(
input_dev
,
ABS_PRESSURE
,
0
,
wacom
->
features
->
pressure_max
,
0
,
0
);
...
...
fs/proc/generic.c
浏览文件 @
d78fef14
...
...
@@ -54,6 +54,18 @@ proc_file_read(struct file *file, char __user *buf, size_t nbytes,
ssize_t
n
,
count
;
char
*
start
;
struct
proc_dir_entry
*
dp
;
unsigned
long
long
pos
;
/*
* Gaah, please just use "seq_file" instead. The legacy /proc
* interfaces cut loff_t down to off_t for reads, and ignore
* the offset entirely for writes..
*/
pos
=
*
ppos
;
if
(
pos
>
MAX_NON_LFS
)
return
0
;
if
(
nbytes
>
MAX_NON_LFS
-
pos
)
nbytes
=
MAX_NON_LFS
-
pos
;
dp
=
PDE
(
inode
);
if
(
!
(
page
=
(
char
*
)
__get_free_page
(
GFP_KERNEL
)))
...
...
@@ -202,30 +214,17 @@ proc_file_write(struct file *file, const char __user *buffer,
static
loff_t
proc_file_lseek
(
struct
file
*
file
,
loff_t
offset
,
int
orig
)
{
lock_kernel
();
switch
(
orig
)
{
case
0
:
if
(
offset
<
0
)
goto
out
;
file
->
f_pos
=
offset
;
unlock_kernel
();
return
(
file
->
f_pos
);
case
1
:
if
(
offset
+
file
->
f_pos
<
0
)
goto
out
;
file
->
f_pos
+=
offset
;
unlock_kernel
();
return
(
file
->
f_pos
);
case
2
:
goto
out
;
default:
goto
out
;
}
out:
unlock_kernel
();
return
-
EINVAL
;
loff_t
retval
=
-
EINVAL
;
switch
(
orig
)
{
case
1
:
offset
+=
file
->
f_pos
;
/* fallthrough */
case
0
:
if
(
offset
<
0
||
offset
>
MAX_NON_LFS
)
break
;
file
->
f_pos
=
retval
=
offset
;
}
return
retval
;
}
static
int
proc_notify_change
(
struct
dentry
*
dentry
,
struct
iattr
*
iattr
)
...
...
include/asm-i386/param.h
浏览文件 @
d78fef14
#include <linux/config.h>
#ifndef _ASMi386_PARAM_H
#define _ASMi386_PARAM_H
#ifdef __KERNEL__
# include <linux/config.h>
# define HZ CONFIG_HZ
/* Internal kernel timer frequency */
# define USER_HZ 100
/* .. some user interfaces are in "ticks" */
# define CLOCKS_PER_SEC (USER_HZ)
/* like times() */
...
...
include/asm-x86_64/param.h
浏览文件 @
d78fef14
#include <linux/config.h>
#ifndef _ASMx86_64_PARAM_H
#define _ASMx86_64_PARAM_H
#ifdef __KERNEL__
# include <linux/config.h>
# define HZ CONFIG_HZ
/* Internal kernel timer frequency */
# define USER_HZ 100
/* .. some user interfaces are in "ticks */
#define CLOCKS_PER_SEC (USER_HZ)
/* like times() */
...
...
kernel/sysctl.c
浏览文件 @
d78fef14
...
...
@@ -2192,29 +2192,32 @@ int sysctl_string(ctl_table *table, int __user *name, int nlen,
void
__user
*
oldval
,
size_t
__user
*
oldlenp
,
void
__user
*
newval
,
size_t
newlen
,
void
**
context
)
{
size_t
l
,
len
;
if
(
!
table
->
data
||
!
table
->
maxlen
)
return
-
ENOTDIR
;
if
(
oldval
&&
oldlenp
)
{
if
(
get_user
(
len
,
oldlenp
))
size_t
bufsize
;
if
(
get_user
(
bufsize
,
oldlenp
))
return
-
EFAULT
;
if
(
len
)
{
l
=
strlen
(
table
->
data
);
if
(
len
>
l
)
len
=
l
;
if
(
len
>=
table
->
maxlen
)
if
(
bufsize
)
{
size_t
len
=
strlen
(
table
->
data
),
copied
;
/* This shouldn't trigger for a well-formed sysctl */
if
(
len
>
table
->
maxlen
)
len
=
table
->
maxlen
;
if
(
copy_to_user
(
oldval
,
table
->
data
,
len
))
return
-
EFAULT
;
if
(
put_user
(
0
,
((
char
__user
*
)
oldval
)
+
len
))
/* Copy up to a max of bufsize-1 bytes of the string */
copied
=
(
len
>=
bufsize
)
?
bufsize
-
1
:
len
;
if
(
copy_to_user
(
oldval
,
table
->
data
,
copied
)
||
put_user
(
0
,
(
char
__user
*
)(
oldval
+
copied
)))
return
-
EFAULT
;
if
(
put_user
(
len
,
oldlenp
))
if
(
put_user
(
len
,
oldlenp
))
return
-
EFAULT
;
}
}
if
(
newval
&&
newlen
)
{
len
=
newlen
;
size_t
len
=
newlen
;
if
(
len
>
table
->
maxlen
)
len
=
table
->
maxlen
;
if
(
copy_from_user
(
table
->
data
,
newval
,
len
))
...
...
@@ -2223,7 +2226,7 @@ int sysctl_string(ctl_table *table, int __user *name, int nlen,
len
--
;
((
char
*
)
table
->
data
)[
len
]
=
0
;
}
return
0
;
return
1
;
}
/*
...
...
mm/mempolicy.c
浏览文件 @
d78fef14
...
...
@@ -161,6 +161,10 @@ static struct mempolicy *mpol_new(int mode, nodemask_t *nodes)
switch
(
mode
)
{
case
MPOL_INTERLEAVE
:
policy
->
v
.
nodes
=
*
nodes
;
if
(
nodes_weight
(
*
nodes
)
==
0
)
{
kmem_cache_free
(
policy_cache
,
policy
);
return
ERR_PTR
(
-
EINVAL
);
}
break
;
case
MPOL_PREFERRED
:
policy
->
v
.
preferred_node
=
first_node
(
*
nodes
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录