Thanks, Jeff. I'll send this to Linus shortly with the other pending Ceph stuff. sage On Thu, 10 Jun 2010, Jeff Mahoney wrote: > bdi_seq is an atomic_long_t but we're using ATOMIC_INIT, which causes > build failures on ia64. This patch fixes it to use ATOMIC_LONG_INIT. > > Signed-off-by: Jeff Mahoney <jeffm@xxxxxxxx> > --- > fs/ceph/super.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > --- a/fs/ceph/super.c > +++ b/fs/ceph/super.c > @@ -926,7 +926,7 @@ static int ceph_compare_super(struct sup > /* > * construct our own bdi so we can control readahead, etc. > */ > -static atomic_long_t bdi_seq = ATOMIC_INIT(0); > +static atomic_long_t bdi_seq = ATOMIC_LONG_INIT(0); > > static int ceph_register_bdi(struct super_block *sb, struct ceph_client *client) > { > -- > Jeff Mahoney > SUSE Labs > -- > To unsubscribe from this list: send the line "unsubscribe ceph-devel" in > the body of a message to majordomo@xxxxxxxxxxxxxxx > More majordomo info at http://vger.kernel.org/majordomo-info.html > > -- To unsubscribe from this list: send the line "unsubscribe ceph-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html