i386/busmda_machdep.c 1.81 broke if_bfe
Scott Long
scottl at samsco.org
Tue Sep 26 16:17:20 PDT 2006
I just committed a fix for this. Thanks for bringing up the problem.
Scott
Mikko Työläjärvi wrote:
> Hi,
>
> It seems to me that with version 1.81 of i386/busdma_machdep.c devices
> that need bounce buffers, but do not use a filter function, will no
> longer work.
>
> The run_filter() function contains the logic to detect if a bounce
> buffer is needed also when there is no filter function, so I believe
> it has to be called for devices that are marked as BUS_DMA_COULD_BOUNCE
> as well as for those that provide a filter function.
>
> For example, this makes my bfe0 interface work again:
>
> Index: busdma_machdep.c
> ===================================================================
> RCS file: /net/cvs/home/ncvs/src/sys/i386/i386/busdma_machdep.c,v
> retrieving revision 1.83
> diff -u -b -r1.83 busdma_machdep.c
> --- busdma_machdep.c 24 Sep 2006 19:24:26 -0000 1.83
> +++ busdma_machdep.c 24 Sep 2006 21:45:39 -0000
> @@ -286,7 +286,7 @@
>
> if (newtag->lowaddr < ptoa((vm_paddr_t)Maxmem)
> || newtag->alignment > 1)
> - newtag->flags |= BUS_DMA_COULD_BOUNCE;
> + newtag->flags |= BUS_DMA_COULD_BOUNCE | BUS_DMA_USE_FILTER;
>
> if (((newtag->flags & BUS_DMA_COULD_BOUNCE) != 0) &&
> (flags & BUS_DMA_ALLOCNOW) != 0) {
>
>
> $.02,
> /Mikko
>
More information about the freebsd-current
mailing list