From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id CF7D2A0547; Thu, 29 Apr 2021 11:48:53 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4A24F41194; Thu, 29 Apr 2021 11:48:53 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [216.205.24.124]) by mails.dpdk.org (Postfix) with ESMTP id 1EEA341125 for ; Thu, 29 Apr 2021 11:48:51 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1619689731; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=Pgb3+6w9bk6cly6yEUKFiO6fBDRjBfmfzk9j7klKRek=; b=a7OmBWf9Xd+C40Ubji+vkYK3NyT2Q8jOaZsvUWDO3VKf4BNNpMg4adjBEMlt+7QDnH3ZVC DyI2KtBCJ8yk+vQeqf8j1AkCPnO9/+H8d7CDkDcs5qGs9EW73rhvD7gFDPn3rOXzMswGzY wx0yX5k5U9DJteqeuJlqeYCCnNtZqm0= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-447-LQItLxglMT63z-NvmRZwNg-1; Thu, 29 Apr 2021 05:48:49 -0400 X-MC-Unique: LQItLxglMT63z-NvmRZwNg-1 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 00BB4107ACCA; Thu, 29 Apr 2021 09:48:48 +0000 (UTC) Received: from [10.36.110.9] (unknown [10.36.110.9]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 6D0F71E2C8; Thu, 29 Apr 2021 09:48:40 +0000 (UTC) To: Thomas Monjalon , Matan Azrad Cc: "dev@dpdk.org" , "Xia, Chenbo" , ferruh.yigit@intel.com, david.marchand@redhat.com References: <1616058798-303292-1-git-send-email-matan@nvidia.com> <2943250.H0OykbTYAW@thomas> From: Maxime Coquelin Message-ID: Date: Thu, 29 Apr 2021 11:48:38 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.8.1 MIME-Version: 1.0 In-Reply-To: <2943250.H0OykbTYAW@thomas> X-Scanned-By: MIMEDefang 2.84 on 10.5.11.23 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=maxime.coquelin@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH] vdpa/mlx5: improve interrupt management X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Hi Matan, On 4/11/21 11:07 AM, Thomas Monjalon wrote: > 07/04/2021 08:49, Xia, Chenbo: >>> Signed-off-by: Matan Azrad >>> Acked-by: Xueming Li >> >> Patch applied to next-virtio/main with conflict resolved. >> >> Thanks! > > Sorry it cannot be pulled in the main tree because it breaks > compilation with musl libc. > > It can be fixed in the same way as in > 41b5a7a8494e ("vdpa/mlx5: replace pthread functions unavailable in musl") > The function pthread_attr_setaffinity_np() must be replaced with > pthread_setaffinity_np() if moved after the call to pthread_create(). > > We could add a checkpatch check for forbidden functions like > pthread_yield, pthread_attr_setaffinity_np > and forbidden includes: > , > > Could you please send a new version taking care of Thomas' request. Thanks, Maxime