Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752863AbeAQLPF (ORCPT + 1 other); Wed, 17 Jan 2018 06:15:05 -0500 Received: from mx0a-001b2d01.pphosted.com ([148.163.156.1]:54746 "EHLO mx0a-001b2d01.pphosted.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752835AbeAQLPA (ORCPT ); Wed, 17 Jan 2018 06:15:00 -0500 Subject: Re: [PATCH 4/6] s390: add system call to run tasks with modified branch prediction To: Florian Weimer , Martin Schwidefsky , linux-kernel@vger.kernel.org, linux-s390@vger.kernel.org, kvm@vger.kernel.org Cc: Heiko Carstens , Paolo Bonzini , Cornelia Huck , Greg Kroah-Hartman , Jon Masters , Marcus Meissner , Jiri Kosina References: <1516182519-10623-1-git-send-email-schwidefsky@de.ibm.com> <1516182519-10623-5-git-send-email-schwidefsky@de.ibm.com> <5bda76be-0fec-8165-20bf-5cd8e51e955a@redhat.com> From: Christian Borntraeger Date: Wed, 17 Jan 2018 12:14:52 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.4.0 MIME-Version: 1.0 In-Reply-To: <5bda76be-0fec-8165-20bf-5cd8e51e955a@redhat.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 8bit X-TM-AS-GCONF: 00 x-cbid: 18011711-0040-0000-0000-00000425C10B X-IBM-AV-DETECTION: SAVI=unused REMOTE=unused XFE=unused x-cbparentid: 18011711-0041-0000-0000-000020C931B8 Message-Id: X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,, definitions=2018-01-17_03:,, signatures=0 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 priorityscore=1501 malwarescore=0 suspectscore=0 phishscore=0 bulkscore=0 spamscore=0 clxscore=1015 lowpriorityscore=0 impostorscore=0 adultscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1709140000 definitions=main-1801170163 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Return-Path: On 01/17/2018 11:03 AM, Florian Weimer wrote: > On 01/17/2018 10:48 AM, Martin Schwidefsky wrote: >>          rc = syscall(__NR_s390_modify_bp); >>          if (rc) { >>                  perror("s390_modify_bp"); >>                  exit(EXIT_FAILURE); >>          } > > Isn't this traditionally done through personality or prctl? I think we want this per thread (and not per process). So I assume personality will not work out. Can a prctl be done per thread? > > This looks like something other architectures may want as well. Probably.