]> git.ipfire.org Git - ipfire-3.x.git/blame - iptraf-ng/patches/0001-token-ring-kernel-v3.5-kill-off-token-ring-support.patch
kernel: Update to 5.3.7
[ipfire-3.x.git] / iptraf-ng / patches / 0001-token-ring-kernel-v3.5-kill-off-token-ring-support.patch
CommitLineData
dc065a45
MT
1From 72512af1a3f1d55fff73cdfe7b63d9cfe8cc37ab Mon Sep 17 00:00:00 2001
2Message-Id: <72512af1a3f1d55fff73cdfe7b63d9cfe8cc37ab.1337783673.git.npajkovs@redhat.com>
3From: Nikola Pajkovsky <npajkovs@redhat.com>
4Date: Wed, 23 May 2012 16:32:27 +0200
5Subject: [PATCH] token-ring: kernel v3.5 kill off token-ring support
6
7Signed-off-by: Nikola Pajkovsky <npajkovs@redhat.com>
8---
9 src/hostmon.c | 10 ----------
10 src/iptraf-ng-compat.h | 1 -
11 src/othptab.c | 6 ------
12 src/packet.c | 27 ---------------------------
13 src/tcptable.c | 4 ----
14 5 files changed, 48 deletions(-)
15
16diff --git a/src/hostmon.c b/src/hostmon.c
17index 40a2b95..72b91f8 100644
18--- a/src/hostmon.c
19+++ b/src/hostmon.c
20@@ -1004,16 +1004,6 @@ void hostmon(const struct OPTIONS *options, time_t facilitytime, char *ifptr,
21 FDDI_K_ALEN);
22 list = flist;
23 break; }
24- case ARPHRD_IEEE802:
25- case ARPHRD_IEEE802_TR: {
26- struct trh_hdr *hdr_trh =
27- (struct trh_hdr *)pkt.pkt_buf;
28- memcpy(scratch_saddr, hdr_trh->saddr,
29- TR_ALEN);
30- memcpy(scratch_daddr, hdr_trh->daddr,
31- TR_ALEN);
32- list = flist;
33- break; }
34 default:
35 /* unknown link protocol */
36 continue;
37diff --git a/src/iptraf-ng-compat.h b/src/iptraf-ng-compat.h
38index d5aee4a..2d9da96 100644
39--- a/src/iptraf-ng-compat.h
40+++ b/src/iptraf-ng-compat.h
41@@ -39,7 +39,6 @@
42 #include <linux/if_ether.h>
43 #include <linux/if_packet.h>
44 #include <linux/if_fddi.h>
45-#include <linux/if_tr.h>
46 #include <linux/types.h>
47 #include <linux/isdn.h>
48
49diff --git a/src/othptab.c b/src/othptab.c
50index d12cdfd..1181eb1 100644
51--- a/src/othptab.c
52+++ b/src/othptab.c
53@@ -193,12 +193,6 @@ struct othptabent *add_othp_entry(struct othptable *table, struct pkt_hdr *pkt,
54 saddr), new_entry->smacaddr);
55 convmacaddr((char *) (((struct fddihdr *) packet)->
56 daddr), new_entry->dmacaddr);
57- } else if ((pkt->pkt_hatype == ARPHRD_IEEE802)
58- || (pkt->pkt_hatype == ARPHRD_IEEE802_TR)) {
59- convmacaddr((char *) (((struct trh_hdr *) packet)->
60- saddr), new_entry->smacaddr);
61- convmacaddr((char *) (((struct trh_hdr *) packet)->
62- daddr), new_entry->dmacaddr);
63 }
64 }
65
66diff --git a/src/packet.c b/src/packet.c
67index a43a27a..f3e4304 100644
68--- a/src/packet.c
69+++ b/src/packet.c
70@@ -51,24 +51,6 @@ static int in_cksum(u_short * addr, int len)
71 return (u_short) (~sum);
72 }
73
74-static unsigned int get_tr_ip_offset(char *pkt)
75-{
76- struct trh_hdr *trh;
77- unsigned int riflen = 0;
78-
79- trh = (struct trh_hdr *) pkt;
80-
81- /*
82- * Check if this packet has TR routing information and get
83- * its length.
84- */
85- if (trh->saddr[0] & TR_RII)
86- riflen = (ntohs(trh->rcf) & TR_RCF_LEN_MASK) >> 8;
87-
88- return sizeof(struct trh_hdr) - TR_MAXRIFLEN + riflen +
89- sizeof(struct trllc);
90-}
91-
92 static int packet_adjust(struct pkt_hdr *pkt)
93 {
94 int retval = 0;
95@@ -109,15 +91,6 @@ static int packet_adjust(struct pkt_hdr *pkt)
96 pkt->pkt_payload += sizeof(struct fddihdr);
97 pkt->pkt_len -= sizeof(struct fddihdr);
98 break;
99- case ARPHRD_IEEE802_TR:
100- case ARPHRD_IEEE802:
101- pkt->pkt_payload = pkt->pkt_buf;
102- /* Token Ring patch supplied by Tomas Dvorak */
103- /* Get the start of the IP packet from the Token Ring frame. */
104- unsigned int dataoffset = get_tr_ip_offset(pkt->pkt_payload);
105- pkt->pkt_payload += dataoffset;
106- pkt->pkt_len -= dataoffset;
107- break;
108 default:
109 /* return a NULL packet to signal an unrecognized link */
110 /* protocol to the caller. Hopefully, this switch statement */
111diff --git a/src/tcptable.c b/src/tcptable.c
112index 56c4780..b0e5ccc 100644
113--- a/src/tcptable.c
114+++ b/src/tcptable.c
115@@ -620,10 +620,6 @@ void updateentry(struct tcptable *table, struct tcptableent *tableentry,
116 } else if (linkproto == ARPHRD_FDDI) {
117 convmacaddr((char *) (((struct fddihdr *) packet)->
118 saddr), newmacaddr);
119- } else if ((linkproto == ARPHRD_IEEE802)
120- || (linkproto == ARPHRD_IEEE802_TR)) {
121- convmacaddr((char *) (((struct trh_hdr *) packet)->
122- saddr), newmacaddr);
123 }
124
125 if (tableentry->smacaddr[0] != '\0') {
126--
1271.7.10
128