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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3B013C433EF for ; Sun, 23 Jan 2022 09:20:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236097AbiAWJUV (ORCPT ); Sun, 23 Jan 2022 04:20:21 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:41500 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230401AbiAWJUT (ORCPT ); Sun, 23 Jan 2022 04:20:19 -0500 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 84BD3C06173B; Sun, 23 Jan 2022 01:20:19 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 21ACE60921; Sun, 23 Jan 2022 09:20:19 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 42B53C340E2; Sun, 23 Jan 2022 09:20:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1642929618; bh=Dj6LQFC0Rt8FZEOhmYI8OL38h0K/bUpUPb0UB+tnZ04=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=ddr8J3QFItYLfJ90lbG74ECaXAThq37UnIESGdmin4cpD9hObbT2Cgnl6QXBZu0wZ 7X8ny859qZekzDnAR+PZFii/Dc2plkluME3Iojpn1I8lXW+DD/X4UEmXSuVM/c6ipW fg9cjBd5mHlYdPMm5TgLfx3+CBC9gXnmg/W5WQFmWOUvSWqmjsjHn2lb8UTOo6wC5G 5sbrvSdT0tW9/pXelP1ff15Vucl4z/A05TNtsTnwuLykCh6X6uqbx5U03GaRo3Fco0 Ym4jHSzh6PdZDqQMGifzu/ucMrwGXPHo45QnR3yJgCHcMGc2+ExHNR6i7anFhFBObl Lq8VP3PWdxmWQ== Date: Sun, 23 Jan 2022 17:12:40 +0800 From: Jisheng Zhang To: Mayuresh Chitale Cc: Paul Walmsley , Palmer Dabbelt , Albert Ou , =?utf-8?B?QmrDtnJuIFTDtnBlbA==?= , Alexei Starovoitov , Daniel Borkmann , Andrii Nakryiko , Martin KaFai Lau , Song Liu , Yonghong Song , John Fastabend , KP Singh , Masahiro Yamada , Michal Marek , Nick Desaulniers , Kefeng Wang , Tong Tiangen , linux-riscv@lists.infradead.org, linux-kernel@vger.kernel.org, netdev@vger.kernel.org, bpf@vger.kernel.org, linux-kbuild@vger.kernel.org Subject: Re: [PATCH 11/12] riscv: extable: add a dedicated uaccess handler Message-ID: References: <20211118192130.48b8f04c@xhacker> <20211118192651.605d0c80@xhacker> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Jan 21, 2022 at 08:16:51PM +0800, Jisheng Zhang wrote: > On Thu, Jan 20, 2022 at 11:45:34PM +0530, Mayuresh Chitale wrote: > > Hello Jisheng, > > Hi, > > > > > Just wanted to inform you that this patch breaks the writev02 test > > case in LTP and if it is reverted then the test passes. If we run the > > test through strace then we see that the test hangs and following is > > the last line printed by strace: > > > > "writev(3, [{iov_base=0x7fff848a6000, iov_len=8192}, {iov_base=NULL, > > iov_len=0}]" > > > > Thanks for the bug report. I will try to fix it. Hi Mayuresh, I just sent out a fix for this bug. Per my test, the issue is fixed. Could you please try? Thanks