patch-2.1.22 linux/net/x25/x25_dev.c
Next file: linux/net/x25/x25_in.c
Previous file: linux/net/x25/af_x25.c
Back to the patch index
Back to the overall index
- Lines: 59
- Date:
Sun Jan 19 15:47:30 1997
- Orig file:
v2.1.21/linux/net/x25/x25_dev.c
- Orig date:
Thu Jan 2 15:55:30 1997
diff -u --recursive --new-file v2.1.21/linux/net/x25/x25_dev.c linux/net/x25/x25_dev.c
@@ -15,7 +15,7 @@
* History
* X.25 001 Jonathan Naylor Started coding.
*/
-
+
#include <linux/config.h>
#if defined(CONFIG_X25) || defined(CONFIG_X25_MODULE)
#include <linux/errno.h>
@@ -89,8 +89,9 @@
/*
* Its not a Call Request, nor is it a control frame, throw it awa
*/
+/*
x25_transmit_clear_request(neigh, lci, 0x0D);
-
+*/
kfree_skb(skb, FREE_READ);
return 0;
@@ -101,11 +102,12 @@
struct x25_neigh *neigh;
skb->sk = NULL;
-
+
/*
* Packet received from unrecognised device, throw it away.
*/
if ((neigh = x25_get_neigh(dev)) == NULL) {
+ printk(KERN_DEBUG "X.25: unknown neighbour - %s\n", dev->name);
kfree_skb(skb, FREE_READ);
return 0;
}
@@ -129,10 +131,6 @@
kfree_skb(skb, FREE_READ);
return 0;
- case 0x04:
- kfree_skb(skb, FREE_READ);
- return 0;
-
default:
kfree_skb(skb, FREE_READ);
return 0;
@@ -144,11 +142,12 @@
struct x25_neigh *neigh;
skb->sk = NULL;
-
+
/*
* Packet received from unrecognised device, throw it away.
*/
if ((neigh = x25_get_neigh(dev)) == NULL) {
+ printk(KERN_DEBUG "X.25: unknown_neighbour - %s\n", dev->name);
kfree_skb(skb, FREE_READ);
return 0;
}
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov