From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-0.1 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 10392 invoked from network); 24 Jul 2023 04:17:56 -0000 Received: from 9front.inri.net (168.235.81.73) by inbox.vuxu.org with ESMTPUTF8; 24 Jul 2023 04:17:56 -0000 Received: from sendmail.purelymail.com ([34.202.193.197]) by 9front; Mon Jul 24 00:13:39 -0400 2023 DKIM-Signature: a=rsa-sha256; b=NQpNjl2Ou/D72eI/FBlbIgSHs7Fhr/CBltky+d2fIuZaSzlmikdm3bCUq8swMjPBxDk3snWqnl92rhs7MbA+96ndzDXO+4mjK02tf4a9TYZYLP3U3ijooPsoAK94eYrhg3wgC8bgxHwYU3qi0uxxS9L7c1alkNyNGFwW7yrIh0LaVFlMncnN0QRGsO5S1Uk1AFctkX7Tyi74lsD5gD9kb+ugdc4jJEbol3mz1DjxEUzBAE6jHzVT4d6GxHYDCs3uAXNziz77QmC/bdWUq3cGiOmElNszQ+2FFDPo1QywSHp3ffaHFR23iMom/PKMA5q0cocbJZrD5+Ljj5BR3Mk2HQ==; s=purelymail3; d=pbrane.org; v=1; bh=XWvhFOMqOsNyNmtbu6Hp3SEaZOvhZbJvzPx/SPiFDb0=; h=Received:From:To:Subject; DKIM-Signature: a=rsa-sha256; b=bCxNWi8mFGh0ViaGpdzekMZe4bNs6xLMsElZkVuqeyBPnxbe2Y6MtKhk6/bq7QBKXanM9wvN4ATeP/QpNM9MBEPAQmIy3H0ID52NSOhF4LUsGrkMxS7GoBIfW9ChUzxn6vGRk2ynPHgNChSdQ86GIBsd658qQ9VlodXAH8HIwMzdu3VmM6mDSW96D8GBxko6WWGY4rPvGW1tQDI3oEr3sHn/Y8KbieI5lD5UarlPDhuBxvTJKShBNjaWatg3rPKIKmpOdI4QQHpMicZOISZc9s4SZ83TwMw2oKUrMlv/KA6a1yv19WGZVtdFi4Cdmlunb8HIK8rDS1fAm/TW0BIPdA==; s=purelymail3; d=purelymail.com; v=1; bh=XWvhFOMqOsNyNmtbu6Hp3SEaZOvhZbJvzPx/SPiFDb0=; h=Feedback-ID:Received:From:To:Subject; Feedback-ID: 10987:2443:null:purelymail X-Pm-Original-To: 9front@9front.org Received: by smtp.purelymail.com (Purelymail SMTP) with ESMTPSA id -496601121 for <9front@9front.org> (version=TLSv1.3 cipher=TLS_AES_256_GCM_SHA384); Mon, 24 Jul 2023 04:13:25 +0000 (UTC) Date: Sun, 23 Jul 2023 21:13:18 -0700 From: Anthony Martin To: 9front@9front.org Message-ID: References: <71ed8c49-2174-0ec5-ad59-5e1c5256fc70@posixcafe.org> <80e78967-bbc8-a053-75fe-3033b8f491c3@posixcafe.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <80e78967-bbc8-a053-75fe-3033b8f491c3@posixcafe.org> List-ID: <9front.9front.org> List-Help: X-Glyph: ➈ X-Bullshit: base ORM over XMPP firewall just-in-time backend Subject: Re: [9front] Re: [PATCH] make exportfs give "standard" error for file does exist Reply-To: 9front@9front.org Precedence: bulk Jacob Moody once said: > The problem is that exportfs sends the errstr back from what > it gets from open(2). The kernel gives you back the path attempted > to be accessed in quotes prefixed to 'does not exist'. > Every fileserver using Enotexist would not fix exportfs causing > this issue with v9fs. I understand. That's partly why I suggested sending a patch to lkml. They use memcmp on the errstr but they should be doing the equivalent of strstr (like Go's syscall package). Cheers, Anthony