AoE driver for FBSD8 or later?
pluknet
pluknet at gmail.com
Fri Sep 10 16:28:25 UTC 2010
On 10 September 2010 17:32, George Mamalakis <mamalos at eng.auth.gr> wrote:
> Hi everybody,
>
> we have a coraid device with 15x1GB disks on it, and would like to use it
> with fbsd8 (zfs, etc). The http://support.coraid.com/support/freebsd/ is
> really outdated, and the port that creates the kernel module does not
> compile on FBSD8 (obviously!). Is there any effort on migrating the driver
> onto fbsd8 or should I plug the coraid on a linux system and use it from
> there?
>
This change below looks obvious to me.
Not sure if this is enough to make it work though.
There are also might be issues with those interfaces which announce
itself as IFT_ETHER, but have NULL if_input.
# cat files/patch-dev-aoe-aoenet.c
--- aoenet.c.orig 2006-05-25 16:10:11.000000000 +0000
+++ aoenet.c 2010-09-10 15:03:01.000000000 +0000
@@ -77,8 +77,11 @@
#define NECODES (sizeof(aoe_errlist) / sizeof(char *) - 1)
#if (__FreeBSD_version < 600000)
#define IFPADDR(ifp) (((struct arpcom *) (ifp))->ac_enaddr)
+#elif (__FreeBSD_version < 700000)
+#define IFPADDR(ifp) IFP2ENADDR(ifp)
#else
-#define IFPADDR(ifp) IFP2ENADDR(ifp)
+#include <net/if_dl.h>
+#define IFPADDR(ifp) IF_LLADDR(ifp)
#endif
#define IFLISTSZ 1024
@@ -223,7 +226,11 @@
m1->m_ext.ref_cnt = NULL;
MEXTADD(m1, f->f_data, len, nilfn,
+#if (__FreeBSD_version < 800000)
NULL, 0, EXT_NET_DRV);
+#else
+ f->f_data, NULL, 0, EXT_NET_DRV);
+#endif
m1->m_len = len;
m1->m_next = NULL;
}
--
wbr,
pluknet
-------------- next part --------------
A non-text attachment was scrubbed...
Name: patch-dev-aoe-aoenet.c
Type: application/octet-stream
Size: 749 bytes
Desc: not available
Url : http://lists.freebsd.org/pipermail/freebsd-stable/attachments/20100910/74fe138a/patch-dev-aoe-aoenet.obj
More information about the freebsd-stable
mailing list