summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@conectiva.com.br>2002-09-24 21:53:43 -0300
committerDavid S. Miller <davem@nuts.ninka.net>2002-09-24 21:53:43 -0300
commitc2af9bbd555cbf3d54bf80768ab126e81d429cea (patch)
tree02defd287d7eed56dd3677e7136b6636b6d9157e /include
parent97ef8f8c0456c53f1a8ad513fee1198fed10f9c5 (diff)
[LLC] remove sap->mac_pdu_q, not used at all
Also remove some unneeded struct forward declarations.
Diffstat (limited to 'include')
-rw-r--r--include/net/llc_conn.h2
-rw-r--r--include/net/llc_main.h1
-rw-r--r--include/net/llc_sap.h3
3 files changed, 0 insertions, 6 deletions
diff --git a/include/net/llc_conn.h b/include/net/llc_conn.h
index ec993d032078..140684e7d882 100644
--- a/include/net/llc_conn.h
+++ b/include/net/llc_conn.h
@@ -70,8 +70,6 @@ struct llc_opt {
#define llc_sk(__sk) ((struct llc_opt *)(__sk)->protinfo)
-struct llc_conn_state_ev;
-
extern struct sock *llc_sk_alloc(int family, int priority);
extern void llc_sk_free(struct sock *sk);
diff --git a/include/net/llc_main.h b/include/net/llc_main.h
index 9e23ad0ae3e9..343f3144fbe1 100644
--- a/include/net/llc_main.h
+++ b/include/net/llc_main.h
@@ -52,7 +52,6 @@ struct llc_station {
} ev_q;
struct sk_buff_head mac_pdu_q;
};
-struct llc_station_state_ev;
extern struct llc_sap *llc_sap_alloc(void);
extern void llc_sap_save(struct llc_sap *sap);
diff --git a/include/net/llc_sap.h b/include/net/llc_sap.h
index d8e278794217..ac49be6fcbee 100644
--- a/include/net/llc_sap.h
+++ b/include/net/llc_sap.h
@@ -23,7 +23,6 @@
* @laddr - SAP value in this 'lsap'
* @node - entry in station sap_list
* @sk_list - LLC sockets this one manages
- * @mac_pdu_q - PDUs ready to send to MAC
*/
struct llc_sap {
struct llc_station *station;
@@ -39,9 +38,7 @@ struct llc_sap {
rwlock_t lock;
struct sock *list;
} sk_list;
- struct sk_buff_head mac_pdu_q;
};
-struct llc_sap_state_ev;
extern void llc_sap_assign_sock(struct llc_sap *sap, struct sock *sk);
extern void llc_sap_unassign_sock(struct llc_sap *sap, struct sock *sk);