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
Kirill Smelkov
linux
Commits
e3baeb15
Commit
e3baeb15
authored
Dec 01, 2002
by
David S. Miller
Browse files
Options
Browse Files
Download
Plain Diff
Merge nuts.ninka.net:/home/davem/src/BK/sparcwork-2.5
into nuts.ninka.net:/home/davem/src/BK/sparc-2.5
parents
114d2a8e
b122831b
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
12 additions
and
5 deletions
+12
-5
arch/sparc64/kernel/sys_sparc32.c
arch/sparc64/kernel/sys_sparc32.c
+2
-1
drivers/serial/sunzilog.c
drivers/serial/sunzilog.c
+3
-2
fs/xfs/support/move.c
fs/xfs/support/move.c
+1
-0
include/asm-sparc/irq.h
include/asm-sparc/irq.h
+1
-1
include/asm-sparc64/irq.h
include/asm-sparc64/irq.h
+1
-1
sound/core/ioctl32/ioctl32.c
sound/core/ioctl32/ioctl32.c
+1
-0
sound/core/ioctl32/rawmidi32.c
sound/core/ioctl32/rawmidi32.c
+1
-0
sound/core/ioctl32/seq32.c
sound/core/ioctl32/seq32.c
+1
-0
sound/core/ioctl32/timer32.c
sound/core/ioctl32/timer32.c
+1
-0
No files found.
arch/sparc64/kernel/sys_sparc32.c
View file @
e3baeb15
...
@@ -51,6 +51,7 @@
...
@@ -51,6 +51,7 @@
#include <linux/sysctl.h>
#include <linux/sysctl.h>
#include <linux/binfmts.h>
#include <linux/binfmts.h>
#include <linux/dnotify.h>
#include <linux/dnotify.h>
#include <linux/security.h>
#include <asm/types.h>
#include <asm/types.h>
#include <asm/ipc.h>
#include <asm/ipc.h>
...
@@ -1096,7 +1097,7 @@ static long do_readv_writev32(int type, struct file *file,
...
@@ -1096,7 +1097,7 @@ static long do_readv_writev32(int type, struct file *file,
/* VERIFY_WRITE actually means a read, as we write to user space */
/* VERIFY_WRITE actually means a read, as we write to user space */
if
((
retval
+
(
type
==
VERIFY_WRITE
))
>
0
)
if
((
retval
+
(
type
==
VERIFY_WRITE
))
>
0
)
dnotify_parent
(
file
->
f_dentry
,
dnotify_parent
(
file
->
f_dentry
,
(
type
==
VERIFY_WRITE
)
?
DN_
MODIFY
:
DN_ACCESS
);
(
type
==
VERIFY_WRITE
)
?
DN_
ACCESS
:
DN_MODIFY
);
return
retval
;
return
retval
;
}
}
...
...
drivers/serial/sunzilog.c
View file @
e3baeb15
...
@@ -1586,8 +1586,9 @@ static void __init sunzilog_init_hw(void)
...
@@ -1586,8 +1586,9 @@ static void __init sunzilog_init_hw(void)
}
else
{
}
else
{
/* Normal serial TTY. */
/* Normal serial TTY. */
up
->
parity_mask
=
0xff
;
up
->
parity_mask
=
0xff
;
up
->
curregs
[
R3
]
=
RxENAB
;
up
->
curregs
[
R4
]
=
PAR_EVEN
|
X16CLK
|
SB1
;
up
->
curregs
[
R5
]
=
TxENAB
;
up
->
curregs
[
R3
]
=
RxENAB
|
Rx8
;
up
->
curregs
[
R5
]
=
TxENAB
|
Tx8
;
up
->
curregs
[
R9
]
=
NV
|
MIE
;
up
->
curregs
[
R9
]
=
NV
|
MIE
;
up
->
curregs
[
R10
]
=
NRZ
;
up
->
curregs
[
R10
]
=
NRZ
;
up
->
curregs
[
R11
]
=
TCBR
|
RCBR
;
up
->
curregs
[
R11
]
=
TCBR
|
RCBR
;
...
...
fs/xfs/support/move.c
View file @
e3baeb15
...
@@ -30,6 +30,7 @@
...
@@ -30,6 +30,7 @@
* http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
* http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
*/
*/
#include <linux/errno.h>
#include <asm/uaccess.h>
#include <asm/uaccess.h>
#include <xfs_types.h>
#include <xfs_types.h>
...
...
include/asm-sparc/irq.h
View file @
e3baeb15
...
@@ -19,7 +19,7 @@
...
@@ -19,7 +19,7 @@
BTFIXUPDEF_CALL
(
char
*
,
__irq_itoa
,
unsigned
int
)
BTFIXUPDEF_CALL
(
char
*
,
__irq_itoa
,
unsigned
int
)
#define __irq_itoa(irq) BTFIXUP_CALL(__irq_itoa)(irq)
#define __irq_itoa(irq) BTFIXUP_CALL(__irq_itoa)(irq)
#define NR_IRQS 1
5
#define NR_IRQS 1
6
#define irq_cannonicalize(irq) (irq)
#define irq_cannonicalize(irq) (irq)
...
...
include/asm-sparc64/irq.h
View file @
e3baeb15
...
@@ -110,7 +110,7 @@ static __inline__ char *__irq_itoa(unsigned int irq)
...
@@ -110,7 +110,7 @@ static __inline__ char *__irq_itoa(unsigned int irq)
return
buff
;
return
buff
;
}
}
#define NR_IRQS 1
5
#define NR_IRQS 1
6
#define irq_cannonicalize(irq) (irq)
#define irq_cannonicalize(irq) (irq)
extern
void
disable_irq
(
unsigned
int
);
extern
void
disable_irq
(
unsigned
int
);
...
...
sound/core/ioctl32/ioctl32.c
View file @
e3baeb15
...
@@ -24,6 +24,7 @@
...
@@ -24,6 +24,7 @@
#include <linux/init.h>
#include <linux/init.h>
#include <linux/time.h>
#include <linux/time.h>
#include <linux/slab.h>
#include <linux/slab.h>
#include <linux/fs.h>
#include <linux/init.h>
#include <linux/init.h>
#include <sound/core.h>
#include <sound/core.h>
#include <sound/control.h>
#include <sound/control.h>
...
...
sound/core/ioctl32/rawmidi32.c
View file @
e3baeb15
...
@@ -20,6 +20,7 @@
...
@@ -20,6 +20,7 @@
#include <sound/driver.h>
#include <sound/driver.h>
#include <linux/time.h>
#include <linux/time.h>
#include <linux/fs.h>
#include <sound/core.h>
#include <sound/core.h>
#include <sound/rawmidi.h>
#include <sound/rawmidi.h>
#include <asm/uaccess.h>
#include <asm/uaccess.h>
...
...
sound/core/ioctl32/seq32.c
View file @
e3baeb15
...
@@ -20,6 +20,7 @@
...
@@ -20,6 +20,7 @@
#include <sound/driver.h>
#include <sound/driver.h>
#include <linux/time.h>
#include <linux/time.h>
#include <linux/fs.h>
#include <sound/core.h>
#include <sound/core.h>
#include <sound/timer.h>
#include <sound/timer.h>
#include <asm/uaccess.h>
#include <asm/uaccess.h>
...
...
sound/core/ioctl32/timer32.c
View file @
e3baeb15
...
@@ -20,6 +20,7 @@
...
@@ -20,6 +20,7 @@
#include <sound/driver.h>
#include <sound/driver.h>
#include <linux/time.h>
#include <linux/time.h>
#include <linux/fs.h>
#include <sound/core.h>
#include <sound/core.h>
#include <sound/timer.h>
#include <sound/timer.h>
#include <asm/uaccess.h>
#include <asm/uaccess.h>
...
...
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