* [PATCH v2] iio: generic_buffer: be helpful about enabling channels
@ 2015-08-10 8:55 Linus Walleij
2015-08-11 18:20 ` Hartmut Knaack
0 siblings, 1 reply; 3+ messages in thread
From: Linus Walleij @ 2015-08-10 8:55 UTC (permalink / raw)
To: Jonathan Cameron, linux-iio; +Cc: Linus Walleij
Currently if generic_buffer is invoked without first enabling any
channels in scan_elements/*_en, it will fail unable to enable the
buffer because bytes_per_datum inside the kernel will be zero if
no channels are available.
It is implied that the user of the program should enable channels
manually or with a script before executing generic_buffer.
Be more helpful by stopping execution if no enabled channels can
be found, and print a helptext that will tell you what is wrong
and what needs to be done.
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
---
ChangeLog v1->v2:
- Rebased on the "togreg" branch
- Print errors to stderr as requested by Hartmut
---
tools/iio/generic_buffer.c | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/tools/iio/generic_buffer.c b/tools/iio/generic_buffer.c
index 9f7b85bf6ada..01c4f67801e0 100644
--- a/tools/iio/generic_buffer.c
+++ b/tools/iio/generic_buffer.c
@@ -328,6 +328,15 @@ int main(int argc, char **argv)
"diag %s\n", dev_dir_name);
goto error_free_triggername;
}
+ if (!num_channels) {
+ fprintf(stderr,
+ "No channels are enabled, we have nothing to scan.\n");
+ fprintf(stderr, "Enable channels manually in "
+ FORMAT_SCAN_ELEMENTS_DIR
+ "/*_en and try again.\n", dev_dir_name);
+ ret = -ENOENT;
+ goto error_free_triggername;
+ }
/*
* Construct the directory name for the associated buffer.
--
2.4.3
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v2] iio: generic_buffer: be helpful about enabling channels
2015-08-10 8:55 [PATCH v2] iio: generic_buffer: be helpful about enabling channels Linus Walleij
@ 2015-08-11 18:20 ` Hartmut Knaack
2015-08-15 15:18 ` Jonathan Cameron
0 siblings, 1 reply; 3+ messages in thread
From: Hartmut Knaack @ 2015-08-11 18:20 UTC (permalink / raw)
To: Linus Walleij, Jonathan Cameron, linux-iio
Linus Walleij schrieb am 10.08.2015 um 10:55:
> Currently if generic_buffer is invoked without first enabling any
> channels in scan_elements/*_en, it will fail unable to enable the
> buffer because bytes_per_datum inside the kernel will be zero if
> no channels are available.
>
> It is implied that the user of the program should enable channels
> manually or with a script before executing generic_buffer.
>
> Be more helpful by stopping execution if no enabled channels can
> be found, and print a helptext that will tell you what is wrong
> and what needs to be done.
>
> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Acked-by: Hartmut Knaack <knaack.h@gmx.de>
> ---
> ChangeLog v1->v2:
> - Rebased on the "togreg" branch
> - Print errors to stderr as requested by Hartmut
> ---
> tools/iio/generic_buffer.c | 9 +++++++++
> 1 file changed, 9 insertions(+)
>
> diff --git a/tools/iio/generic_buffer.c b/tools/iio/generic_buffer.c
> index 9f7b85bf6ada..01c4f67801e0 100644
> --- a/tools/iio/generic_buffer.c
> +++ b/tools/iio/generic_buffer.c
> @@ -328,6 +328,15 @@ int main(int argc, char **argv)
> "diag %s\n", dev_dir_name);
> goto error_free_triggername;
> }
> + if (!num_channels) {
> + fprintf(stderr,
> + "No channels are enabled, we have nothing to scan.\n");
> + fprintf(stderr, "Enable channels manually in "
> + FORMAT_SCAN_ELEMENTS_DIR
> + "/*_en and try again.\n", dev_dir_name);
> + ret = -ENOENT;
> + goto error_free_triggername;
> + }
>
> /*
> * Construct the directory name for the associated buffer.
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v2] iio: generic_buffer: be helpful about enabling channels
2015-08-11 18:20 ` Hartmut Knaack
@ 2015-08-15 15:18 ` Jonathan Cameron
0 siblings, 0 replies; 3+ messages in thread
From: Jonathan Cameron @ 2015-08-15 15:18 UTC (permalink / raw)
To: Hartmut Knaack, Linus Walleij, linux-iio
On 11/08/15 19:20, Hartmut Knaack wrote:
> Linus Walleij schrieb am 10.08.2015 um 10:55:
>> Currently if generic_buffer is invoked without first enabling any
>> channels in scan_elements/*_en, it will fail unable to enable the
>> buffer because bytes_per_datum inside the kernel will be zero if
>> no channels are available.
>>
>> It is implied that the user of the program should enable channels
>> manually or with a script before executing generic_buffer.
>>
>> Be more helpful by stopping execution if no enabled channels can
>> be found, and print a helptext that will tell you what is wrong
>> and what needs to be done.
>>
>> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
> Acked-by: Hartmut Knaack <knaack.h@gmx.de>
Applied. Thanks for clearing this up.
Jonathan
>> ---
>> ChangeLog v1->v2:
>> - Rebased on the "togreg" branch
>> - Print errors to stderr as requested by Hartmut
>> ---
>> tools/iio/generic_buffer.c | 9 +++++++++
>> 1 file changed, 9 insertions(+)
>>
>> diff --git a/tools/iio/generic_buffer.c b/tools/iio/generic_buffer.c
>> index 9f7b85bf6ada..01c4f67801e0 100644
>> --- a/tools/iio/generic_buffer.c
>> +++ b/tools/iio/generic_buffer.c
>> @@ -328,6 +328,15 @@ int main(int argc, char **argv)
>> "diag %s\n", dev_dir_name);
>> goto error_free_triggername;
>> }
>> + if (!num_channels) {
>> + fprintf(stderr,
>> + "No channels are enabled, we have nothing to scan.\n");
>> + fprintf(stderr, "Enable channels manually in "
>> + FORMAT_SCAN_ELEMENTS_DIR
>> + "/*_en and try again.\n", dev_dir_name);
>> + ret = -ENOENT;
>> + goto error_free_triggername;
>> + }
>>
>> /*
>> * Construct the directory name for the associated buffer.
>>
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-iio" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-08-15 15:18 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-10 8:55 [PATCH v2] iio: generic_buffer: be helpful about enabling channels Linus Walleij
2015-08-11 18:20 ` Hartmut Knaack
2015-08-15 15:18 ` Jonathan Cameron
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).