From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: James Clark <james.clark@arm.com>
Cc: Jonathan Corbet <corbet@lwn.net>,
Jean Delvare <jdelvare@suse.com>,
Anand Ashok Dumbre <anand.ashok.dumbre@xilinx.com>,
Jonathan Cameron <jic23@kernel.org>,
Lars-Peter Clausen <lars@metafoo.de>,
Michal Simek <michal.simek@xilinx.com>,
Andy Gross <agross@kernel.org>,
Bjorn Andersson <andersson@kernel.org>,
Konrad Dybcio <konrad.dybcio@linaro.org>,
Jiri Slaby <jirislaby@kernel.org>,
linux-doc@vger.kernel.org, linux-hwmon@vger.kernel.org,
linux-iio@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-arm-msm@vger.kernel.org, linux-serial@vger.kernel.org,
linux-kernel@vger.kernel.org, linux@roeck-us.net,
michal.simek@amd.com, Jonathan.Cameron@huawei.com,
andriy.shevchenko@linux.intel.com
Subject: Re: [PATCH v3 0/4] devres: Provide krealloc_array
Date: Tue, 25 Apr 2023 15:00:22 +0200 [thread overview]
Message-ID: <ZEfO5kXIBVifamC4@kroah.com> (raw)
In-Reply-To: <108babe4-20cb-e637-e7da-7d04127d2a9e@arm.com>
On Tue, Apr 25, 2023 at 01:51:31PM +0100, James Clark wrote:
>
>
> On 20/03/2023 14:57, James Clark wrote:
> > Changes since v2:
> >
> > * Remove change in qcom_geni_serial.c in the last commmit and replace
> > it with a comment instead
> > * Whitespace fix
> >
> > Changes since v1:
> >
> > * Style fix
> >
> > -----------------------
> >
> > Hi,
> >
> > I had a use for a devm realloc_array in a separate change, so I've
> > added one and updated all the obvious existing uses of it that I could
> > find. This is basically a copy paste of the one in slab.h
> >
> > Applies to v6.3-rc3
> >
> > Thanks
> > James
> >
> > James Clark (4):
> > devres: Provide krealloc_array
> > hwmon: pmbus: Use devm_krealloc_array
> > iio: adc: Use devm_krealloc_array
> > serial: qcom_geni: Comment use of devm_krealloc rather than
> > devm_krealloc_array
> >
> > .../driver-api/driver-model/devres.rst | 1 +
> > drivers/hwmon/pmbus/pmbus_core.c | 6 +++---
> > drivers/iio/adc/xilinx-ams.c | 9 +++------
> > drivers/iio/adc/xilinx-xadc-core.c | 17 +++++++----------
> > drivers/tty/serial/qcom_geni_serial.c | 5 +++++
> > include/linux/device.h | 11 +++++++++++
> > 6 files changed, 30 insertions(+), 19 deletions(-)
> >
>
> Hi Greg,
>
> Is it possible to take this one? Or at least the first commit?
It's the middle of the merge window, no one can take anything new,
sorry. Please wait for -rc1 to come out and then resend.
thanks,
greg k-h
WARNING: multiple messages have this Message-ID (diff)
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: James Clark <james.clark@arm.com>
Cc: Jonathan Corbet <corbet@lwn.net>,
Jean Delvare <jdelvare@suse.com>,
Anand Ashok Dumbre <anand.ashok.dumbre@xilinx.com>,
Jonathan Cameron <jic23@kernel.org>,
Lars-Peter Clausen <lars@metafoo.de>,
Michal Simek <michal.simek@xilinx.com>,
Andy Gross <agross@kernel.org>,
Bjorn Andersson <andersson@kernel.org>,
Konrad Dybcio <konrad.dybcio@linaro.org>,
Jiri Slaby <jirislaby@kernel.org>,
linux-doc@vger.kernel.org, linux-hwmon@vger.kernel.org,
linux-iio@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-arm-msm@vger.kernel.org, linux-serial@vger.kernel.org,
linux-kernel@vger.kernel.org, linux@roeck-us.net,
michal.simek@amd.com, Jonathan.Cameron@huawei.com,
andriy.shevchenko@linux.intel.com
Subject: Re: [PATCH v3 0/4] devres: Provide krealloc_array
Date: Tue, 25 Apr 2023 15:00:22 +0200 [thread overview]
Message-ID: <ZEfO5kXIBVifamC4@kroah.com> (raw)
In-Reply-To: <108babe4-20cb-e637-e7da-7d04127d2a9e@arm.com>
On Tue, Apr 25, 2023 at 01:51:31PM +0100, James Clark wrote:
>
>
> On 20/03/2023 14:57, James Clark wrote:
> > Changes since v2:
> >
> > * Remove change in qcom_geni_serial.c in the last commmit and replace
> > it with a comment instead
> > * Whitespace fix
> >
> > Changes since v1:
> >
> > * Style fix
> >
> > -----------------------
> >
> > Hi,
> >
> > I had a use for a devm realloc_array in a separate change, so I've
> > added one and updated all the obvious existing uses of it that I could
> > find. This is basically a copy paste of the one in slab.h
> >
> > Applies to v6.3-rc3
> >
> > Thanks
> > James
> >
> > James Clark (4):
> > devres: Provide krealloc_array
> > hwmon: pmbus: Use devm_krealloc_array
> > iio: adc: Use devm_krealloc_array
> > serial: qcom_geni: Comment use of devm_krealloc rather than
> > devm_krealloc_array
> >
> > .../driver-api/driver-model/devres.rst | 1 +
> > drivers/hwmon/pmbus/pmbus_core.c | 6 +++---
> > drivers/iio/adc/xilinx-ams.c | 9 +++------
> > drivers/iio/adc/xilinx-xadc-core.c | 17 +++++++----------
> > drivers/tty/serial/qcom_geni_serial.c | 5 +++++
> > include/linux/device.h | 11 +++++++++++
> > 6 files changed, 30 insertions(+), 19 deletions(-)
> >
>
> Hi Greg,
>
> Is it possible to take this one? Or at least the first commit?
It's the middle of the merge window, no one can take anything new,
sorry. Please wait for -rc1 to come out and then resend.
thanks,
greg k-h
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next prev parent reply other threads:[~2023-04-25 13:00 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-03-20 14:57 [PATCH v3 0/4] devres: Provide krealloc_array James Clark
2023-03-20 14:57 ` James Clark
2023-03-20 14:57 ` [PATCH v3 1/4] " James Clark
2023-03-20 14:57 ` James Clark
2023-03-20 14:57 ` [PATCH v3 2/4] hwmon: pmbus: Use devm_krealloc_array James Clark
2023-03-20 14:57 ` James Clark
2023-03-20 14:57 ` [PATCH v3 3/4] iio: adc: " James Clark
2023-03-20 14:57 ` James Clark
2023-03-20 14:57 ` [PATCH v3 4/4] serial: qcom_geni: Comment use of devm_krealloc rather than devm_krealloc_array James Clark
2023-03-20 14:57 ` James Clark
2023-03-25 19:14 ` Jonathan Cameron
2023-03-25 19:14 ` Jonathan Cameron
2023-04-25 12:51 ` [PATCH v3 0/4] devres: Provide krealloc_array James Clark
2023-04-25 12:51 ` James Clark
2023-04-25 13:00 ` Greg Kroah-Hartman [this message]
2023-04-25 13:00 ` Greg Kroah-Hartman
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ZEfO5kXIBVifamC4@kroah.com \
--to=gregkh@linuxfoundation.org \
--cc=Jonathan.Cameron@huawei.com \
--cc=agross@kernel.org \
--cc=anand.ashok.dumbre@xilinx.com \
--cc=andersson@kernel.org \
--cc=andriy.shevchenko@linux.intel.com \
--cc=corbet@lwn.net \
--cc=james.clark@arm.com \
--cc=jdelvare@suse.com \
--cc=jic23@kernel.org \
--cc=jirislaby@kernel.org \
--cc=konrad.dybcio@linaro.org \
--cc=lars@metafoo.de \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-doc@vger.kernel.org \
--cc=linux-hwmon@vger.kernel.org \
--cc=linux-iio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-serial@vger.kernel.org \
--cc=linux@roeck-us.net \
--cc=michal.simek@amd.com \
--cc=michal.simek@xilinx.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.