From owner-freebsd-emulation@FreeBSD.ORG Sun Mar 2 11:01:34 2008 Return-Path: Delivered-To: emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8A5901065677 for ; Sun, 2 Mar 2008 11:01:34 +0000 (UTC) (envelope-from rdivacky@vlk.vlakno.cz) Received: from vlakno.cz (vlk.vlakno.cz [62.168.28.247]) by mx1.freebsd.org (Postfix) with ESMTP id 38D678FC22 for ; Sun, 2 Mar 2008 11:01:33 +0000 (UTC) (envelope-from rdivacky@vlk.vlakno.cz) Received: from localhost (localhost [127.0.0.1]) by vlakno.cz (Postfix) with ESMTP id 48046675D3A; Sun, 2 Mar 2008 12:01:32 +0100 (CET) X-Virus-Scanned: amavisd-new at vlakno.cz Received: from vlakno.cz ([127.0.0.1]) by localhost (vlk.vlakno.cz [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 8EAn8EOpxttF; Sun, 2 Mar 2008 12:01:31 +0100 (CET) Received: from vlk.vlakno.cz (localhost [127.0.0.1]) by vlakno.cz (Postfix) with ESMTP id 38FFF675CEF; Sun, 2 Mar 2008 12:01:31 +0100 (CET) Received: (from rdivacky@localhost) by vlk.vlakno.cz (8.13.8/8.13.8/Submit) id m22B1U6w031041; Sun, 2 Mar 2008 12:01:30 +0100 (CET) (envelope-from rdivacky) Date: Sun, 2 Mar 2008 12:01:30 +0100 From: Roman Divacky To: emulation@freebsd.org Message-ID: <20080302110130.GA30563@freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="6c2NcOVqGQ03X4Wi" Content-Disposition: inline User-Agent: Mutt/1.4.2.3i Cc: jeff@freebsd.org Subject: [PATCH] linux get affinity syscall X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 Mar 2008 11:01:34 -0000 --6c2NcOVqGQ03X4Wi Content-Type: text/plain; charset=us-ascii Content-Disposition: inline hi.. jeff commited his cpu set and I tried to map that to linuxulator version of linux_sched_getaffinity(), the current (untested) code looks like this: /* * Get affinity of a process */ int linux_sched_getaffinity(struct thread *td, struct linux_sched_getaffinity_args *args) { int error; struct cpuset_getaffinity_args cga; if (args->len < sizeof(cpumask_t)) return (EINVAL); cga.level = CPU_LEVEL_WHICH; cga.which = CPU_WHICH_PID; cga.id = args->pid; cga.cpusetsize = sizeof(cpumask_t) * NBBY; cga.mask = (long *) args->user_mask_ptr; if ((error = cpuset_getaffinity(td, &cga)) == 0) td->td_retval[0] = sizeof(cpumask_t); return (error); } can someone comment on this? thnx roman --6c2NcOVqGQ03X4Wi Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.4 (FreeBSD) iD8DBQFHyokKLVEj6D3CBEwRAgzPAJ0YNBsh8oOcURZxirhObID7kr+btwCfd+nJ xR36GH7c758tNK3XdDRWGzs= =FGob -----END PGP SIGNATURE----- --6c2NcOVqGQ03X4Wi--