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
ce0025eb
Commit
ce0025eb
authored
Jun 07, 2004
by
Steve French
Browse files
Options
Browse Files
Download
Plain Diff
Merge
bk://linux.bkbits.net/linux-2.5
into hostme.bitkeeper.com:/repos/c/cifs/linux-2.5cifs
parents
d8c2ddb6
369a5360
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
41 additions
and
40 deletions
+41
-40
arch/ppc64/kernel/smp.c
arch/ppc64/kernel/smp.c
+3
-4
arch/ppc64/kernel/traps.c
arch/ppc64/kernel/traps.c
+13
-3
drivers/usb/core/devio.c
drivers/usb/core/devio.c
+1
-1
drivers/usb/media/Kconfig
drivers/usb/media/Kconfig
+1
-1
drivers/usb/media/pwc-if.c
drivers/usb/media/pwc-if.c
+1
-8
drivers/usb/serial/cyberjack.c
drivers/usb/serial/cyberjack.c
+6
-15
include/asm-ppc64/current.h
include/asm-ppc64/current.h
+1
-3
include/asm-ppc64/paca.h
include/asm-ppc64/paca.h
+3
-1
include/linux/netfilter_arp.h
include/linux/netfilter_arp.h
+0
-1
include/linux/tcp.h
include/linux/tcp.h
+6
-3
include/linux/usb.h
include/linux/usb.h
+1
-0
net/ipv4/netfilter/arp_tables.c
net/ipv4/netfilter/arp_tables.c
+2
-0
net/ipv4/tcp_diag.c
net/ipv4/tcp_diag.c
+3
-0
No files found.
arch/ppc64/kernel/smp.c
View file @
ce0025eb
...
@@ -390,8 +390,7 @@ static inline int __devinit smp_startup_cpu(unsigned int lcpu)
...
@@ -390,8 +390,7 @@ static inline int __devinit smp_startup_cpu(unsigned int lcpu)
}
}
/* Fixup atomic count: it exited inside IRQ handler. */
/* Fixup atomic count: it exited inside IRQ handler. */
((
struct
task_struct
*
)
paca
[
lcpu
].
xCurrent
)
->
thread_info
->
preempt_count
paca
[
lcpu
].
xCurrent
->
thread_info
->
preempt_count
=
0
;
=
0
;
/* Fixup SLB round-robin so next segment (kernel) goes in segment 0 */
/* Fixup SLB round-robin so next segment (kernel) goes in segment 0 */
paca
[
lcpu
].
xStab_data
.
next_round_robin
=
0
;
paca
[
lcpu
].
xStab_data
.
next_round_robin
=
0
;
...
@@ -817,7 +816,7 @@ static void __init smp_create_idle(unsigned int cpu)
...
@@ -817,7 +816,7 @@ static void __init smp_create_idle(unsigned int cpu)
init_idle
(
p
,
cpu
);
init_idle
(
p
,
cpu
);
unhash_process
(
p
);
unhash_process
(
p
);
paca
[
cpu
].
xCurrent
=
(
u64
)
p
;
paca
[
cpu
].
xCurrent
=
p
;
current_set
[
cpu
]
=
p
->
thread_info
;
current_set
[
cpu
]
=
p
->
thread_info
;
}
}
...
@@ -869,7 +868,7 @@ void __devinit smp_prepare_boot_cpu(void)
...
@@ -869,7 +868,7 @@ void __devinit smp_prepare_boot_cpu(void)
/* cpu_possible is set up in prom.c */
/* cpu_possible is set up in prom.c */
cpu_set
(
boot_cpuid
,
cpu_online_map
);
cpu_set
(
boot_cpuid
,
cpu_online_map
);
paca
[
boot_cpuid
].
xCurrent
=
(
u64
)
current
;
paca
[
boot_cpuid
].
xCurrent
=
current
;
current_set
[
boot_cpuid
]
=
current
->
thread_info
;
current_set
[
boot_cpuid
]
=
current
->
thread_info
;
}
}
...
...
arch/ppc64/kernel/traps.c
View file @
ce0025eb
...
@@ -466,6 +466,18 @@ SingleStepException(struct pt_regs *regs)
...
@@ -466,6 +466,18 @@ SingleStepException(struct pt_regs *regs)
_exception
(
SIGTRAP
,
&
info
,
regs
);
_exception
(
SIGTRAP
,
&
info
,
regs
);
}
}
/*
* After we have successfully emulated an instruction, we have to
* check if the instruction was being single-stepped, and if so,
* pretend we got a single-step exception. This was pointed out
* by Kumar Gala. -- paulus
*/
static
inline
void
emulate_single_step
(
struct
pt_regs
*
regs
)
{
if
(
regs
->
msr
&
MSR_SE
)
SingleStepException
(
regs
);
}
static
void
dummy_perf
(
struct
pt_regs
*
regs
)
static
void
dummy_perf
(
struct
pt_regs
*
regs
)
{
{
}
}
...
@@ -487,10 +499,8 @@ AlignmentException(struct pt_regs *regs)
...
@@ -487,10 +499,8 @@ AlignmentException(struct pt_regs *regs)
fixed
=
fix_alignment
(
regs
);
fixed
=
fix_alignment
(
regs
);
if
(
fixed
==
1
)
{
if
(
fixed
==
1
)
{
if
(
!
user_mode
(
regs
))
PPCDBG
(
PPCDBG_ALIGNFIXUP
,
"fix alignment at %lx
\n
"
,
regs
->
nip
);
regs
->
nip
+=
4
;
/* skip over emulated instruction */
regs
->
nip
+=
4
;
/* skip over emulated instruction */
emulate_single_step
(
regs
);
return
;
return
;
}
}
...
...
drivers/usb/core/devio.c
View file @
ce0025eb
...
@@ -719,7 +719,7 @@ static int proc_connectinfo(struct dev_state *ps, void __user *arg)
...
@@ -719,7 +719,7 @@ static int proc_connectinfo(struct dev_state *ps, void __user *arg)
static
int
proc_resetdevice
(
struct
dev_state
*
ps
)
static
int
proc_resetdevice
(
struct
dev_state
*
ps
)
{
{
return
usb_reset_device
(
ps
->
dev
);
return
__
usb_reset_device
(
ps
->
dev
);
}
}
...
...
drivers/usb/media/Kconfig
View file @
ce0025eb
...
@@ -108,7 +108,7 @@ config USB_OV511
...
@@ -108,7 +108,7 @@ config USB_OV511
config USB_PWC
config USB_PWC
tristate "USB Philips Cameras"
tristate "USB Philips Cameras"
depends on USB && VIDEO_DEV
&& BROKEN
depends on USB && VIDEO_DEV
---help---
---help---
Say Y or M here if you want to use one of these Philips & OEM
Say Y or M here if you want to use one of these Philips & OEM
webcams:
webcams:
...
...
drivers/usb/media/pwc-if.c
View file @
ce0025eb
...
@@ -129,7 +129,6 @@ static struct {
...
@@ -129,7 +129,6 @@ static struct {
static
int
pwc_video_open
(
struct
inode
*
inode
,
struct
file
*
file
);
static
int
pwc_video_open
(
struct
inode
*
inode
,
struct
file
*
file
);
static
int
pwc_video_close
(
struct
inode
*
inode
,
struct
file
*
file
);
static
int
pwc_video_close
(
struct
inode
*
inode
,
struct
file
*
file
);
static
int
pwc_video_release
(
struct
video_device
*
);
static
ssize_t
pwc_video_read
(
struct
file
*
file
,
char
*
buf
,
static
ssize_t
pwc_video_read
(
struct
file
*
file
,
char
*
buf
,
size_t
count
,
loff_t
*
ppos
);
size_t
count
,
loff_t
*
ppos
);
static
unsigned
int
pwc_video_poll
(
struct
file
*
file
,
poll_table
*
wait
);
static
unsigned
int
pwc_video_poll
(
struct
file
*
file
,
poll_table
*
wait
);
...
@@ -1121,12 +1120,6 @@ static int pwc_video_close(struct inode *inode, struct file *file)
...
@@ -1121,12 +1120,6 @@ static int pwc_video_close(struct inode *inode, struct file *file)
return
0
;
return
0
;
}
}
static
int
pwc_video_release
(
struct
video_device
*
vfd
)
{
Trace
(
TRACE_OPEN
,
"pwc_video_release() called. Now what?
\n
"
);
}
/*
/*
* FIXME: what about two parallel reads ????
* FIXME: what about two parallel reads ????
* ANSWER: Not supported. You can't open the device more than once,
* ANSWER: Not supported. You can't open the device more than once,
...
@@ -1855,7 +1848,7 @@ static int usb_pwc_probe(struct usb_interface *intf, const struct usb_device_id
...
@@ -1855,7 +1848,7 @@ static int usb_pwc_probe(struct usb_interface *intf, const struct usb_device_id
}
}
}
}
pdev
->
vdev
.
release
=
pwc_video
_release
;
pdev
->
vdev
.
release
=
video_device
_release
;
i
=
video_register_device
(
&
pdev
->
vdev
,
VFL_TYPE_GRABBER
,
video_nr
);
i
=
video_register_device
(
&
pdev
->
vdev
,
VFL_TYPE_GRABBER
,
video_nr
);
if
(
i
<
0
)
{
if
(
i
<
0
)
{
Err
(
"Failed to register as video device (%d).
\n
"
,
i
);
Err
(
"Failed to register as video device (%d).
\n
"
,
i
);
...
...
drivers/usb/serial/cyberjack.c
View file @
ce0025eb
...
@@ -109,7 +109,7 @@ struct cyberjack_private {
...
@@ -109,7 +109,7 @@ struct cyberjack_private {
short
rdtodo
;
/* Bytes still to read */
short
rdtodo
;
/* Bytes still to read */
unsigned
char
wrbuf
[
5
*
64
];
/* Buffer for collecting data to write */
unsigned
char
wrbuf
[
5
*
64
];
/* Buffer for collecting data to write */
short
wrfilled
;
/* Overall data size we already got */
short
wrfilled
;
/* Overall data size we already got */
short
wrsent
;
/* Data a
k
ready sent */
short
wrsent
;
/* Data a
l
ready sent */
};
};
/* do some startup allocations not currently performed by usb_serial_probe() */
/* do some startup allocations not currently performed by usb_serial_probe() */
...
@@ -159,8 +159,6 @@ static int cyberjack_open (struct usb_serial_port *port, struct file *filp)
...
@@ -159,8 +159,6 @@ static int cyberjack_open (struct usb_serial_port *port, struct file *filp)
dbg
(
"%s - usb_clear_halt"
,
__FUNCTION__
);
dbg
(
"%s - usb_clear_halt"
,
__FUNCTION__
);
usb_clear_halt
(
port
->
serial
->
dev
,
port
->
write_urb
->
pipe
);
usb_clear_halt
(
port
->
serial
->
dev
,
port
->
write_urb
->
pipe
);
usb_clear_halt
(
port
->
serial
->
dev
,
port
->
read_urb
->
pipe
);
usb_clear_halt
(
port
->
serial
->
dev
,
port
->
interrupt_in_urb
->
pipe
);
/* force low_latency on so that our tty_push actually forces
/* force low_latency on so that our tty_push actually forces
* the data through, otherwise it is scheduled, and with high
* the data through, otherwise it is scheduled, and with high
...
@@ -212,7 +210,6 @@ static int cyberjack_write (struct usb_serial_port *port, int from_user, const u
...
@@ -212,7 +210,6 @@ static int cyberjack_write (struct usb_serial_port *port, int from_user, const u
unsigned
long
flags
;
unsigned
long
flags
;
int
result
;
int
result
;
int
wrexpected
;
int
wrexpected
;
unsigned
char
localbuf
[
CYBERJACK_LOCAL_BUF_SIZE
];
/* Buffer for collecting data to write */
dbg
(
"%s - port %d"
,
__FUNCTION__
,
port
->
number
);
dbg
(
"%s - port %d"
,
__FUNCTION__
,
port
->
number
);
dbg
(
"%s - from_user %d"
,
__FUNCTION__
,
from_user
);
dbg
(
"%s - from_user %d"
,
__FUNCTION__
,
from_user
);
...
@@ -229,29 +226,23 @@ static int cyberjack_write (struct usb_serial_port *port, int from_user, const u
...
@@ -229,29 +226,23 @@ static int cyberjack_write (struct usb_serial_port *port, int from_user, const u
spin_lock_irqsave
(
&
priv
->
lock
,
flags
);
spin_lock_irqsave
(
&
priv
->
lock
,
flags
);
if
(
(
count
+
priv
->
wrfilled
)
>
sizeof
(
priv
->
wrbuf
)
||
if
(
(
count
+
priv
->
wrfilled
)
>
sizeof
(
priv
->
wrbuf
)
)
{
(
count
>
sizeof
(
localbuf
))
)
{
/* To much data for buffer. Reset buffer. */
/* To much data for buffer. Reset buffer. */
priv
->
wrfilled
=
0
;
priv
->
wrfilled
=
0
;
spin_unlock_irqrestore
(
&
priv
->
lock
,
flags
);
spin_unlock_irqrestore
(
&
priv
->
lock
,
flags
);
return
(
0
);
return
(
0
);
}
}
spin_unlock_irqrestore
(
&
priv
->
lock
,
flags
);
/* Copy data */
/* Copy data */
if
(
from_user
)
{
if
(
from_user
)
{
if
(
copy_from_user
(
localbuf
,
buf
,
count
))
{
if
(
copy_from_user
(
priv
->
wrbuf
+
priv
->
wrfilled
,
buf
,
count
))
{
spin_unlock_irqrestore
(
&
priv
->
lock
,
flags
);
return
-
EFAULT
;
return
-
EFAULT
;
}
}
}
else
{
}
else
{
memcpy
(
localbuf
,
buf
,
count
);
memcpy
(
priv
->
wrbuf
+
priv
->
wrfilled
,
buf
,
count
);
}
}
spin_lock_irqsave
(
&
priv
->
lock
,
flags
);
memcpy
(
priv
->
wrbuf
+
priv
->
wrfilled
,
localbuf
,
count
);
usb_serial_debug_data
(
__FILE__
,
__FUNCTION__
,
count
,
usb_serial_debug_data
(
__FILE__
,
__FUNCTION__
,
count
,
priv
->
wrbuf
+
priv
->
wrfilled
);
priv
->
wrbuf
+
priv
->
wrfilled
);
priv
->
wrfilled
+=
count
;
priv
->
wrfilled
+=
count
;
...
...
include/asm-ppc64/current.h
View file @
ce0025eb
...
@@ -8,13 +8,11 @@
...
@@ -8,13 +8,11 @@
* modify it under the terms of the GNU General Public License
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version
* as published by the Free Software Foundation; either version
* 2 of the License, or (at your option) any later version.
* 2 of the License, or (at your option) any later version.
*
* Use r13 for current since the ppc64 ABI reserves it - Anton
*/
*/
#include <asm/thread_info.h>
#include <asm/thread_info.h>
#define get_current() (
(struct task_struct *)(get_paca()->xCurrent)
)
#define get_current() (
get_paca()->xCurrent
)
#define current get_current()
#define current get_current()
#endif
/* !(_PPC64_CURRENT_H) */
#endif
/* !(_PPC64_CURRENT_H) */
include/asm-ppc64/paca.h
View file @
ce0025eb
...
@@ -37,6 +37,8 @@ extern struct paca_struct paca[];
...
@@ -37,6 +37,8 @@ extern struct paca_struct paca[];
register
struct
paca_struct
*
local_paca
asm
(
"r13"
);
register
struct
paca_struct
*
local_paca
asm
(
"r13"
);
#define get_paca() local_paca
#define get_paca() local_paca
struct
task_struct
;
/*============================================================================
/*============================================================================
* Name_______: paca
* Name_______: paca
*
*
...
@@ -59,7 +61,7 @@ struct paca_struct {
...
@@ -59,7 +61,7 @@ struct paca_struct {
*/
*/
struct
ItLpPaca
*
xLpPacaPtr
;
/* Pointer to LpPaca for PLIC 0x00 */
struct
ItLpPaca
*
xLpPacaPtr
;
/* Pointer to LpPaca for PLIC 0x00 */
struct
ItLpRegSave
*
xLpRegSavePtr
;
/* Pointer to LpRegSave for PLIC 0x08 */
struct
ItLpRegSave
*
xLpRegSavePtr
;
/* Pointer to LpRegSave for PLIC 0x08 */
u64
xCurrent
;
/* Pointer to current 0x10 */
struct
task_struct
*
xCurrent
;
/* Pointer to current 0x10 */
/* Note: the spinlock functions in arch/ppc64/lib/locks.c load lock_token and
/* Note: the spinlock functions in arch/ppc64/lib/locks.c load lock_token and
xPacaIndex with a single lwz instruction, using the constant offset 24.
xPacaIndex with a single lwz instruction, using the constant offset 24.
If you move either field, fix the spinlocks and rwlocks. */
If you move either field, fix the spinlocks and rwlocks. */
...
...
include/linux/netfilter_arp.h
View file @
ce0025eb
...
@@ -17,5 +17,4 @@
...
@@ -17,5 +17,4 @@
#define NF_ARP_FORWARD 2
#define NF_ARP_FORWARD 2
#define NF_ARP_NUMHOOKS 3
#define NF_ARP_NUMHOOKS 3
static
DECLARE_MUTEX
(
arpt_mutex
);
#endif
/* __LINUX_ARP_NETFILTER_H */
#endif
/* __LINUX_ARP_NETFILTER_H */
include/linux/tcp.h
View file @
ce0025eb
...
@@ -183,6 +183,9 @@ struct tcp_info
...
@@ -183,6 +183,9 @@ struct tcp_info
__u32
tcpi_snd_cwnd
;
__u32
tcpi_snd_cwnd
;
__u32
tcpi_advmss
;
__u32
tcpi_advmss
;
__u32
tcpi_reordering
;
__u32
tcpi_reordering
;
__u32
tcpi_rcv_rtt
;
__u32
tcpi_rcv_space
;
};
};
#ifdef __KERNEL__
#ifdef __KERNEL__
...
@@ -351,11 +354,11 @@ struct tcp_opt {
...
@@ -351,11 +354,11 @@ struct tcp_opt {
__u8
urg_mode
;
/* In urgent mode */
__u8
urg_mode
;
/* In urgent mode */
__u32
snd_up
;
/* Urgent pointer */
__u32
snd_up
;
/* Urgent pointer */
/* The syn_wait_lock is necessary only to avoid
tcp_get_info
having
/* The syn_wait_lock is necessary only to avoid
proc interface
having
* to grab the main lock sock while browsing the listening hash
* to grab the main lock sock while browsing the listening hash
* (otherwise it's deadlock prone).
* (otherwise it's deadlock prone).
* This lock is acquired in read mode only from
tcp_get_info() and
* This lock is acquired in read mode only from
listening_get_next()
* it's acquired in write mode _only_ from code that is actively
*
and
it's acquired in write mode _only_ from code that is actively
* changing the syn_wait_queue. All readers that are holding
* changing the syn_wait_queue. All readers that are holding
* the master sock lock don't need to grab this lock in read mode
* the master sock lock don't need to grab this lock in read mode
* too as the syn_wait_queue writes are always protected from
* too as the syn_wait_queue writes are always protected from
...
...
include/linux/usb.h
View file @
ce0025eb
...
@@ -334,6 +334,7 @@ extern void usb_put_dev(struct usb_device *dev);
...
@@ -334,6 +334,7 @@ extern void usb_put_dev(struct usb_device *dev);
/* mostly for devices emulating SCSI over USB */
/* mostly for devices emulating SCSI over USB */
extern
int
usb_reset_device
(
struct
usb_device
*
dev
);
extern
int
usb_reset_device
(
struct
usb_device
*
dev
);
extern
int
__usb_reset_device
(
struct
usb_device
*
dev
);
extern
struct
usb_device
*
usb_find_device
(
u16
vendor_id
,
u16
product_id
);
extern
struct
usb_device
*
usb_find_device
(
u16
vendor_id
,
u16
product_id
);
...
...
net/ipv4/netfilter/arp_tables.c
View file @
ce0025eb
...
@@ -62,6 +62,8 @@ do { \
...
@@ -62,6 +62,8 @@ do { \
#include <linux/netfilter_ipv4/lockhelp.h>
#include <linux/netfilter_ipv4/lockhelp.h>
#include <linux/netfilter_ipv4/listhelp.h>
#include <linux/netfilter_ipv4/listhelp.h>
static
DECLARE_MUTEX
(
arpt_mutex
);
struct
arpt_table_info
{
struct
arpt_table_info
{
unsigned
int
size
;
unsigned
int
size
;
unsigned
int
number
;
unsigned
int
number
;
...
...
net/ipv4/tcp_diag.c
View file @
ce0025eb
...
@@ -91,6 +91,9 @@ void tcp_get_info(struct sock *sk, struct tcp_info *info)
...
@@ -91,6 +91,9 @@ void tcp_get_info(struct sock *sk, struct tcp_info *info)
info
->
tcpi_snd_cwnd
=
tp
->
snd_cwnd
;
info
->
tcpi_snd_cwnd
=
tp
->
snd_cwnd
;
info
->
tcpi_advmss
=
tp
->
advmss
;
info
->
tcpi_advmss
=
tp
->
advmss
;
info
->
tcpi_reordering
=
tp
->
reordering
;
info
->
tcpi_reordering
=
tp
->
reordering
;
info
->
tcpi_rcv_rtt
=
((
1000000
*
tp
->
rcv_rtt_est
.
rtt
)
/
HZ
)
>>
3
;
info
->
tcpi_rcv_space
=
tp
->
rcvq_space
.
space
;
}
}
static
int
tcpdiag_fill
(
struct
sk_buff
*
skb
,
struct
sock
*
sk
,
static
int
tcpdiag_fill
(
struct
sk_buff
*
skb
,
struct
sock
*
sk
,
...
...
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