Re: 2.3.39 compile errors on Alpha

From: Adrian Bunk (bunk@fs.tum.de)
Date: Mon Sep 30 2002 - 06:08:32 EST


On Mon, 30 Sep 2002, Jochen Friedrich wrote:

> Hi,

Hi Jochen,

> these are the errors i found in my log from a "make -k modules" on Alpha:
>
> drivers/atm/atmtcp.c:
>
> atmtcp.c:278: incompatible types in assignment

this is a known issue, the following patch (already in Linus' BK tree)
fixes it:

--- linux-2.5.35-VIRGIN/drivers/atm/atmtcp.c 2002-08-24 00:08:21.000000000 -0700
+++ linux-2.5.35/drivers/atm/atmtcp.c 2002-09-16 21:04:30.000000000 -0700
@@ -275,7 +275,7 @@
                 result = -ENOBUFS;
                 goto done;
         }
- new_skb->stamp = xtime;
+ do_gettimeofday(&new_skb->stamp);
         memcpy(skb_put(new_skb,skb->len),skb->data,skb->len);
         out_vcc->push(out_vcc,new_skb);
         atomic_inc(&vcc->stats->tx);

>...
> drivers/md/lvm.c:
>
> lvm.c:1: #error Broken until maintainers will sanitize kdev_t handling
>
> drivers/md/lvm-snap.c:
>
> lvm-snap.c:248: incompatible type for argument 1 of `block_size'
>...

LVM is currently completely broken, see the current discussions about how
to get LVM2 into 2.5 before Halloween.

> Cheers,
> --jochen
>...

cu
Adrian

-- 

You only think this is a free country. Like the US the UK spends a lot of time explaining its a free country because its a police state. Alan Cox

- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Mon Sep 30 2002 - 22:00:44 EST