Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Wed, 31 Jul 2002 11:49:25 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Wed, 31 Jul 2002 11:49:25 -0400 Received: from dsl-213-023-021-098.arcor-ip.net ([213.23.21.98]:64677 "EHLO starship") by vger.kernel.org with ESMTP id ; Wed, 31 Jul 2002 11:49:24 -0400 Content-Type: text/plain; charset=US-ASCII From: Daniel Phillips To: "J.A. Magallon" , Andrea Arcangeli Subject: Re: 2.4.19rc3aa4 Date: Wed, 31 Jul 2002 17:54:37 +0200 X-Mailer: KMail [version 1.3.2] Cc: linux-kernel@vger.kernel.org References: <20020730060218.GB1181@dualathlon.random> <20020730143657.GA2224@junk.cps.unizar.es> In-Reply-To: <20020730143657.GA2224@junk.cps.unizar.es> MIME-Version: 1.0 Content-Transfer-Encoding: 7BIT Message-Id: Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1314 Lines: 39 On Tuesday 30 July 2002 16:36, J.A. Magallon wrote: > BTW, are you aware of this in -aa ? I need this patch: > > --- linux/include/asm-i386/processor.h Fri Jul 19 00:37:45 2002 > +++ linux/include/asm-i386/processor.h~ Fri Jul 19 00:38:48 2002 > @@ -401,7 +401,7 @@ > { [0 ... 7] = 0 }, /* debugging registers */ \ > 0, 0, 0, \ > { { 0, }, }, /* 387 state */ \ > - 0,0,0,0,0,0, \ > + 0,0,0,0,0, \ > 0,{~0,} /* io permissions */ \ > } > > to shut up gcc and match the struct definition: > > /* floating point info */ > union i387_union i387; > /* virtual 86 mode info */ > struct vm86_struct * vm86_info; > unsigned long screen_bitmap; > unsigned long v86flags, v86mask, saved_esp0; > /* IO permissions */ > int ioperm; > unsigned long io_bitmap[IO_BITMAP_SIZE+1]; > > Coud be serious to have io_bitmap == 0 instead of == ~0 ?? It should be written "= {.io_bitmap = {~0}}" but that's still bogus: only the first array element gets the ones, probably not what was intended. -- Daniel - 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/