From: Roland Dreier <roland@topspin.com>
To: linux-kernel@vger.kernel.org
Cc: netdev@oss.sgi.com, openib-general@openib.org
Subject: [PATCH][v4][18/24] IPoIB IPv6 support
Date: Sun, 19 Dec 2004 22:15:14 -0800 [thread overview]
Message-ID: <200412192215.69tnzAhGIT1vQGLF@topspin.com> (raw)
In-Reply-To: <200412192215.vegmgBmv5xungHlQ@topspin.com>
Add ipv6_ib_mc_map() to convert IPv6 multicast addresses to IPoIB
hardware addresses, and add support for autoconfiguration for devices
with type ARPHRD_INFINIBAND.
The mapping for multicast addresses is described in
http://www.ietf.org/internet-drafts/draft-ietf-ipoib-ip-over-infiniband-08.txt
Signed-off-by: Nitin Hande <Nitin.Hande@Sun.Com>
Signed-off-by: Roland Dreier <roland@topspin.com>
--- linux-bk.orig/include/net/if_inet6.h 2004-12-19 21:09:54.000000000 -0800
+++ linux-bk/include/net/if_inet6.h 2004-12-19 22:04:17.213162542 -0800
@@ -266,5 +266,20 @@
{
buf[0] = 0x00;
}
+
+static inline void ipv6_ib_mc_map(struct in6_addr *addr, char *buf)
+{
+ buf[0] = 0; /* Reserved */
+ buf[1] = 0xff; /* Multicast QPN */
+ buf[2] = 0xff;
+ buf[3] = 0xff;
+ buf[4] = 0xff;
+ buf[5] = 0x12; /* link local scope */
+ buf[6] = 0x60; /* IPv6 signature */
+ buf[7] = 0x1b;
+ buf[8] = 0; /* P_Key */
+ buf[9] = 0;
+ memcpy(buf + 10, addr->s6_addr + 6, 10);
+}
#endif
#endif
--- linux-bk.orig/net/ipv6/addrconf.c 2004-12-19 21:09:51.000000000 -0800
+++ linux-bk/net/ipv6/addrconf.c 2004-12-19 22:04:17.215162248 -0800
@@ -48,6 +48,7 @@
#include <linux/netdevice.h>
#include <linux/if_arp.h>
#include <linux/if_arcnet.h>
+#include <linux/if_infiniband.h>
#include <linux/route.h>
#include <linux/inetdevice.h>
#include <linux/init.h>
@@ -1095,6 +1096,12 @@
memset(eui, 0, 7);
eui[7] = *(u8*)dev->dev_addr;
return 0;
+ case ARPHRD_INFINIBAND:
+ if (dev->addr_len != INFINIBAND_ALEN)
+ return -1;
+ memcpy(eui, dev->dev_addr + 12, 8);
+ eui[0] |= 2;
+ return 0;
}
return -1;
}
@@ -1794,7 +1801,8 @@
if ((dev->type != ARPHRD_ETHER) &&
(dev->type != ARPHRD_FDDI) &&
(dev->type != ARPHRD_IEEE802_TR) &&
- (dev->type != ARPHRD_ARCNET)) {
+ (dev->type != ARPHRD_ARCNET) &&
+ (dev->type != ARPHRD_INFINIBAND)) {
/* Alas, we support only Ethernet autoconfiguration. */
return;
}
--- linux-bk.orig/net/ipv6/ndisc.c 2004-12-19 21:09:20.000000000 -0800
+++ linux-bk/net/ipv6/ndisc.c 2004-12-19 22:04:17.216162100 -0800
@@ -260,6 +260,9 @@
case ARPHRD_ARCNET:
ipv6_arcnet_mc_map(addr, buf);
return 0;
+ case ARPHRD_INFINIBAND:
+ ipv6_ib_mc_map(addr, buf);
+ return 0;
default:
if (dir) {
memcpy(buf, dev->broadcast, dev->addr_len);
next prev parent reply other threads:[~2004-12-20 6:15 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <200412192215.l62Q9JXNhGg51wOf@topspin.com>
2004-12-20 6:15 ` [PATCH][v4][17/24] IPoIB IPv4 multicast Roland Dreier
2004-12-20 6:15 ` Roland Dreier [this message]
2004-12-20 6:15 ` [PATCH][v4][19/24] Add IPoIB (IP-over-InfiniBand) driver Roland Dreier
2004-12-20 6:15 ` [PATCH][v4][20/24] Add IPoIB multicast & partition code Roland Dreier
2004-12-20 6:58 ` [PATCH][v4][19/24] Add IPoIB (IP-over-InfiniBand) driver YOSHIFUJI Hideaki / 吉藤英明
2004-12-20 12:14 ` Arnd Bergmann
2004-12-20 13:17 ` YOSHIFUJI Hideaki / 吉藤英明
2004-12-20 16:10 ` Arnd Bergmann
2004-12-20 16:45 ` Roland Dreier
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=200412192215.69tnzAhGIT1vQGLF@topspin.com \
--to=roland@topspin.com \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@oss.sgi.com \
--cc=openib-general@openib.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).