Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1290218
| From | Jonathan Cameron <jic23@kernel.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH 2/3] iio: ina2xx: give the capture kthread a more useful name string. |
| Date | 2015-12-12 17:00 +0100 |
| Message-ID | <qEUKv-42M-39@gated-at.bofh.it> (permalink) |
| References | <qEz3j-71a-5@gated-at.bofh.it> <qEzd0-74w-5@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On 11/12/15 16:49, Marc Titinger wrote: > PID PPID USER STAT VSZ %VSZ %CPU COMMAND > 144 2 root DW 0 0% 33% [ina226:1-8800us] > 141 2 root DW 0 0% 25% [ina226:0-8800us] > 40 2 root SW 0 0% 15% [irq/156-4802a00] > 147 2 root DW 0 0% 7% [ina226:2-8800us] > 145 1 root S 1236 0% 6% dd if /dev/iio:device1 of /dev/null > 148 1 root S 1236 0% 4% dd if /dev/iio:device2 of /dev/null > 149 137 root R 1244 0% 3% top -d 1 > 142 1 root S 1236 0% 2% dd if /dev/iio:device0 of /dev/null > > Signed-off-by: Marc Titinger <mtitinger@baylibre.com> Could have slightly improved your patch, but saying what it was before in the description but otherwise seems reasonable so applied to the togreg branch of iio.git - initially pushed out as testing for the autobuilders to play with it. Thanks, Jonathan > --- > drivers/iio/adc/ina2xx-adc.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/drivers/iio/adc/ina2xx-adc.c b/drivers/iio/adc/ina2xx-adc.c > index fe42872..99afa6e 100644 > --- a/drivers/iio/adc/ina2xx-adc.c > +++ b/drivers/iio/adc/ina2xx-adc.c > @@ -542,7 +542,8 @@ int ina2xx_buffer_enable(struct iio_dev *indio_dev) > chip->prev_ns = iio_get_time_ns(); > > chip->task = kthread_run(ina2xx_capture_thread, (void *)indio_dev, > - "ina2xx-%uus", sampling_us); > + "%s:%d-%uus", indio_dev->name, indio_dev->id, > + sampling_us); > > return PTR_ERR_OR_ZERO(chip->task); > } > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH 1/3] iio: ina2xx: re-instate a sysfs show/store for the shunt resistor value Marc Titinger <mtitinger@baylibre.com> - 2015-12-11 17:50 +0100
[PATCH 3/3] iio: ina2xx: add support for CHAN_INFO_SCALE Marc Titinger <mtitinger@baylibre.com> - 2015-12-11 17:50 +0100
Re: [PATCH 3/3] iio: ina2xx: add support for CHAN_INFO_SCALE Jonathan Cameron <jic23@kernel.org> - 2015-12-12 18:20 +0100
Re: [PATCH 3/3] iio: ina2xx: add support for CHAN_INFO_SCALE Marc Titinger <mtitinger@baylibre.com> - 2015-12-14 11:20 +0100
[PATCH 2/3] iio: ina2xx: give the capture kthread a more useful name string. Marc Titinger <mtitinger@baylibre.com> - 2015-12-11 18:00 +0100
Re: [PATCH 2/3] iio: ina2xx: give the capture kthread a more useful name string. Jonathan Cameron <jic23@kernel.org> - 2015-12-12 17:00 +0100
Re: [PATCH 1/3] iio: ina2xx: re-instate a sysfs show/store for the shunt resistor value Jonathan Cameron <jic23@kernel.org> - 2015-12-12 17:00 +0100
csiph-web