Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 16 Nov 2008 13:51:20 +0200
From:      Kostik Belousov <kostikbel@gmail.com>
To:        Doug Ambrisko <ambrisko@freebsd.org>
Cc:        svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org
Subject:   Re: svn commit: r184974 - head/sys/dev/mfi
Message-ID:  <20081116115120.GC2037@deviant.kiev.zoral.com.ua>
In-Reply-To: <200811142105.mAEL5jsL001886@svn.freebsd.org>
References:  <200811142105.mAEL5jsL001886@svn.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help

--GPJrCs/72TxItFYR
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

On Fri, Nov 14, 2008 at 09:05:45PM +0000, Doug Ambrisko wrote:
> Author: ambrisko
> Date: Fri Nov 14 21:05:45 2008
> New Revision: 184974
> URL: http://svn.freebsd.org/changeset/base/184974
>=20
> Log:
>   When running a 32bit app. on amd64, ensure the bits above 32bit
>   are zero for the copyout.  Confirmed by LSI.
>=20
> Modified:
>   head/sys/dev/mfi/mfi.c
>=20
> Modified: head/sys/dev/mfi/mfi.c
> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D
> --- head/sys/dev/mfi/mfi.c	Fri Nov 14 18:09:19 2008	(r184973)
> +++ head/sys/dev/mfi/mfi.c	Fri Nov 14 21:05:45 2008	(r184974)
> @@ -2130,6 +2130,14 @@ mfi_ioctl(struct cdev *dev, u_long cmd,=20
>  			    ->mfi_frame.raw[ioc->mfi_sense_off],
>  			    &sense_ptr.sense_ptr_data[0],
>  			    sizeof(sense_ptr.sense_ptr_data));
> +#ifdef __amd64__
> +			if (cmd !=3D MFI_CMD) {
> +				/*
> +				 * not 64bit native so zero out any address
> +				 * over 32bit */
> +				sense_ptr.high =3D 0;
> +			}
> +#endif
>  			error =3D copyout(cm->cm_sense, sense_ptr.user_space,
>  			    ioc->mfi_sense_len);
>  			if (error !=3D 0) {
> @@ -2353,6 +2361,13 @@ mfi_linux_ioctl_int(struct cdev *dev, u_
>                              ->lioc_frame.raw[l_ioc.lioc_sense_off],
>  			    &sense_ptr.sense_ptr_data[0],
>  			    sizeof(sense_ptr.sense_ptr_data));
> +#ifdef __amd64__
> +			/*
> +			 * only 32bit Linux support so zero out any
> +			 * address over 32bit
> +			 */
> +			sense_ptr.high =3D 0;
> +#endif
>  			error =3D copyout(cm->cm_sense, sense_ptr.user_space,
>  			    l_ioc.lioc_sense_len);
>  			if (error !=3D 0) {

Would it make sense to perform this cut slightly more generically, by
checking whether the current process is 32bit ?

We still have not grew the easy to check flag or attribute of the image,
but usual practice is to compare p_sysent with corresponding sysvec,
like
	if (td->td_proc->p_sysent =3D=3D &ia32_freebsd_sysvec)
or
	if (td->td_proc->p_sysent =3D=3D &elf_linux_sysvec)


--GPJrCs/72TxItFYR
Content-Type: application/pgp-signature
Content-Disposition: inline

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (FreeBSD)

iEYEARECAAYFAkkgCTgACgkQC3+MBN1Mb4ilSgCcC7rlFS2UrHNAP3Cxwitk5+/0
qc4AoPIXURK4hD+H2KXYnYSdVyvLNqEt
=dnux
-----END PGP SIGNATURE-----

--GPJrCs/72TxItFYR--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20081116115120.GC2037>