Date: Mon, 9 Sep 2013 23:17:13 +0200 From: "O. Hartmann" <ohartman@zedat.fu-berlin.de> To: Ivan Klymenko <fidaj@ukr.net> Cc: FreeBSD CURRENT <freebsd-current@freebsd.org>, FreeBSD Ports <freebsd-ports@freebsd.org> Subject: Re: CURRENT r255426: x11/nvidia-driver: nvidia_subr.c:835:46: error: too few arguments to function call, expected 10, have 9 (VM_PROT_READ | VM_PROT_WRITE), 0); Message-ID: <20130909231713.34ebfbdd@thor.walstatt.dyndns.org> In-Reply-To: <20130910000237.6b5604da@nonamehost.local> References: <20130909223748.61dd8859@thor.walstatt.dyndns.org> <20130910000237.6b5604da@nonamehost.local>
next in thread | previous in thread | raw e-mail | index | archive | help
--Sig_/UrICAPLQIU4o8yBNhfpaT_O Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On Tue, 10 Sep 2013 00:02:37 +0300 Ivan Klymenko <fidaj@ukr.net> wrote: > =D0=92 Mon, 9 Sep 2013 22:37:48 +0200 > "O. Hartmann" <ohartman@zedat.fu-berlin.de> =D0=BF=D0=B8=D1=88=D0=B5=D1= =82: >=20 > > x11/nvidia-driver (as well as emulators/virtualbox-ose-kmod) do not > > compile on FreeBSD 10.0-CURRENT #0 r255426: Mon Sep 9 21:35:43 > > CEST 2013 amd64. > >=20 > > The error is: > >=20 > > x11/nvidia-driver: > >=20 > > --- nvidia_subr.o --- > > nvidia_subr.c:835:46: error: too few arguments to function call, > > expected 10, have 9 (VM_PROT_READ | VM_PROT_WRITE), 0); > > ^ > > @/vm/vm_map.h:368:1: note: 'vm_map_find' declared here > > int vm_map_find(vm_map_t, vm_object_t, vm_ooffset_t, vm_offset_t *, > > vm_size_t, ^ > > 1 error generated. > > *** [nvidia_subr.o] Error code 1 > >=20 > >=20 > > emulators/virtualbox-ose-kmod: > >=20 > > [...] > > /usr/ports/emulators/virtualbox-ose-kmod/work/VirtualBox-4.2.18/out/fr= eebsd.amd64/release/bin/src/vboxdrv/r0drv/freebsd/alloc-r0drv-freebsd.c:83:= 76: > > error: too few arguments to function call, expected 10, have 9 > > cbAllocated, TRUE, VM_PROT_ALL, VM_PROT_ALL, 0); ^ > > @/vm/vm_map.h:368:1: note: 'vm_map_find' declared here int > > vm_map_find(vm_map_t, vm_object_t, vm_ooffset_t, vm_offset_t *, > > vm_size_t, >=20 > Try the following changes: > int rc =3D vm_map_find(kernel_map, pVmObject, 0, &Addr, > --- cbAllocated, TRUE, VM_PROT_ALL, > VM_PROT_ALL, 0); +++ cbAllocated, 0, > VMFS_OPTIMAL_SPACE, VM_PROT_ALL, VM_PROT_ALL, 0); >=20 > for Nvidia driver need to make similar changes... > _______________________________________________ > freebsd-current@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to > "freebsd-current-unsubscribe@freebsd.org" The man page of vm_map_find() says the last parameter is of int, named int cow. On the hurry, I didn't find any explanation of that parameter. Setting it to "0" (zero) also in the nvidia_subr.c makes the driver compile again. But simply filling in a int zero is a bit strange without knowing what to do, isn't it? Thanks anyway, Oliver --Sig_/UrICAPLQIU4o8yBNhfpaT_O Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.21 (FreeBSD) iQEcBAEBAgAGBQJSLjrZAAoJEOgBcD7A/5N8+oYIANdaYd2qOZHiMBOmiYVnNMY9 jYXPUHB+O2CpVAoSPHeAEuzAvl9QfzZ9BMS4NaMPmaVTH8qV3stHX63uI58qAM2f pKmHGzBoOLY+PF9NC3gniwaZQ/8FcseOD8wDtPvvaoxBa8PMHPeXArE/vFyKphEL f+ngRwpTlJw1REElyPPZzB3S86jrnecm9Uy+XhRuD0WziyBrCvpa0CZTxxIM2I68 w/U//34mSBScvibIBLpuA6O7ffQlgTjMHT1dMr+3AgKJNmEFKizbDOxoX22ua8iF EIBX4pRFGgiRUkTTlC4EEc5ODV10dmp0fELcifI5rQfP4osD/Z2deAY536mNH1g= =qouV -----END PGP SIGNATURE----- --Sig_/UrICAPLQIU4o8yBNhfpaT_O--
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20130909231713.34ebfbdd>