Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754614AbdCWDYV (ORCPT ); Wed, 22 Mar 2017 23:24:21 -0400 Received: from leo.clearchain.com ([199.73.29.74]:22661 "EHLO mail.clearchain.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751184AbdCWDYL (ORCPT ); Wed, 22 Mar 2017 23:24:11 -0400 Date: Thu, 23 Mar 2017 13:23:56 +1000 From: Peter Hutterer To: Marcos Paulo de Souza Cc: corbet@lwn.net, linux-doc@vger.kernel.org, dmitry.torokhov@gmail.com, linux-input@vger.kernel.org, benjamin.tissoires@redhat.com, linux-kernel@vger.kernel.org Subject: Re: [PATCH] Documentation: Input: Add uinput documentation Message-ID: <20170323032356.GA10860@jelly> References: <20170322025820.4108-1-marcos.souza.org@gmail.com> <20170322025820.4108-2-marcos.souza.org@gmail.com> <20170322040331.GA7293@jelly> <20170323025446.GA10447@xfiles> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170323025446.GA10447@xfiles> User-Agent: Mutt/1.7.1 (2016-10-04) X-Greylist: Sender passed SPF test, not delayed by milter-greylist-4.4.3 (mail.clearchain.com [127.0.0.1]); Thu, 23 Mar 2017 13:54:51 +1030 (CST) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1583 Lines: 44 On Wed, Mar 22, 2017 at 11:54:48PM -0300, Marcos Paulo de Souza wrote: > Hi Peter, > > first of all, thanks a lot for reading this patch so quickly and to > point a lot of things to make this doc way better. > > See some notes below. thanks for all the fixes, much appreciated. just two comments below: > On Wed, Mar 22, 2017 at 02:03:31PM +1000, Peter Hutterer wrote: [...] > > > + memset(&ie, 0, sizeof(ie)); > > > + ie.type = type; > > > + ie.code = code; > > > + ie.value = val; > > > + > > > > memset followed by three out of five filled in seems strange. Just add > > ie.time.tv_sec = 0; > > ie.time.tv_usec = 0; > > > > ideally, with a comment that states that the timestamp is ignored :) > > All the code in this doc is the result of my tests using uinput, so > somethings were set in my code some time ago and were never touched > again. Yes, this makes things a way better :) note that if we ship this as documentation, these become the official examples so they *have* to be correct. How many times have you copied something from the examples of a library? Not ideal if there's a bug or just messy code to begin with :) > I fixed a lot of things today, the things that are still missing are the > libevdev example, and the version check. I do think that I can send a > new version tomorrow. As for libevdev: just add a link to the documentation, don't add a libevdev example. libevdev should (and does) provide the examples and you don't want to ship example code that relies on some other library' API. Cheers, Peter