Received: by 2002:a25:8b91:0:0:0:0:0 with SMTP id j17csp2356560ybl; Sat, 7 Dec 2019 13:32:02 -0800 (PST) X-Google-Smtp-Source: APXvYqwdsbZj+gMV3V7LxLy/C7SULZw0MIlDkajF6y4GlbZNdR9mF2qdFzqS0s+andCip/IVZG1h X-Received: by 2002:a05:6808:218:: with SMTP id l24mr13159972oie.75.1575754322720; Sat, 07 Dec 2019 13:32:02 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1575754322; cv=none; d=google.com; s=arc-20160816; b=spHw7RgMWxtcqEwGu8+BkWFKn6DoOaHlXKivjnu4SIEHNi2lQ/iWcjXojD9EE3UDkR uecvnSiUDx/VQKLZMzbEs3ATg2lM3xRqRj4KyUaG0R3FwEPoZwveaJtwAJcWg3fckWIa bGmYvsKE3eYFVDQb6QeQmES3fo384D7Pqbb4RTo+j6Md1RpbfQCTa6pkLsqsB6vfqd5g r0WOSmEPDrJs7NUOlXPSinxov9w9QHAyVXPl5K0SGN1EXxNvFOHTxTq/AEdzcMApd1+w yKUDapq8vUbjm4xDAoV8LyffIeT7pC2YyYM21vgpDhoE+c9ouRP99aQYYogcw5JdrRaQ ofjA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:cc:content-language:in-reply-to :user-agent:content-transfer-encoding:mime-version:references :message-id:date:subject:from:to; bh=IAlzkeX7A4QzA2tu9owSyVqHMuRRtwHFbFxDx71Y6lg=; b=O1qBRX+aKpAFL2nsAJmJ65/LK7TYK64jeBKwYHV+0LE47JdcL2HC4vgAX/f5WR/McM 482B/nImSG08ypIf30cxKwbFCmcbMqvweEXvKTGgJ3MFVnm2cpe+I8yZaNy/zD5HbWfn HUqKzGToQ6dyK3HU4GqQztVFx2UG5vx8/ojQ5xLsl7UCaKexWhJdXOwqal2R7uL99fV/ uoBAvFLItX4rnZusLqkfipvDrg3vnssmqYD5Ms20w5WMlMmTBnojqUw/H3/sc/8Lb+RB Kkbxlxt70JI/ddls1Njv/ZUMHNDCK8byNtPthi5Mlno2SX82ApA6p8UHXHMsVq4Agjug yGOA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id 7si10120937otk.79.2019.12.07.13.31.50; Sat, 07 Dec 2019 13:32:02 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726839AbfLGVbX (ORCPT + 99 others); Sat, 7 Dec 2019 16:31:23 -0500 Received: from 195-159-176-226.customer.powertech.no ([195.159.176.226]:44104 "EHLO blaine.gmane.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726421AbfLGVbW (ORCPT ); Sat, 7 Dec 2019 16:31:22 -0500 Received: from list by blaine.gmane.org with local (Exim 4.89) (envelope-from ) id 1idhfc-000cer-O3 for linux-kernel@vger.kernel.org; Sat, 07 Dec 2019 22:31:20 +0100 X-Injected-Via-Gmane: http://gmane.org/ To: linux-kernel@vger.kernel.org From: Akemi Yagi Subject: Re: [PATCH 0/2] pipe: Fixes [ver #2] Date: Sat, 7 Dec 2019 13:31:13 -0800 Message-ID: References: <157558502272.10278.8718685637610645781.stgit@warthog.procyon.org.uk> <20191206135604.GB2734@twin.jikos.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.2.0 In-Reply-To: Content-Language: en-US Cc: linux-fsdevel@vger.kernel.org Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 12/6/19 10:59 AM, Linus Torvalds wrote: > Hmm. I think I just saw this same bug with a plain kernel compile. > > My "make -j32" suddenly came to a crawl, and seems to be entirely > single-threaded. > > And that's almost certainly because the way 'make' handles load > distribution is with a network of pipes that has a token passed to the > sub-makes. > > So there's most definitely something wrong with the new pipe rework. > Well, I can't _guarantee_ the pipes are the cause of this, but it does > smell like it. > > Linus > We encountered what seems to be the same problem when building a kernel under RHEL 8. As it turned out, this was due to a bug in make (make-4.2.1-9.el8) and a patch is available. Details are found in this Red Hat bugzilla report: https://bugzilla.redhat.com/show_bug.cgi?id=1774790 Akemi