Received: by 2002:ac0:a5a6:0:0:0:0:0 with SMTP id m35-v6csp5549326imm; Wed, 12 Sep 2018 07:37:32 -0700 (PDT) X-Google-Smtp-Source: ANB0VdahCAJRWHVSOdnAOYaldWUlpZETTglA7+YQyvzROlT1MU+N1+d/OO+20O7H1hCm0Eq7GkB2 X-Received: by 2002:a63:6746:: with SMTP id b67-v6mr2705011pgc.330.1536763052639; Wed, 12 Sep 2018 07:37:32 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1536763052; cv=none; d=google.com; s=arc-20160816; b=lFj+k4GsdiXuF5a73cH6Bh1204QXVAD/KJQ1TAFLFNCAg6MthG6IZNOg+4R3mRF/cn zfqZ1fBZ3ZI8Y6+Jg1zODwKkYGBPEpEmwOEyzBEmiI4ZO0wpZOdX48n9jXKz6BIX/C1k Gkx38qKbqbp1f9SV0qhubUPEo32XH4x87axcupqMz3bZxcaPPWbRCEEmsLTjd3noGtkf BVQHpc94I0e5Bkm2snAvLnGWrymwyyMwN77MNrE0thtUKTDYiBtT2VyAC3lKCqnKvu6I fihEQ95024ZYL0iNj6bDgpXkYsnlqYo8dOb96m4Hqc63ufgGvtYZdQiSiWN1Mn3XXgPn gxow== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :organization:references:in-reply-to:message-id:subject:cc:to:from :date; bh=G+nUw0jLakCDafURPTmPvWl8S2Rm75Cq9t7OisMVG84=; b=Uu1imX0zBd8G54ZWhfgCClhx3VbNkc3XUchWRKlpJ4gED2Iu+RSLOiqxxv9WKvqYaB FC1k6VimTUQuyJmqwQpdX3wfjvL2QYYksSM8zM6EMrBcGynsDPyYngxHNn5vFZnsFUcW 0RdixEKm3rOv2MedH6J2hQaaWR70qZrZRBC6H255CqIC1yI8GV8f/huc2XF7pnBQuJov NVpCCFqW2RZanYmQfGcmUO3Pm81r1lKaeH61cCvN3OeK+De3zQjWpHyj/9uZOnJp2ktG MoNsmMBawhZemeKXe2zwsrUR/kZKuzpmHL87nzQ8Rh0nYlPCsGMXTY50NXhrbFO7WPId lpPQ== 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 o20-v6si1454108pgk.120.2018.09.12.07.37.16; Wed, 12 Sep 2018 07:37:32 -0700 (PDT) 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 S1728018AbeILTkO (ORCPT + 99 others); Wed, 12 Sep 2018 15:40:14 -0400 Received: from www.llwyncelyn.cymru ([82.70.14.225]:55712 "EHLO fuzix.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726819AbeILTkO (ORCPT ); Wed, 12 Sep 2018 15:40:14 -0400 Received: from alans-desktop (82-70-14-226.dsl.in-addr.zen.co.uk [82.70.14.226]) by fuzix.org (8.15.2/8.15.2) with ESMTP id w8CEZJI1013761; Wed, 12 Sep 2018 15:35:20 +0100 Date: Wed, 12 Sep 2018 15:35:19 +0100 From: Alan Cox To: Remi Pommarel Cc: Greg Kroah-Hartman , Jiri Slaby , linux-kernel@vger.kernel.org, Alexander Viro , Kees Cook , Elie Roudninski Subject: Re: [PATCH 0/4] Add specific vt input's key map Message-ID: <20180912153519.533fb27a@alans-desktop> In-Reply-To: References: Organization: Intel Corporation X-Mailer: Claws Mail 3.16.0 (GTK+ 2.24.32; x86_64-redhat-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 11 Sep 2018 22:23:55 +0200 Remi Pommarel wrote: > This patchset adds a way to have a specific keyboard config (i.e. > keycode to keysym map) for a vt attached input. Who actually needs this given that you can't even render most international symbols in text mode and X and friends already deal with mapping of keyboards at this degree of fine-ness and even more so ? > - kbd_detach_conf is a bit clumsy because it tries to copy a shared sparse > pointer array without using GFP_ATOMIC. It's not a performance critical path at least. You could look at switching it to use RCU but firstly I think the question is whether anyone cares enough to bother putting it in the upstream kernel ? Alan