From owner-freebsd-stable@FreeBSD.ORG Thu Jul 30 22:50:55 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 805DC106566B for ; Thu, 30 Jul 2009 22:50:55 +0000 (UTC) (envelope-from imb@protected-networks.net) Received: from sarah.protected-networks.net (sarah.protected-networks.net [IPv6:2001:470:1f07:4e1::1]) by mx1.freebsd.org (Postfix) with ESMTP id 363108FC15 for ; Thu, 30 Jul 2009 22:50:55 +0000 (UTC) (envelope-from imb@protected-networks.net) Received: from toshi.auburn.protected-networks.net (toshi.auburn.protected-networks.net [202.12.127.84]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "Iain Michael Butler", Issuer "Protected Networks Certificate Authority" (verified OK)) (Authenticated sender: imb) by sarah.protected-networks.net (Postfix) with ESMTPSA id C538F60E5 for ; Thu, 30 Jul 2009 18:50:53 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=protected-networks.net; s=200705; t=1248994253; bh=2VqdUKAJPjl8OLmGhoP7rd5KdmGnpY5b6Y8l+lmCB3Y=; h=Message-ID:Date:From:MIME-Version:To:Subject:References: In-Reply-To:Content-Type; b=FMHIEvtZvQ56dAzFmAWh4XpJi0IBY1m4qjrdYM8yTdS0WGpgs1OKtqB2MNxD6vujC YJAZo9UH+6axxY4Od5/2Fe3WRDRhadn/wyXhMFKnNB1HuMsEPpkL6LajXDrB3J8 DomainKey-Signature: a=rsa-sha1; s=200509; d=protected-networks.net; c=nofws; q=dns; h=message-id:date:from:user-agent:mime-version:to:subject: references:in-reply-to:x-enigmail-version:openpgp:content-type; b=k/zbYi/fvM//s91T8f/OoZhxAgsljnm207hyBNlfqHtToD2KyPMuRlrHNw1J92pEQ 2BBvpXkvTAE/7IUjQkDSpGKEQax2vayet3zYflBaSwnbnPg7NVTXJxZmmepI+7Q Message-ID: <4A7223C8.5070607@protected-networks.net> Date: Thu, 30 Jul 2009 18:50:48 -0400 From: Michael Butler User-Agent: Thunderbird 2.0.0.22 (X11/20090723) MIME-Version: 1.0 To: freebsd-stable References: <20090730224447.75BC81B5060@freebsd-stable.sentex.ca> In-Reply-To: <20090730224447.75BC81B5060@freebsd-stable.sentex.ca> X-Enigmail-Version: 0.96.0 OpenPGP: id=0442D492 Content-Type: multipart/mixed; boundary="------------010808030503090201050400" Subject: Re: [releng_7 tinderbox] failure on ia64/ia64 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 30 Jul 2009 22:50:55 -0000 This is a multi-part message in MIME format. --------------010808030503090201050400 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 FreeBSD Tinderbox wrote: > cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/ia64/libuwx/src -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mconstant-gp -ffixed-r13 -mfixed-range=f32-f127 -fpic -ffreestanding -Werror /src/sys/dev/ata/ata-all.c > /src/sys/dev/ata/ata-all.c: In function 'ata_device_ioctl': > /src/sys/dev/ata/ata-all.c:454: error: request for member 'max_iosize' in something not a structure or union > /src/sys/dev/ata/ata-all.c:454: error: request for member 'max_iosize' in something not a structure or union > *** Error code 1 Presumably, the intended lines were as in the attached patch .. imb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (FreeBSD) iEYEARECAAYFAkpyI8gACgkQQv9rrgRC1JLagQCfVzv7O2cV3qAgj9TT6qQe+kFj RIUAoIArFHee79h4wDaRgFZm4wgQeieQ =ZbvL -----END PGP SIGNATURE----- --------------010808030503090201050400 Content-Type: text/x-diff; name="ata-all.max_iosize.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="ata-all.max_iosize.patch" *** ata-all.c~ Thu Jul 30 14:11:23 2009 --- ata-all.c Thu Jul 30 18:46:43 2009 *************** *** 451,457 **** switch (cmd) { case IOCATAREQUEST: if (ioc_request->count > ! (ch->dma.max_iosize ? ch->dma.max_iosize : DFLTPHYS)) { return (EFBIG); } if (!(buf = malloc(ioc_request->count, M_ATA, M_NOWAIT))) { --- 451,457 ---- switch (cmd) { case IOCATAREQUEST: if (ioc_request->count > ! (atadev->max_iosize ? atadev->max_iosize : DFLTPHYS)) { return (EFBIG); } if (!(buf = malloc(ioc_request->count, M_ATA, M_NOWAIT))) { --------------010808030503090201050400--