From owner-freebsd-arch@FreeBSD.ORG Sat Feb 15 02:30:42 2014 Return-Path: Delivered-To: freebsd-arch@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DDCEE824 for ; Sat, 15 Feb 2014 02:30:41 +0000 (UTC) Received: from mail-lb0-f180.google.com (mail-lb0-f180.google.com [209.85.217.180]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5AE961DAB for ; Sat, 15 Feb 2014 02:30:40 +0000 (UTC) Received: by mail-lb0-f180.google.com with SMTP id n15so9995226lbi.11 for ; Fri, 14 Feb 2014 18:30:39 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:date:from:user-agent:mime-version:to :subject:references:in-reply-to:content-type :content-transfer-encoding; bh=mxuMC739luJjPFi9wwM5jy8RiUDPXezylsHk+FHZ3rI=; b=OPNrK/qVONOyTMEaE7lu6Nq0bNSiS7BLLdtwtMJHzyr+eaN5yvHm4ewVLUaW5ABLbe xHqqegkeH6Ol3bsGIJniNbNNMF0/gMPcZjrxGttkM+ML3lF2kQcWLDXe/x8gHbeVddc8 k/LaIs+/UEW7PRALHpeN5pFlPBk+SyGSIB7fN3GCfqp/gPkIlW6OdYHsJgVGEQqKJRlf Ofcmacktl7eS7ZNaLQeZz+OyOd65b4tI+foieNv1Zgn2ILv/nL1nnOXe1tms3a8zAPNg xXSeXYmNMUiPP1hFPlmPSFbOOgomOjIpYeOekVl9dn4d76v7tTURk+LiidSYzZYpPDpq FDFQ== X-Gm-Message-State: ALoCoQnhwXltC2ipzWZfagF0hbcuS+yKeMu1QnPZ2QlHSpJnGb3rCsJi3ai/nYQh8gR1JEiumuUK X-Received: by 10.152.201.197 with SMTP id kc5mr14074lac.77.1392431439118; Fri, 14 Feb 2014 18:30:39 -0800 (PST) Received: from [192.168.1.2] ([89.169.173.68]) by mx.google.com with ESMTPSA id w2sm11141662lad.4.2014.02.14.18.30.38 for (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 14 Feb 2014 18:30:38 -0800 (PST) Message-ID: <52FED14E.50304@freebsd.org> Date: Sat, 15 Feb 2014 06:30:38 +0400 From: Andrey Chernov User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.3.0 MIME-Version: 1.0 To: Andriy Gapon , John Baldwin , "freebsd-hackers@freebsd.org" , "freebsd-arch@freebsd.org" Subject: Re: can the scheduler decide to schedule an interrupted but runnable thread on another CPU core? What are the implications for code? References: <201402141318.44743.jhb@freebsd.org> <52FE5FBF.3090104@freebsd.org> <201402141410.29325.jhb@freebsd.org> <52FE93E6.6030705@freebsd.org> <52FE9A5E.5050300@freebsd.org> <52FEADC9.2040608@FreeBSD.org> <20140215001100.GS34851@funkthat.com> In-Reply-To: <20140215001100.GS34851@funkthat.com> X-Enigmail-Version: 1.7a1pre Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-arch@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Discussion related to FreeBSD architecture List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Feb 2014 02:30:42 -0000 On 15.02.2014 4:11, John-Mark Gurney wrote: >>> This is code example from cpuminer port, in case you are interested, it is very simple: >>> >>> static inline void affine_to_cpu(int id, int cpu) >>> { >>> cpuset_t set; >>> CPU_ZERO(&set); >>> CPU_SET(cpu, &set); >>> cpuset_setaffinity(CPU_LEVEL_WHICH, CPU_WHICH_CPUSET, -1, sizeof(cpuset_t), &set); >> >> I think that CPU_WHICH_TID should have been used here. > > I agree... cpuset(2): > The which argument determines how the value of id is interpreted and is > of type cpuwhich_t. The which argument may have the following values: > > CPU_WHICH_TID id is lwpid_t (thread id) > CPU_WHICH_PID id is pid_t (process id) > CPU_WHICH_CPUSET id is a cpusetid_t (cpuset id) > CPU_WHICH_IRQ id is an irq number > > An id of '-1' may be used with a which of CPU_WHICH_TID, CPU_WHICH_PID, > or CPU_WHICH_CPUSET to mean the current thread, process, or current > thread's cpuset. All cpuset syscalls allow this usage. The question still remains: why SCHED_ULE and SCHED_4BSD do different things here on CPU_WHICH_CPUSET == -1 (current thread's cpuset)? It looks like SCHED_ULE changes per/process mask while SCHED_4BSD change per/thread mask in that case. -- http://ache.vniz.net/