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
090ee8ec
Commit
090ee8ec
authored
Jun 15, 2004
by
Arnaldo Carvalho de Melo
Committed by
Arnaldo Carvalho de Melo
Jun 15, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[ECONET] kill some trivial warnings
Signed-off-by:
Arnaldo Carvalho de Melo
<
acme@conectiva.com.br
>
parent
5d18286c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
8 deletions
+6
-8
net/econet/af_econet.c
net/econet/af_econet.c
+6
-8
No files found.
net/econet/af_econet.c
View file @
090ee8ec
...
...
@@ -201,6 +201,7 @@ static int econet_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len
return
0
;
}
#ifdef CONFIG_ECONET_NATIVE
/*
* Queue a transmit result for the user to be told about.
*/
...
...
@@ -228,7 +229,6 @@ static void tx_result(struct sock *sk, unsigned long cookie, int result)
kfree_skb
(
skb
);
}
#ifdef CONFIG_ECONET_NATIVE
/*
* Called by the Econet hardware driver when a packet transmit
* has completed. Tell the user.
...
...
@@ -255,11 +255,6 @@ static int econet_sendmsg(struct kiocb *iocb, struct socket *sock,
struct
ec_addr
addr
;
int
err
;
unsigned
char
port
,
cb
;
struct
sk_buff
*
skb
;
struct
ec_cb
*
eb
;
#ifdef CONFIG_ECONET_NATIVE
unsigned
short
proto
=
0
;
#endif
#ifdef CONFIG_ECONET_AUNUDP
struct
msghdr
udpmsg
;
struct
iovec
iov
[
msg
->
msg_iovlen
+
1
];
...
...
@@ -316,6 +311,10 @@ static int econet_sendmsg(struct kiocb *iocb, struct socket *sock,
{
/* Real hardware Econet. We're not worthy etc. */
#ifdef CONFIG_ECONET_NATIVE
struct
ec_cb
*
eb
;
struct
sk_buff
*
skb
;
unsigned
short
proto
=
0
;
dev_hold
(
dev
);
skb
=
sock_alloc_send_skb
(
sk
,
len
+
LL_RESERVED_SPACE
(
dev
),
...
...
@@ -718,6 +717,7 @@ static struct proto_ops SOCKOPS_WRAPPED(econet_ops) = {
#include <linux/smp_lock.h>
SOCKOPS_WRAP
(
econet
,
PF_ECONET
);
#ifdef CONFIG_ECONET_AUNUDP
/*
* Find the listening socket, if any, for the given data.
*/
...
...
@@ -762,8 +762,6 @@ static int ec_queue_packet(struct sock *sk, struct sk_buff *skb,
return
sock_queue_rcv_skb
(
sk
,
skb
);
}
#ifdef CONFIG_ECONET_AUNUDP
/*
* Send an AUN protocol response.
*/
...
...
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