Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 12 Jan 2006 23:36:47 +0100
From:      Felipe Alfaro Solana <felipe.alfaro@gmail.com>
To:        pyunyh@gmail.com
Cc:        current@freebsd.org
Subject:   Re: call for sk(4) testers
Message-ID:  <6f6293f10601121436m1c696580t4c583a0ed458b0d9@mail.gmail.com>
In-Reply-To: <20060112113251.GB13481@rndsoft.co.kr>
References:  <20060112113251.GB13481@rndsoft.co.kr>

next in thread | previous in thread | raw e-mail | index | archive | help

> Here is modified sk(4) that makes use of bus_dma(9). It was lightly
> tested on sparc64(SMP)/i386(SMP).

It doesn't compile correctly. It fails while compiling if_sk.c
complaining that if_skreg.h can't be found.

It can be fixed by changing:

#if 0
#include <pci/if_skreg.h>
#else
#include "if_skreg.h"
#endif

to

#if 1
#include <pci/if_skreg.h>
#else
#include "if_skreg.h"
#endif

in file "if_sk.c".


Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?6f6293f10601121436m1c696580t4c583a0ed458b0d9>