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
d9de55ab
Commit
d9de55ab
authored
Jun 21, 2004
by
Alexander Viro
Committed by
Linus Torvalds
Jun 21, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] sparse: drivers/net/wan annotation
parent
1e73d434
Changes
13
Show whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
43 additions
and
39 deletions
+43
-39
drivers/net/wan/c101.c
drivers/net/wan/c101.c
+2
-1
drivers/net/wan/cosa.c
drivers/net/wan/cosa.c
+21
-20
drivers/net/wan/cosa.h
drivers/net/wan/cosa.h
+1
-1
drivers/net/wan/dscc4.c
drivers/net/wan/dscc4.c
+1
-1
drivers/net/wan/hdlc_cisco.c
drivers/net/wan/hdlc_cisco.c
+1
-1
drivers/net/wan/hdlc_fr.c
drivers/net/wan/hdlc_fr.c
+1
-1
drivers/net/wan/hdlc_raw.c
drivers/net/wan/hdlc_raw.c
+1
-1
drivers/net/wan/hdlc_raw_eth.c
drivers/net/wan/hdlc_raw_eth.c
+1
-1
drivers/net/wan/lmc/lmc_ioctl.h
drivers/net/wan/lmc/lmc_ioctl.h
+2
-2
drivers/net/wan/n2.c
drivers/net/wan/n2.c
+2
-1
drivers/net/wan/pci200syn.c
drivers/net/wan/pci200syn.c
+2
-1
drivers/net/wan/x25_asy.c
drivers/net/wan/x25_asy.c
+1
-1
include/linux/if.h
include/linux/if.h
+7
-7
No files found.
drivers/net/wan/c101.c
View file @
d9de55ab
...
...
@@ -220,7 +220,8 @@ static int c101_close(struct net_device *dev)
static
int
c101_ioctl
(
struct
net_device
*
dev
,
struct
ifreq
*
ifr
,
int
cmd
)
{
const
size_t
size
=
sizeof
(
sync_serial_settings
);
sync_serial_settings
new_line
,
*
line
=
ifr
->
ifr_settings
.
ifs_ifsu
.
sync
;
sync_serial_settings
new_line
;
sync_serial_settings
__user
*
line
=
ifr
->
ifr_settings
.
ifs_ifsu
.
sync
;
port_t
*
port
=
dev_to_port
(
dev
);
#ifdef DEBUG_RINGS
...
...
drivers/net/wan/cosa.c
View file @
d9de55ab
...
...
@@ -301,9 +301,9 @@ static char *chrdev_setup_rx(struct channel_data *channel, int size);
static
int
chrdev_rx_done
(
struct
channel_data
*
channel
);
static
int
chrdev_tx_done
(
struct
channel_data
*
channel
,
int
size
);
static
ssize_t
cosa_read
(
struct
file
*
file
,
char
*
buf
,
size_t
count
,
loff_t
*
ppos
);
char
__user
*
buf
,
size_t
count
,
loff_t
*
ppos
);
static
ssize_t
cosa_write
(
struct
file
*
file
,
const
char
*
buf
,
size_t
count
,
loff_t
*
ppos
);
const
char
__user
*
buf
,
size_t
count
,
loff_t
*
ppos
);
static
unsigned
int
cosa_poll
(
struct
file
*
file
,
poll_table
*
poll
);
static
int
cosa_open
(
struct
inode
*
inode
,
struct
file
*
file
);
static
int
cosa_release
(
struct
inode
*
inode
,
struct
file
*
file
);
...
...
@@ -330,13 +330,13 @@ static struct file_operations cosa_fops = {
/* Ioctls */
static
int
cosa_start
(
struct
cosa_data
*
cosa
,
int
address
);
static
int
cosa_reset
(
struct
cosa_data
*
cosa
);
static
int
cosa_download
(
struct
cosa_data
*
cosa
,
unsigned
long
a
);
static
int
cosa_readmem
(
struct
cosa_data
*
cosa
,
unsigned
long
a
);
static
int
cosa_download
(
struct
cosa_data
*
cosa
,
void
__user
*
a
);
static
int
cosa_readmem
(
struct
cosa_data
*
cosa
,
void
__user
*
a
);
/* COSA/SRP ROM monitor */
static
int
download
(
struct
cosa_data
*
cosa
,
const
char
*
data
,
int
addr
,
int
len
);
static
int
download
(
struct
cosa_data
*
cosa
,
const
char
__user
*
data
,
int
addr
,
int
len
);
static
int
startmicrocode
(
struct
cosa_data
*
cosa
,
int
address
);
static
int
readmem
(
struct
cosa_data
*
cosa
,
char
*
data
,
int
addr
,
int
len
);
static
int
readmem
(
struct
cosa_data
*
cosa
,
char
__user
*
data
,
int
addr
,
int
len
);
static
int
cosa_reset_and_read_id
(
struct
cosa_data
*
cosa
,
char
*
id
);
/* Auxilliary functions */
...
...
@@ -830,7 +830,7 @@ static void chardev_channel_init(struct channel_data *chan)
}
static
ssize_t
cosa_read
(
struct
file
*
file
,
char
*
buf
,
size_t
count
,
loff_t
*
ppos
)
char
__user
*
buf
,
size_t
count
,
loff_t
*
ppos
)
{
DECLARE_WAITQUEUE
(
wait
,
current
);
unsigned
long
flags
;
...
...
@@ -905,7 +905,7 @@ static int chrdev_rx_done(struct channel_data *chan)
static
ssize_t
cosa_write
(
struct
file
*
file
,
const
char
*
buf
,
size_t
count
,
loff_t
*
ppos
)
const
char
__user
*
buf
,
size_t
count
,
loff_t
*
ppos
)
{
DECLARE_WAITQUEUE
(
wait
,
current
);
struct
channel_data
*
chan
=
file
->
private_data
;
...
...
@@ -1066,7 +1066,7 @@ static inline int cosa_reset(struct cosa_data *cosa)
}
/* High-level function to download data into COSA memory. Calls download() */
static
inline
int
cosa_download
(
struct
cosa_data
*
cosa
,
unsigned
long
arg
)
static
inline
int
cosa_download
(
struct
cosa_data
*
cosa
,
void
__user
*
arg
)
{
struct
cosa_download
d
;
int
i
;
...
...
@@ -1080,7 +1080,7 @@ static inline int cosa_download(struct cosa_data *cosa, unsigned long arg)
return
-
EPERM
;
}
if
(
copy_from_user
(
&
d
,
(
void
__user
*
)
arg
,
sizeof
(
d
)))
if
(
copy_from_user
(
&
d
,
arg
,
sizeof
(
d
)))
return
-
EFAULT
;
if
(
d
.
addr
<
0
||
d
.
addr
>
COSA_MAX_FIRMWARE_SIZE
)
...
...
@@ -1105,7 +1105,7 @@ static inline int cosa_download(struct cosa_data *cosa, unsigned long arg)
}
/* High-level function to read COSA memory. Calls readmem() */
static
inline
int
cosa_readmem
(
struct
cosa_data
*
cosa
,
unsigned
long
arg
)
static
inline
int
cosa_readmem
(
struct
cosa_data
*
cosa
,
void
__user
*
arg
)
{
struct
cosa_download
d
;
int
i
;
...
...
@@ -1120,7 +1120,7 @@ static inline int cosa_readmem(struct cosa_data *cosa, unsigned long arg)
return
-
EPERM
;
}
if
(
copy_from_user
(
&
d
,
(
void
__user
*
)
arg
,
sizeof
(
d
)))
if
(
copy_from_user
(
&
d
,
arg
,
sizeof
(
d
)))
return
-
EFAULT
;
/* If something fails, force the user to reset the card */
...
...
@@ -1167,7 +1167,7 @@ static inline int cosa_start(struct cosa_data *cosa, int address)
}
/* Buffer of size at least COSA_MAX_ID_STRING is expected */
static
inline
int
cosa_getidstr
(
struct
cosa_data
*
cosa
,
char
*
string
)
static
inline
int
cosa_getidstr
(
struct
cosa_data
*
cosa
,
char
__user
*
string
)
{
int
l
=
strlen
(
cosa
->
id_string
)
+
1
;
if
(
copy_to_user
(
string
,
cosa
->
id_string
,
l
))
...
...
@@ -1176,7 +1176,7 @@ static inline int cosa_getidstr(struct cosa_data *cosa, char *string)
}
/* Buffer of size at least COSA_MAX_ID_STRING is expected */
static
inline
int
cosa_gettype
(
struct
cosa_data
*
cosa
,
char
*
string
)
static
inline
int
cosa_gettype
(
struct
cosa_data
*
cosa
,
char
__user
*
string
)
{
int
l
=
strlen
(
cosa
->
type
)
+
1
;
if
(
copy_to_user
(
string
,
cosa
->
type
,
l
))
...
...
@@ -1187,6 +1187,7 @@ static inline int cosa_gettype(struct cosa_data *cosa, char *string)
static
int
cosa_ioctl_common
(
struct
cosa_data
*
cosa
,
struct
channel_data
*
channel
,
unsigned
int
cmd
,
unsigned
long
arg
)
{
void
__user
*
argp
=
(
void
__user
*
)
arg
;
switch
(
cmd
)
{
case
COSAIORSET
:
/* Reset the device */
if
(
!
capable
(
CAP_NET_ADMIN
))
...
...
@@ -1200,15 +1201,15 @@ static int cosa_ioctl_common(struct cosa_data *cosa,
if
(
!
capable
(
CAP_SYS_RAWIO
))
return
-
EACCES
;
return
cosa_download
(
cosa
,
arg
);
return
cosa_download
(
cosa
,
arg
p
);
case
COSAIORMEM
:
if
(
!
capable
(
CAP_SYS_RAWIO
))
return
-
EACCES
;
return
cosa_readmem
(
cosa
,
arg
);
return
cosa_readmem
(
cosa
,
arg
p
);
case
COSAIORTYPE
:
return
cosa_gettype
(
cosa
,
(
char
*
)
arg
);
return
cosa_gettype
(
cosa
,
argp
);
case
COSAIORIDSTR
:
return
cosa_getidstr
(
cosa
,
(
char
*
)
arg
);
return
cosa_getidstr
(
cosa
,
argp
);
case
COSAIONRCARDS
:
return
nr_cards
;
case
COSAIONRCHANS
:
...
...
@@ -1434,7 +1435,7 @@ static int cosa_dma_able(struct channel_data *chan, char *buf, int len)
* by a single space. Monitor has to reply with a space. Now the download
* begins. After the download monitor replies with "\r\n." (CR LF dot).
*/
static
int
download
(
struct
cosa_data
*
cosa
,
const
char
*
microcode
,
int
length
,
int
address
)
static
int
download
(
struct
cosa_data
*
cosa
,
const
char
__user
*
microcode
,
int
length
,
int
address
)
{
int
i
;
...
...
@@ -1508,7 +1509,7 @@ static int startmicrocode(struct cosa_data *cosa, int address)
* This routine is not needed during the normal operation and serves
* for debugging purposes only.
*/
static
int
readmem
(
struct
cosa_data
*
cosa
,
char
*
microcode
,
int
length
,
int
address
)
static
int
readmem
(
struct
cosa_data
*
cosa
,
char
__user
*
microcode
,
int
length
,
int
address
)
{
if
(
put_wait_data
(
cosa
,
'r'
)
==
-
1
)
return
-
1
;
if
((
get_wait_data
(
cosa
))
!=
'r'
)
return
-
2
;
...
...
drivers/net/wan/cosa.h
View file @
d9de55ab
...
...
@@ -66,7 +66,7 @@
/* ioctls */
struct
cosa_download
{
int
addr
,
len
;
char
*
code
;
char
__user
*
code
;
};
/* Reset the device */
...
...
drivers/net/wan/dscc4.c
View file @
d9de55ab
...
...
@@ -1296,7 +1296,7 @@ static int dscc4_set_clock(struct net_device *dev, u32 *bps, u32 *state)
static
int
dscc4_ioctl
(
struct
net_device
*
dev
,
struct
ifreq
*
ifr
,
int
cmd
)
{
sync_serial_settings
*
line
=
ifr
->
ifr_settings
.
ifs_ifsu
.
sync
;
sync_serial_settings
__user
*
line
=
ifr
->
ifr_settings
.
ifs_ifsu
.
sync
;
struct
dscc4_dev_priv
*
dpriv
=
dscc4_priv
(
dev
);
const
size_t
size
=
sizeof
(
dpriv
->
settings
);
int
ret
=
0
;
...
...
drivers/net/wan/hdlc_cisco.c
View file @
d9de55ab
...
...
@@ -272,7 +272,7 @@ static void cisco_stop(struct net_device *dev)
int
hdlc_cisco_ioctl
(
struct
net_device
*
dev
,
struct
ifreq
*
ifr
)
{
cisco_proto
*
cisco_s
=
ifr
->
ifr_settings
.
ifs_ifsu
.
cisco
;
cisco_proto
__user
*
cisco_s
=
ifr
->
ifr_settings
.
ifs_ifsu
.
cisco
;
const
size_t
size
=
sizeof
(
cisco_proto
);
cisco_proto
new_settings
;
hdlc_device
*
hdlc
=
dev_to_hdlc
(
dev
);
...
...
drivers/net/wan/hdlc_fr.c
View file @
d9de55ab
...
...
@@ -1137,7 +1137,7 @@ static void fr_destroy(hdlc_device *hdlc)
int
hdlc_fr_ioctl
(
struct
net_device
*
dev
,
struct
ifreq
*
ifr
)
{
fr_proto
*
fr_s
=
ifr
->
ifr_settings
.
ifs_ifsu
.
fr
;
fr_proto
__user
*
fr_s
=
ifr
->
ifr_settings
.
ifs_ifsu
.
fr
;
const
size_t
size
=
sizeof
(
fr_proto
);
fr_proto
new_settings
;
hdlc_device
*
hdlc
=
dev_to_hdlc
(
dev
);
...
...
drivers/net/wan/hdlc_raw.c
View file @
d9de55ab
...
...
@@ -34,7 +34,7 @@ static unsigned short raw_type_trans(struct sk_buff *skb,
int
hdlc_raw_ioctl
(
struct
net_device
*
dev
,
struct
ifreq
*
ifr
)
{
raw_hdlc_proto
*
raw_s
=
ifr
->
ifr_settings
.
ifs_ifsu
.
raw_hdlc
;
raw_hdlc_proto
__user
*
raw_s
=
ifr
->
ifr_settings
.
ifs_ifsu
.
raw_hdlc
;
const
size_t
size
=
sizeof
(
raw_hdlc_proto
);
raw_hdlc_proto
new_settings
;
hdlc_device
*
hdlc
=
dev_to_hdlc
(
dev
);
...
...
drivers/net/wan/hdlc_raw_eth.c
View file @
d9de55ab
...
...
@@ -46,7 +46,7 @@ static int eth_tx(struct sk_buff *skb, struct net_device *dev)
int
hdlc_raw_eth_ioctl
(
struct
net_device
*
dev
,
struct
ifreq
*
ifr
)
{
raw_hdlc_proto
*
raw_s
=
ifr
->
ifr_settings
.
ifs_ifsu
.
raw_hdlc
;
raw_hdlc_proto
__user
*
raw_s
=
ifr
->
ifr_settings
.
ifs_ifsu
.
raw_hdlc
;
const
size_t
size
=
sizeof
(
raw_hdlc_proto
);
raw_hdlc_proto
new_settings
;
hdlc_device
*
hdlc
=
dev_to_hdlc
(
dev
);
...
...
drivers/net/wan/lmc/lmc_ioctl.h
View file @
d9de55ab
...
...
@@ -234,7 +234,7 @@ typedef struct lmc_st1f_control {
int
command
;
int
address
;
int
value
;
char
*
data
;
char
__user
*
data
;
}
lmc_t1f_control
;
enum
lmc_xilinx_c
{
...
...
@@ -246,7 +246,7 @@ enum lmc_xilinx_c {
struct
lmc_xilinx_control
{
enum
lmc_xilinx_c
command
;
int
len
;
char
*
data
;
char
__user
*
data
;
};
/* ------------------ end T1 defs ------------------- */
...
...
drivers/net/wan/n2.c
View file @
d9de55ab
...
...
@@ -254,7 +254,8 @@ static int n2_close(struct net_device *dev)
static
int
n2_ioctl
(
struct
net_device
*
dev
,
struct
ifreq
*
ifr
,
int
cmd
)
{
const
size_t
size
=
sizeof
(
sync_serial_settings
);
sync_serial_settings
new_line
,
*
line
=
ifr
->
ifr_settings
.
ifs_ifsu
.
sync
;
sync_serial_settings
new_line
;
sync_serial_settings
__user
*
line
=
ifr
->
ifr_settings
.
ifs_ifsu
.
sync
;
port_t
*
port
=
dev_to_port
(
dev
);
#ifdef DEBUG_RINGS
...
...
drivers/net/wan/pci200syn.c
View file @
d9de55ab
...
...
@@ -204,7 +204,8 @@ static int pci200_close(struct net_device *dev)
static
int
pci200_ioctl
(
struct
net_device
*
dev
,
struct
ifreq
*
ifr
,
int
cmd
)
{
const
size_t
size
=
sizeof
(
sync_serial_settings
);
sync_serial_settings
new_line
,
*
line
=
ifr
->
ifr_settings
.
ifs_ifsu
.
sync
;
sync_serial_settings
new_line
;
sync_serial_settings
__user
*
line
=
ifr
->
ifr_settings
.
ifs_ifsu
.
sync
;
port_t
*
port
=
dev_to_port
(
dev
);
#ifdef DEBUG_RINGS
...
...
drivers/net/wan/x25_asy.c
View file @
d9de55ab
...
...
@@ -733,7 +733,7 @@ static int x25_asy_ioctl(struct tty_struct *tty, struct file *file,
switch
(
cmd
)
{
case
SIOCGIFNAME
:
if
(
copy_to_user
((
void
*
)
arg
,
sl
->
dev
->
name
,
if
(
copy_to_user
((
void
__user
*
)
arg
,
sl
->
dev
->
name
,
strlen
(
sl
->
dev
->
name
)
+
1
))
return
-
EFAULT
;
return
0
;
...
...
include/linux/if.h
View file @
d9de55ab
...
...
@@ -108,15 +108,15 @@ struct if_settings
unsigned
int
size
;
/* Size of the data allocated by the caller */
union
{
/* {atm/eth/dsl}_settings anyone ? */
raw_hdlc_proto
*
raw_hdlc
;
cisco_proto
*
cisco
;
fr_proto
*
fr
;
fr_proto_pvc
*
fr_pvc
;
fr_proto_pvc_info
*
fr_pvc_info
;
raw_hdlc_proto
__user
*
raw_hdlc
;
cisco_proto
__user
*
cisco
;
fr_proto
__user
*
fr
;
fr_proto_pvc
__user
*
fr_pvc
;
fr_proto_pvc_info
__user
*
fr_pvc_info
;
/* interface settings */
sync_serial_settings
*
sync
;
te1_settings
*
te1
;
sync_serial_settings
__user
*
sync
;
te1_settings
__user
*
te1
;
}
ifs_ifsu
;
};
...
...
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