From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id D31CFC54EEB for ; Mon, 27 Apr 2020 20:50:17 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id BC0552070B for ; Mon, 27 Apr 2020 20:50:17 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726678AbgD0UuR (ORCPT ); Mon, 27 Apr 2020 16:50:17 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37808 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-FAIL-OK-FAIL) by vger.kernel.org with ESMTP id S1726233AbgD0UuQ (ORCPT ); Mon, 27 Apr 2020 16:50:16 -0400 Received: from ZenIV.linux.org.uk (zeniv.linux.org.uk [IPv6:2002:c35c:fd02::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 96E09C0610D5; Mon, 27 Apr 2020 13:50:16 -0700 (PDT) Received: from viro by ZenIV.linux.org.uk with local (Exim 4.92.3 #3 (Red Hat Linux)) id 1jTAhN-00D2oe-Sy; Mon, 27 Apr 2020 20:49:54 +0000 Date: Mon, 27 Apr 2020 21:49:53 +0100 From: Al Viro To: Christoph Hellwig Cc: Andrew Morton , Linus Torvalds , Jeremy Kerr , Arnd Bergmann , "Eric W . Biederman" , linuxppc-dev@lists.ozlabs.org, linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 1/5] powerpc/spufs: simplify spufs core dumping Message-ID: <20200427204953.GY23230@ZenIV.linux.org.uk> References: <20200427200626.1622060-1-hch@lst.de> <20200427200626.1622060-2-hch@lst.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200427200626.1622060-2-hch@lst.de> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Apr 27, 2020 at 10:06:21PM +0200, Christoph Hellwig wrote: > @@ -1988,7 +1984,12 @@ static ssize_t spufs_mbox_info_read(struct file *file, char __user *buf, > if (ret) > return ret; > spin_lock(&ctx->csa.register_lock); > - ret = __spufs_mbox_info_read(ctx, buf, len, pos); > + /* EOF if there's no entry in the mbox */ > + if (ctx->csa.prob.mb_stat_R & 0x0000ff) { > + ret = simple_read_from_buffer(buf, len, pos, > + &ctx->csa.prob.pu_mb_R, > + sizeof(ctx->csa.prob.pu_mb_R)); > + } > spin_unlock(&ctx->csa.register_lock); > spu_release_saved(ctx); Again, this really needs fixing. Preferably - as a separate commit preceding this series, so that it could be backported. simple_read_from_buffer() is a blocking operation. Yes, I understand that mainline has the same bug; it really does need to be fixed and having to backport this series is not a good idea, for obvious reasons.