Received: by 2002:a25:c593:0:0:0:0:0 with SMTP id v141csp3200028ybe; Sun, 15 Sep 2019 09:44:05 -0700 (PDT) X-Google-Smtp-Source: APXvYqx29XpEGnE/hjcEaKCw9tQw5/SArSfLFMlr1tn41sApHkyjdsV9NQXaWpq4l0EMqnjC/UZc X-Received: by 2002:a50:9625:: with SMTP id y34mr21150872eda.72.1568565844936; Sun, 15 Sep 2019 09:44:04 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1568565844; cv=none; d=google.com; s=arc-20160816; b=g+1Uce8AV56wsQ9qt7BTcXHdVYtMhUqV5eHgK57Nx2Ro0ydcouLJx764lme3VLSQFP 6TAzDMFJ2zgqKpXANGPfO2fJD3QZCVVFCQLwQKwRomcrKnx5FKPhCjtGVNaiRHsWddkX y+uJPkylexhiP1A38XxaDdV6Ol67rWOkmzVpS4nVOGEPrw8HqImUou4uvllNZ+ln5Rd3 FOuM2bVr+yT+ZZEH12z7JZZE5JbuFOeF3OScoujJK3wV1VDy/9RN+SmASkS6S87b4LgQ S1/yIUcmtH1a/W69DUnP6LSdSq7NUHaxWPsUzQePnYMgaX7G4eLf+zMn1UvPZXdZvU/J N3Jg== 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 :references:in-reply-to:message-id:subject:cc:to:from:date; bh=7h3YGu/sakIftp3x14e7oxf50H+enKgep3MBWFphD/o=; b=iaskud1XFmTFKgIoc4hzS7S/JA5xoDyPSoQyw7XHBwr7kW7C1HY+jt/OyK0dK8VUti yUi6+ESm9bli94/TzyEkCOF5OisYqRCy1EY8gWglt/NFNxHHlrol9LwLeNksh3OZHisD WxOQvIrFVSoFnkK0qf5aLXbLPRQVWny4dnS5aGfFdcJMtMcBwpD3mQwjgImMOu4+vlaK yQsM+cBYqM4XCQ2L+r6iVgWb4TCwqXDlfZUX1kveS6HMccKf6aW1fay1x2Ij36CaKRwy I+xBLR35eSTKmC98WWqRT67NM0LUpxbkiHCvR4qqE4/rJQApvp/mQl/pWRajFmEffEEL k3PA== 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 a13si18072610ejp.117.2019.09.15.09.43.29; Sun, 15 Sep 2019 09:44:04 -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 S1731550AbfIONrE (ORCPT + 99 others); Sun, 15 Sep 2019 09:47:04 -0400 Received: from saturn.retrosnub.co.uk ([46.235.226.198]:58596 "EHLO saturn.retrosnub.co.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730694AbfIONrD (ORCPT ); Sun, 15 Sep 2019 09:47:03 -0400 Received: from archlinux (cpc149474-cmbg20-2-0-cust94.5-4.cable.virginm.net [82.4.196.95]) by saturn.retrosnub.co.uk (Postfix; Retrosnub mail submission) with ESMTPSA id 923D69E772F; Sun, 15 Sep 2019 14:47:01 +0100 (BST) Date: Sun, 15 Sep 2019 14:47:00 +0100 From: Jonathan Cameron To: William Breathitt Gray Cc: linux-kernel@vger.kernel.org, linux-iio@vger.kernel.org Subject: Re: [RFC 1/4] counter: Simplify the count_read and count_write callbacks Message-ID: <20190915144700.0f7a361d@archlinux> In-Reply-To: <20190915143917.61385369@archlinux> References: <20190915055759.408690-1-vilhelm.gray@gmail.com> <20190915055759.408690-2-vilhelm.gray@gmail.com> <20190915143917.61385369@archlinux> X-Mailer: Claws Mail 3.17.4 (GTK+ 2.24.32; x86_64-pc-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 Sun, 15 Sep 2019 14:39:17 +0100 Jonathan Cameron wrote: > On Sun, 15 Sep 2019 14:57:56 +0900 > William Breathitt Gray wrote: > > > The count_read and count_write callbacks are simplified to pass val as > > unsigned long rather than as an opaque data structure. The opaque > > counter_count_read_value and counter_count_write_value structures, > > counter_count_value_type enum, and relevant counter_count_read_value_set > > and counter_count_write_value_get functions, are removed as they are no > > longer used. > > > > Signed-off-by: William Breathitt Gray > > Seems like a sensible bit of excessive abstraction removal to me. I'm not > totally sure why these got so complex in the first place though. Ah. I should have read the cover letter rather than just diving in the code :) All explained there I see. > > Can you recall the reason as it might help to judge why we no longer > think the same? > > Thanks, > > Jonathan > > --- > > drivers/counter/counter.c | 66 +++++---------------------------------- > > include/linux/counter.h | 43 +++---------------------- > > 2 files changed, 12 insertions(+), 97 deletions(-) > > > > diff --git a/drivers/counter/counter.c b/drivers/counter/counter.c > > index 106bc7180cd8..1d08f1437b1b 100644 > > --- a/drivers/counter/counter.c > > +++ b/drivers/counter/counter.c > > @@ -246,60 +246,6 @@ void counter_signal_read_value_set(struct counter_signal_read_value *const val, > > } > > EXPORT_SYMBOL_GPL(counter_signal_read_value_set); > > > > -/** > > - * counter_count_read_value_set - set counter_count_read_value data > > - * @val: counter_count_read_value structure to set > > - * @type: property Count data represents > > - * @data: Count data > > - * > > - * This function sets an opaque counter_count_read_value structure with the > > - * provided Count data. > > - */ > > -void counter_count_read_value_set(struct counter_count_read_value *const val, > > - const enum counter_count_value_type type, > > - void *const data) > > -{ > > - switch (type) { > > - case COUNTER_COUNT_POSITION: > > - val->len = sprintf(val->buf, "%lu\n", *(unsigned long *)data); > > - break; > > - default: > > - val->len = 0; > > - } > > -} > > -EXPORT_SYMBOL_GPL(counter_count_read_value_set); > > - > > -/** > > - * counter_count_write_value_get - get counter_count_write_value data > > - * @data: Count data > > - * @type: property Count data represents > > - * @val: counter_count_write_value structure containing data > > - * > > - * This function extracts Count data from the provided opaque > > - * counter_count_write_value structure and stores it at the address provided by > > - * @data. > > - * > > - * RETURNS: > > - * 0 on success, negative error number on failure. > > - */ > > -int counter_count_write_value_get(void *const data, > > - const enum counter_count_value_type type, > > - const struct counter_count_write_value *const val) > > -{ > > - int err; > > - > > - switch (type) { > > - case COUNTER_COUNT_POSITION: > > - err = kstrtoul(val->buf, 0, data); > > - if (err) > > - return err; > > - break; > > - } > > - > > - return 0; > > -} > > -EXPORT_SYMBOL_GPL(counter_count_write_value_get); > > - > > struct counter_attr_parm { > > struct counter_device_attr_group *group; > > const char *prefix; > > @@ -788,13 +734,13 @@ static ssize_t counter_count_show(struct device *dev, > > const struct counter_count_unit *const component = devattr->component; > > struct counter_count *const count = component->count; > > int err; > > - struct counter_count_read_value val = { .buf = buf }; > > + unsigned long val; > > > > err = counter->ops->count_read(counter, count, &val); > > if (err) > > return err; > > > > - return val.len; > > + return sprintf(buf, "%lu\n", val); > > } > > > > static ssize_t counter_count_store(struct device *dev, > > @@ -806,9 +752,13 @@ static ssize_t counter_count_store(struct device *dev, > > const struct counter_count_unit *const component = devattr->component; > > struct counter_count *const count = component->count; > > int err; > > - struct counter_count_write_value val = { .buf = buf }; > > + unsigned long val; > > + > > + err = kstrtoul(buf, 0, &val); > > + if (err) > > + return err; > > > > - err = counter->ops->count_write(counter, count, &val); > > + err = counter->ops->count_write(counter, count, val); > > if (err) > > return err; > > > > diff --git a/include/linux/counter.h b/include/linux/counter.h > > index a061cdcdef7c..7e40796598a6 100644 > > --- a/include/linux/counter.h > > +++ b/include/linux/counter.h > > @@ -300,24 +300,6 @@ struct counter_signal_read_value { > > size_t len; > > }; > > > > -/** > > - * struct counter_count_read_value - Opaque Count read value > > - * @buf: string representation of Count read value > > - * @len: length of string in @buf > > - */ > > -struct counter_count_read_value { > > - char *buf; > > - size_t len; > > -}; > > - > > -/** > > - * struct counter_count_write_value - Opaque Count write value > > - * @buf: string representation of Count write value > > - */ > > -struct counter_count_write_value { > > - const char *buf; > > -}; > > - > > /** > > * struct counter_ops - Callbacks from driver > > * @signal_read: optional read callback for Signal attribute. The read > > @@ -328,15 +310,10 @@ struct counter_count_write_value { > > * signal_read callback. > > * @count_read: optional read callback for Count attribute. The read > > * value of the respective Count should be passed back via > > - * the val parameter. val points to an opaque type which > > - * should be set only by calling the > > - * counter_count_read_value_set function from within the > > - * count_read callback. > > + * the val parameter. > > * @count_write: optional write callback for Count attribute. The write > > * value for the respective Count is passed in via the val > > - * parameter. val points to an opaque type which should be > > - * accessed only by calling the > > - * counter_count_write_value_get function. > > + * parameter. > > * @function_get: function to get the current count function mode. Returns > > * 0 on success and negative error code on error. The index > > * of the respective Count's returned function mode should > > @@ -357,11 +334,9 @@ struct counter_ops { > > struct counter_signal *signal, > > struct counter_signal_read_value *val); > > int (*count_read)(struct counter_device *counter, > > - struct counter_count *count, > > - struct counter_count_read_value *val); > > + struct counter_count *count, unsigned long *val); > > int (*count_write)(struct counter_device *counter, > > - struct counter_count *count, > > - struct counter_count_write_value *val); > > + struct counter_count *count, unsigned long val); > > int (*function_get)(struct counter_device *counter, > > struct counter_count *count, size_t *function); > > int (*function_set)(struct counter_device *counter, > > @@ -486,19 +461,9 @@ enum counter_signal_value_type { > > COUNTER_SIGNAL_LEVEL = 0 > > }; > > > > -enum counter_count_value_type { > > - COUNTER_COUNT_POSITION = 0, > > -}; > > - > > void counter_signal_read_value_set(struct counter_signal_read_value *const val, > > const enum counter_signal_value_type type, > > void *const data); > > -void counter_count_read_value_set(struct counter_count_read_value *const val, > > - const enum counter_count_value_type type, > > - void *const data); > > -int counter_count_write_value_get(void *const data, > > - const enum counter_count_value_type type, > > - const struct counter_count_write_value *const val); > > > > int counter_register(struct counter_device *const counter); > > void counter_unregister(struct counter_device *const counter); >