dri-devel.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
From: Bartosz Golaszewski <bgolaszewski@baylibre.com>
To: Matthew Wilcox <willy@infradead.org>
Cc: Linux-ALSA <alsa-devel@alsa-project.org>,
	kvm@vger.kernel.org, "Michael S . Tsirkin" <mst@redhat.com>,
	"David Airlie" <airlied@linux.ie>,
	"Gustavo Padovan" <gustavo@padovan.org>,
	linux-drm <dri-devel@lists.freedesktop.org>,
	"Jaroslav Kysela" <perex@perex.cz>,
	linux-mm@kvack.org, "Christoph Lameter" <cl@linux.com>,
	"Andy Shevchenko" <andriy.shevchenko@linux.intel.com>,
	"Bartosz Golaszewski" <brgl@bgdev.pl>,
	"Alexander Shishkin" <alexander.shishkin@linux.intel.com>,
	"David Rientjes" <rientjes@google.com>,
	virtualization@lists.linux-foundation.org,
	"Jason Wang" <jasowang@redhat.com>,
	linux-media <linux-media@vger.kernel.org>,
	"Robert Richter" <rric@kernel.org>,
	"Thomas Zimmermann" <tzimmermann@suse.de>,
	linaro-mm-sig@lists.linaro.org,
	linux-gpio <linux-gpio@vger.kernel.org>,
	"Borislav Petkov" <bp@alien8.de>,
	"Mauro Carvalho Chehab" <mchehab@kernel.org>,
	"Andrew Morton" <akpm@linux-foundation.org>,
	"Vlastimil Babka" <vbabka@suse.cz>,
	linux-edac@vger.kernel.org, "Tony Luck" <tony.luck@intel.com>,
	netdev <netdev@vger.kernel.org>, "Takashi Iwai" <tiwai@suse.com>,
	LKML <linux-kernel@vger.kernel.org>,
	"Pekka Enberg" <penberg@kernel.org>,
	"James Morse" <james.morse@arm.com>,
	"Joonsoo Kim" <iamjoonsoo.kim@lge.com>,
	"Christian König" <christian.koenig@amd.com>
Subject: Re: [PATCH v2 1/8] mm: slab: provide krealloc_array()
Date: Mon, 2 Nov 2020 16:43:22 +0100	[thread overview]
Message-ID: <CAMpxmJUOb+tR25_h0R1kq7K0d=4DpmutW_V6UggL-+u8u3271g@mail.gmail.com> (raw)
In-Reply-To: <20201102154101.GO27442@casper.infradead.org>

On Mon, Nov 2, 2020 at 4:41 PM Matthew Wilcox <willy@infradead.org> wrote:
>
> On Mon, Nov 02, 2020 at 04:20:30PM +0100, Bartosz Golaszewski wrote:
> > +Chunks allocated with `kmalloc` can be resized with `krealloc`. Similarly
> > +to `kmalloc_array`: a helper for resising arrays is provided in the form of
> > +`krealloc_array`.
>
> Is there any reason you chose to `do_this` instead of do_this()?  The
> automarkup script turns do_this() into a nice link to the documentation
> which you're adding below.
>

No, I just didn't know better. Thanks for bringing this to my attention.

> Typo 'resising' resizing.

Will fix in the next iteration.

Bartosz
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

  reply	other threads:[~2020-11-03  8:16 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-11-02 15:20 [PATCH v2 0/8] slab: provide and use krealloc_array() Bartosz Golaszewski
2020-11-02 15:20 ` [PATCH v2 1/8] mm: slab: provide krealloc_array() Bartosz Golaszewski
2020-11-02 15:41   ` Matthew Wilcox
2020-11-02 15:43     ` Bartosz Golaszewski [this message]
2020-11-02 15:20 ` [PATCH v2 2/8] ALSA: pcm: use krealloc_array() Bartosz Golaszewski
2020-11-02 15:20 ` [PATCH v2 3/8] vhost: vringh: " Bartosz Golaszewski
2020-11-02 15:20 ` [PATCH v2 4/8] pinctrl: " Bartosz Golaszewski
2020-11-02 15:20 ` [PATCH v2 5/8] edac: ghes: " Bartosz Golaszewski
2020-11-02 15:20 ` [PATCH v2 6/8] drm: atomic: " Bartosz Golaszewski
2020-11-02 15:20 ` [PATCH v2 7/8] hwtracing: intel: " Bartosz Golaszewski
2020-11-02 15:20 ` [PATCH v2 8/8] dma-buf: " Bartosz Golaszewski
2020-11-02 16:10   ` Andy Shevchenko
2020-11-03  4:14 ` [PATCH v2 0/8] slab: provide and " Joe Perches
2020-11-03 10:12   ` Bartosz Golaszewski
2020-11-03 10:55     ` Andy Shevchenko

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='CAMpxmJUOb+tR25_h0R1kq7K0d=4DpmutW_V6UggL-+u8u3271g@mail.gmail.com' \
    --to=bgolaszewski@baylibre.com \
    --cc=airlied@linux.ie \
    --cc=akpm@linux-foundation.org \
    --cc=alexander.shishkin@linux.intel.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=andriy.shevchenko@linux.intel.com \
    --cc=bp@alien8.de \
    --cc=brgl@bgdev.pl \
    --cc=christian.koenig@amd.com \
    --cc=cl@linux.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=gustavo@padovan.org \
    --cc=iamjoonsoo.kim@lge.com \
    --cc=james.morse@arm.com \
    --cc=jasowang@redhat.com \
    --cc=kvm@vger.kernel.org \
    --cc=linaro-mm-sig@lists.linaro.org \
    --cc=linux-edac@vger.kernel.org \
    --cc=linux-gpio@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-media@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=mchehab@kernel.org \
    --cc=mst@redhat.com \
    --cc=netdev@vger.kernel.org \
    --cc=penberg@kernel.org \
    --cc=perex@perex.cz \
    --cc=rientjes@google.com \
    --cc=rric@kernel.org \
    --cc=tiwai@suse.com \
    --cc=tony.luck@intel.com \
    --cc=tzimmermann@suse.de \
    --cc=vbabka@suse.cz \
    --cc=virtualization@lists.linux-foundation.org \
    --cc=willy@infradead.org \
    /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 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).