Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 10 Sep 2010 20:05:57 +0400
From:      pluknet <pluknet@gmail.com>
To:        George Mamalakis <mamalos@eng.auth.gr>
Cc:        stable@freebsd.org
Subject:   Re: AoE driver for FBSD8 or later?
Message-ID:  <AANLkTikb4VspdP758CD_1HNe8P%2BdzHc4Y3Y3Jguchnbd@mail.gmail.com>
In-Reply-To: <4C8A336D.9080302@eng.auth.gr>
References:  <4C8A336D.9080302@eng.auth.gr>

next in thread | previous in thread | raw e-mail | index | archive | help
--0016e6509e4213a492048fe9eca1
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable

On 10 September 2010 17:32, George Mamalakis <mamalos@eng.auth.gr> wrote:
> =A0Hi 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 drive=
r
> 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 =3D 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 =3D len;
                m1->m_next =3D NULL;
         }


--=20
wbr,
pluknet

--0016e6509e4213a492048fe9eca1
Content-Type: application/octet-stream; name="patch-dev-aoe-aoenet.c"
Content-Disposition: attachment; filename="patch-dev-aoe-aoenet.c"
Content-Transfer-Encoding: base64
X-Attachment-Id: f_gdx8kek00

LS0tIGFvZW5ldC5jLm9yaWcJMjAwNi0wNS0yNSAxNjoxMDoxMS4wMDAwMDAwMDAgKzAwMDAKKysr
IGFvZW5ldC5jCTIwMTAtMDktMTAgMTU6MDM6MDEuMDAwMDAwMDAwICswMDAwCkBAIC03Nyw4ICs3
NywxMSBAQAogI2RlZmluZSBORUNPREVTIChzaXplb2YoYW9lX2Vycmxpc3QpIC8gIHNpemVvZihj
aGFyICopIC0gMSkKICNpZiAoX19GcmVlQlNEX3ZlcnNpb24gPCA2MDAwMDApCiAjZGVmaW5lIElG
UEFERFIoaWZwKSAoKChzdHJ1Y3QgYXJwY29tICopIChpZnApKS0+YWNfZW5hZGRyKQorI2VsaWYg
KF9fRnJlZUJTRF92ZXJzaW9uIDwgNzAwMDAwKQorI2RlZmluZSBJRlBBRERSKGlmcCkgSUZQMkVO
QUREUihpZnApCiAjZWxzZQotI2RlZmluZSBJRlBBRERSKGlmcCkgSUZQMkVOQUREUihpZnApIAor
I2luY2x1ZGUgPG5ldC9pZl9kbC5oPgorI2RlZmluZSBJRlBBRERSKGlmcCkgSUZfTExBRERSKGlm
cCkKICNlbmRpZgogI2RlZmluZSBJRkxJU1RTWiAxMDI0CiAKQEAgLTIyMyw3ICsyMjYsMTEgQEAK
IAogCQltMS0+bV9leHQucmVmX2NudCA9IE5VTEw7CiAJCU1FWFRBREQobTEsIGYtPmZfZGF0YSwg
bGVuLCBuaWxmbiwgCisjaWYgKF9fRnJlZUJTRF92ZXJzaW9uIDwgODAwMDAwKQogCQkJTlVMTCwg
MCwgRVhUX05FVF9EUlYpOworI2Vsc2UKKwkJCWYtPmZfZGF0YSwgTlVMTCwgMCwgRVhUX05FVF9E
UlYpOworI2VuZGlmCiAJCW0xLT5tX2xlbiA9IGxlbjsKIAkJbTEtPm1fbmV4dCA9IE5VTEw7CiAg
ICAgICAgIH0K
--0016e6509e4213a492048fe9eca1--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?AANLkTikb4VspdP758CD_1HNe8P%2BdzHc4Y3Y3Jguchnbd>