Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
1592dac2
Commit
1592dac2
authored
Mar 17, 2005
by
Ralf Baechle
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reformatting, remove debugging code.
Signed-off-by:
Ralf Baechle
<
ralf@linux-mips.org
>
parent
b4dbf95e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
32 additions
and
39 deletions
+32
-39
arch/mips/kernel/irixioctl.c
arch/mips/kernel/irixioctl.c
+26
-37
include/asm-mips/inventory.h
include/asm-mips/inventory.h
+6
-2
No files found.
arch/mips/kernel/irixioctl.c
View file @
1592dac2
...
@@ -59,7 +59,7 @@ asmlinkage int irix_ioctl(int fd, unsigned long cmd, unsigned long arg)
...
@@ -59,7 +59,7 @@ asmlinkage int irix_ioctl(int fd, unsigned long cmd, unsigned long arg)
{
{
struct
tty_struct
*
tp
,
*
rtp
;
struct
tty_struct
*
tp
,
*
rtp
;
mm_segment_t
old_fs
;
mm_segment_t
old_fs
;
int
error
=
0
;
int
i
,
error
=
0
;
#ifdef DEBUG_IOCTLS
#ifdef DEBUG_IOCTLS
printk
(
"[%s:%d] irix_ioctl(%d, "
,
current
->
comm
,
current
->
pid
,
fd
);
printk
(
"[%s:%d] irix_ioctl(%d, "
,
current
->
comm
,
current
->
pid
,
fd
);
...
@@ -74,12 +74,13 @@ asmlinkage int irix_ioctl(int fd, unsigned long cmd, unsigned long arg)
...
@@ -74,12 +74,13 @@ asmlinkage int irix_ioctl(int fd, unsigned long cmd, unsigned long arg)
case
0x0000540d
:
{
case
0x0000540d
:
{
struct
termios
kt
;
struct
termios
kt
;
struct
irix_termios
*
it
=
(
struct
irix_termios
*
)
arg
;
struct
irix_termios
__user
*
it
=
(
struct
irix_termios
__user
*
)
arg
;
#ifdef DEBUG_IOCTLS
#ifdef DEBUG_IOCTLS
printk
(
"TCGETS, %08lx) "
,
arg
);
printk
(
"TCGETS, %08lx) "
,
arg
);
#endif
#endif
if
(
!
access_ok
(
VERIFY_WRITE
,
it
,
sizeof
(
*
it
)))
{
if
(
!
access_ok
(
VERIFY_WRITE
,
it
,
sizeof
(
*
it
)))
{
error
=
-
EFAULT
;
error
=
-
EFAULT
;
break
;
break
;
}
}
...
@@ -88,13 +89,14 @@ asmlinkage int irix_ioctl(int fd, unsigned long cmd, unsigned long arg)
...
@@ -88,13 +89,14 @@ asmlinkage int irix_ioctl(int fd, unsigned long cmd, unsigned long arg)
set_fs
(
old_fs
);
set_fs
(
old_fs
);
if
(
error
)
if
(
error
)
break
;
break
;
__put_user
(
kt
.
c_iflag
,
&
it
->
c_iflag
);
__put_user
(
kt
.
c_oflag
,
&
it
->
c_oflag
);
error
=
__put_user
(
kt
.
c_iflag
,
&
it
->
c_iflag
);
__put_user
(
kt
.
c_cflag
,
&
it
->
c_cflag
);
error
|=
__put_user
(
kt
.
c_oflag
,
&
it
->
c_oflag
);
__put_user
(
kt
.
c_lflag
,
&
it
->
c_lflag
);
error
|=
__put_user
(
kt
.
c_cflag
,
&
it
->
c_cflag
);
for
(
error
=
0
;
error
<
NCCS
;
error
++
)
error
|=
__put_user
(
kt
.
c_lflag
,
&
it
->
c_lflag
);
__put_user
(
kt
.
c_cc
[
error
],
&
it
->
c_cc
[
error
]);
error
=
0
;
for
(
i
=
0
;
i
<
NCCS
;
i
++
)
error
|=
__put_user
(
kt
.
c_cc
[
i
],
&
it
->
c_cc
[
i
]);
break
;
break
;
}
}
...
@@ -112,14 +114,19 @@ asmlinkage int irix_ioctl(int fd, unsigned long cmd, unsigned long arg)
...
@@ -112,14 +114,19 @@ asmlinkage int irix_ioctl(int fd, unsigned long cmd, unsigned long arg)
old_fs
=
get_fs
();
set_fs
(
get_ds
());
old_fs
=
get_fs
();
set_fs
(
get_ds
());
error
=
sys_ioctl
(
fd
,
TCGETS
,
(
unsigned
long
)
&
kt
);
error
=
sys_ioctl
(
fd
,
TCGETS
,
(
unsigned
long
)
&
kt
);
set_fs
(
old_fs
);
set_fs
(
old_fs
);
if
(
error
)
if
(
error
)
break
;
error
=
__get_user
(
kt
.
c_iflag
,
&
it
->
c_iflag
);
error
|=
__get_user
(
kt
.
c_oflag
,
&
it
->
c_oflag
);
error
|=
__get_user
(
kt
.
c_cflag
,
&
it
->
c_cflag
);
error
|=
__get_user
(
kt
.
c_lflag
,
&
it
->
c_lflag
);
for
(
i
=
0
;
i
<
NCCS
;
i
++
)
error
|=
__get_user
(
kt
.
c_cc
[
i
],
&
it
->
c_cc
[
i
]);
if
(
error
)
break
;
break
;
__get_user
(
kt
.
c_iflag
,
&
it
->
c_iflag
);
__get_user
(
kt
.
c_oflag
,
&
it
->
c_oflag
);
__get_user
(
kt
.
c_cflag
,
&
it
->
c_cflag
);
__get_user
(
kt
.
c_lflag
,
&
it
->
c_lflag
);
for
(
error
=
0
;
error
<
NCCS
;
error
++
)
__get_user
(
kt
.
c_cc
[
error
],
&
it
->
c_cc
[
error
]);
old_fs
=
get_fs
();
set_fs
(
get_ds
());
old_fs
=
get_fs
();
set_fs
(
get_ds
());
error
=
sys_ioctl
(
fd
,
TCSETS
,
(
unsigned
long
)
&
kt
);
error
=
sys_ioctl
(
fd
,
TCSETS
,
(
unsigned
long
)
&
kt
);
set_fs
(
old_fs
);
set_fs
(
old_fs
);
...
@@ -153,7 +160,7 @@ asmlinkage int irix_ioctl(int fd, unsigned long cmd, unsigned long arg)
...
@@ -153,7 +160,7 @@ asmlinkage int irix_ioctl(int fd, unsigned long cmd, unsigned long arg)
#ifdef DEBUG_IOCTLS
#ifdef DEBUG_IOCTLS
printk
(
"rtp->session=%d "
,
rtp
->
session
);
printk
(
"rtp->session=%d "
,
rtp
->
session
);
#endif
#endif
error
=
put_user
(
rtp
->
session
,
(
unsigned
long
*
)
arg
);
error
=
put_user
(
rtp
->
session
,
(
unsigned
long
__user
*
)
arg
);
break
;
break
;
case
0x746e
:
case
0x746e
:
...
@@ -195,50 +202,32 @@ asmlinkage int irix_ioctl(int fd, unsigned long cmd, unsigned long arg)
...
@@ -195,50 +202,32 @@ asmlinkage int irix_ioctl(int fd, unsigned long cmd, unsigned long arg)
break
;
break
;
case
0x8004667e
:
case
0x8004667e
:
#ifdef DEBUG_IOCTLS
printk
(
"FIONBIO, %08lx) arg=%d "
,
arg
,
*
(
int
*
)
arg
);
#endif
error
=
sys_ioctl
(
fd
,
FIONBIO
,
arg
);
error
=
sys_ioctl
(
fd
,
FIONBIO
,
arg
);
break
;
break
;
case
0x80047476
:
case
0x80047476
:
#ifdef DEBUG_IOCTLS
printk
(
"TIOCSPGRP, %08lx) arg=%d "
,
arg
,
*
(
int
*
)
arg
);
#endif
error
=
sys_ioctl
(
fd
,
TIOCSPGRP
,
arg
);
error
=
sys_ioctl
(
fd
,
TIOCSPGRP
,
arg
);
break
;
break
;
case
0x8020690c
:
case
0x8020690c
:
#ifdef DEBUG_IOCTLS
printk
(
"SIOCSIFADDR, %08lx) arg=%d "
,
arg
,
*
(
int
*
)
arg
);
#endif
error
=
sys_ioctl
(
fd
,
SIOCSIFADDR
,
arg
);
error
=
sys_ioctl
(
fd
,
SIOCSIFADDR
,
arg
);
break
;
break
;
case
0x80206910
:
case
0x80206910
:
#ifdef DEBUG_IOCTLS
printk
(
"SIOCSIFFLAGS, %08lx) arg=%d "
,
arg
,
*
(
int
*
)
arg
);
#endif
error
=
sys_ioctl
(
fd
,
SIOCSIFFLAGS
,
arg
);
error
=
sys_ioctl
(
fd
,
SIOCSIFFLAGS
,
arg
);
break
;
break
;
case
0xc0206911
:
case
0xc0206911
:
#ifdef DEBUG_IOCTLS
printk
(
"SIOCGIFFLAGS, %08lx) arg=%d "
,
arg
,
*
(
int
*
)
arg
);
#endif
error
=
sys_ioctl
(
fd
,
SIOCGIFFLAGS
,
arg
);
error
=
sys_ioctl
(
fd
,
SIOCGIFFLAGS
,
arg
);
break
;
break
;
case
0xc020691b
:
case
0xc020691b
:
#ifdef DEBUG_IOCTLS
printk
(
"SIOCGIFMETRIC, %08lx) arg=%d "
,
arg
,
*
(
int
*
)
arg
);
#endif
error
=
sys_ioctl
(
fd
,
SIOCGIFMETRIC
,
arg
);
error
=
sys_ioctl
(
fd
,
SIOCGIFMETRIC
,
arg
);
break
;
break
;
default:
{
default:
{
#ifdef DEBUG_MISSING_IOCTL
#ifdef DEBUG_MISSING_IOCTL
char
*
msg
=
"Unimplemented IOCTL cmd tell linux
@engr.sgi.com
\n
"
;
char
*
msg
=
"Unimplemented IOCTL cmd tell linux
-mips@linux-mips.org
\n
"
;
#ifdef DEBUG_IOCTLS
#ifdef DEBUG_IOCTLS
printk
(
"UNIMP_IOCTL, %08lx)
\n
"
,
arg
);
printk
(
"UNIMP_IOCTL, %08lx)
\n
"
,
arg
);
...
...
include/asm-mips/inventory.h
View file @
1592dac2
...
@@ -4,6 +4,8 @@
...
@@ -4,6 +4,8 @@
#ifndef __ASM_INVENTORY_H
#ifndef __ASM_INVENTORY_H
#define __ASM_INVENTORY_H
#define __ASM_INVENTORY_H
#include <linux/compiler.h>
typedef
struct
inventory_s
{
typedef
struct
inventory_s
{
struct
inventory_s
*
inv_next
;
struct
inventory_s
*
inv_next
;
int
inv_class
;
int
inv_class
;
...
@@ -14,7 +16,9 @@ typedef struct inventory_s {
...
@@ -14,7 +16,9 @@ typedef struct inventory_s {
}
inventory_t
;
}
inventory_t
;
extern
int
inventory_items
;
extern
int
inventory_items
;
void
add_to_inventory
(
int
class
,
int
type
,
int
controller
,
int
unit
,
int
state
);
int
dump_inventory_to_user
(
void
*
userbuf
,
int
size
);
extern
void
add_to_inventory
(
int
class
,
int
type
,
int
controller
,
int
unit
,
int
state
);
extern
int
dump_inventory_to_user
(
void
__user
*
userbuf
,
int
size
);
extern
int
__init
init_inventory
(
void
);
#endif
/* __ASM_INVENTORY_H */
#endif
/* __ASM_INVENTORY_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