This message generated a parse failure. Raw output follows here. Please use 'back' to navigate. From devnull@lkml.org Mon Mar 20 22:44:04 2023 Received: from spaans.ds9a.nl (adsl-xs4all.ds9a.nl [213.84.159.51]) by kylie.puddingonline.com (8.11.6/8.11.6) with SMTP id g8HKIYi15936 for ; Tue, 17 Sep 2002 22:18:34 +0200 Received: (qmail 19669 invoked from network); 17 Sep 2002 20:03:15 -0000 Received: from unknown (HELO spaans.ds9a.nl) (3ffe:8280:10:360:202:44ff:fe2a:a1dd) by mayo.ipv6.ds9a.nl with SMTP; 17 Sep 2002 20:03:15 -0000 Received: (qmail 17147 invoked by uid 1000); 17 Sep 2002 19:43:52 -0000 MBOX-Line: From linux-kernel-owner@vger.kernel.org Wed Sep 20 08:06:32 2000 Received: (maildatabase); juh Received: (qmail 6652 invoked by alias); 20 Sep 2000 08:06:31 -0000 Received: (qmail 6544 invoked from network); 20 Sep 2000 07:56:21 -0000 Received: from vger.kernel.org (199.183.24.194) by spaans.ds9a.nl with SMTP; 20 Sep 2000 07:56:21 -0000 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Wed, 20 Sep 2000 04:10:35 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Wed, 20 Sep 2000 04:10:24 -0400 Received: from ldn51-3.Leiden.NL.net ([193.79.255.94]:54276 "EHLO ida.2y.net") by vger.kernel.org with ESMTP id ; Wed, 20 Sep 2000 04:10:09 -0400 Received: from freeler.nl (localhost [127.0.0.1]) by ida.2y.net (8.11.0/8.11.0) with ESMTP id e8K7sdY07431; Wed, 20 Sep 2000 09:54:39 +0200 Message-Id: <39C86D3F.E49F07EB@freeler.nl> Date: Wed, 20 Sep 2000 09:54:39 +0200 From: Jorg de Jong X-Mailer: Mozilla 4.7 [en] (X11; I; Linux 2.4.0-test8 i686) X-Accept-Language: en Mime-Version: 1.0 To: Gerhard Mack Cc: linux-kernel@vger.kernel.org Subject: Re: 2.4.0-test9-pre3: sit tunnel problems References: Content-Type: multipart/mixed; boundary="------------0A5A7E3D98F80714ED2C322C" Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org This is a multi-part message in MIME format. --------------0A5A7E3D98F80714ED2C322C Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Gerhard Mack wrote: > > ifconfig sit0 up tunnel ::206.123.31.102 > SIOCSIFDSTADDR: No buffer space available > > Anyone know why it does this? I can't seem to find any documentation on > that error... > > Gerhard > > -- > Gerhard Mack > > gmack@innerfire.net I have submitted a patch to solve this bug. Has not been accepted thow.... :-( --------------0A5A7E3D98F80714ED2C322C Content-Type: message/rfc822 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Mozilla-Status2: 00000000 Message-ID: <39BBEE62.60E6A1B4@freeler.nl> Date: Sun, 10 Sep 2000 22:26:10 +0200 From: Jorg de Jong X-Mailer: Mozilla 4.7 [en] (X11; I; Linux 2.4.0-test8 i686) X-Accept-Language: en MIME-Version: 1.0 To: davem@redhat.com, ak@muc.de, kuznet@ms2.inr.ac.ru Subject: [patch] ipv6 tunnel creation Content-Type: multipart/mixed; boundary="------------AD0AC28E06EC9A04BDA72D08" This is a multi-part message in MIME format. --------------AD0AC28E06EC9A04BDA72D08 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hi, I found that creating an ipv6 tunnel with ifconfig does not work. after some comparing between a 2.2 kernel and 2.4.0.testX I found that the name of the newly created sit device is not passed back to the reqestor. See linux/net/ipv6/addrconf.c and follow the call chain. This seems to be introduced by fact that the parameters in 2.4 are copied while in 2.2 kernels this was not the case. My simple patch fixes this one problem. after applying I can now successfuly create ipv6 tunnels with ifconfig. Please apply this patch. thanks, Jorg -- Jorg de Jong Work : mailto:jorg.de.jong@ict.nl Play : mailto:j.e.s.de.jong@freeler.nl --------------AD0AC28E06EC9A04BDA72D08 Content-Type: text/plain; charset=us-ascii; name="diffie" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="diffie" --- linux-2.4.0-test8/net/ipv6/sit.c Mon Aug 28 21:03:11 2000 +++ linux/net/ipv6/sit.c Tue Aug 15 22:28:27 2000 @@ -188,7 +188,7 @@ } if (i==100) goto failed; - memcpy(parms->name, dev->name, IFNAMSIZ); + memcpy(nt->parms.name, dev->name, IFNAMSIZ); } if (register_netdevice(dev) < 0) goto failed; --------------AD0AC28E06EC9A04BDA72D08-- --------------0A5A7E3D98F80714ED2C322C-- - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org Please read the FAQ at http://www.tux.org/lkml/