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 54762C6FD19 for ; Fri, 10 Mar 2023 21:32:37 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231768AbjCJVcf (ORCPT ); Fri, 10 Mar 2023 16:32:35 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:41974 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230517AbjCJVcd (ORCPT ); Fri, 10 Mar 2023 16:32:33 -0500 Received: from todd.t-8ch.de (todd.t-8ch.de [159.69.126.157]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 727315274 for ; Fri, 10 Mar 2023 13:32:28 -0800 (PST) Date: Fri, 10 Mar 2023 21:32:23 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=weissschuh.net; s=mail; t=1678483946; bh=7hAJiM6noMr+smt6CDR6XGldx7t8Em38BXnhIS/N0Dk=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=i9X2oRa8VNh9FN3z8e3aF650xQLSMQfXsVlMBdjhHi1gpZpeWGD4q3x5SMe7hWYWZ yisXlXF1iAYt+Kmxz7lw0nM7iZZ3xuCJojP1cKqLox8GHP93EZ8uiIbrtSLIAPBSip gDXk+33Rimqk2fAoNGup6Fv3Nah8GrxGtmjBaeZA= From: Thomas =?utf-8?Q?Wei=C3=9Fschuh?= To: Storm Dragon Cc: George Kennedy , Greg Kroah-Hartman , Jiri Slaby , linux-kernel@vger.kernel.org, Randy Dunlap Subject: Re: [PATCH] vc_screen: don't clobber return value in vcs_read Message-ID: References: <20230220064612.1783-1-linux@weissschuh.net> <00e5aee7-c7b3-4077-8c9f-4f28ec220567@t-8ch.de> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sat, Mar 04, 2023 at 02:58:46PM -0500, Storm Dragon wrote: > On Fri, Mar 03, 2023 at 11:25:00PM +0000, Thomas Weißschuh wrote: > > > Does this mean the screenreader now works correctly or is it still > > broken somehow? > > > > Thomas > > I have still been testing this kernel. Most things work as expected, but > the pasting functionality for Fenrir's clipboard is broken. After > checking into the problem, it seems that tiocsti is disabled, and that > is causing the problem. Was that something done in this test kernel > only, or will that be the default for all new Arch kernels? If it is the > default, is there a way to turn it back on? I tried the following: > > [storm@mjollnir ~] $ sudo sysctl dev.tty.legacy_tiocsti=1 > sysctl: setting key "dev.tty.legacy_tiocsti": Invalid argument The sysctl to enable the ioctl should be fixed in 6.2.3: pacman -U https://mirrors.edge.kernel.org/archlinux/testing/os/x86_64/linux-6.2.3.arch1-1-x86_64.pkg.tar.zst Thomas