Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1222097 > unrolled thread

[PATCH 0/5] staging: wilc1000: remove kmalloc wrappers

Started byMike Rapoport <mike.rapoport@gmail.com>
First post2015-09-10 12:30 +0200
Last post2015-09-12 06:40 +0200
Articles 2 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH 0/5] staging: wilc1000: remove kmalloc wrappers Mike Rapoport <mike.rapoport@gmail.com> - 2015-09-10 12:30 +0200
    Re: [PATCH 0/5] staging: wilc1000: remove kmalloc wrappers Greg Kroah-Hartman <gregkh@linuxfoundation.org> - 2015-09-12 06:40 +0200

#1222097 — [PATCH 0/5] staging: wilc1000: remove kmalloc wrappers

FromMike Rapoport <mike.rapoport@gmail.com>
Date2015-09-10 12:30 +0200
Subject[PATCH 0/5] staging: wilc1000: remove kmalloc wrappers
Message-ID<q77h8-74B-21@gated-at.bofh.it>
The wilc_memory.[ch] provide wrappers to kmalloc that effectively boil down to
calling to kmalloc with flags=GFP_ATOMIC. Replacing the calls to these wrappers
with direct calls to kmalloc allows removal of the wilc_memory.[ch] files.

Mike Rapoport (5):
  staging: wilc1000: host_interface.c: replace WILC_MALLOC with kmalloc
  staging: wilc1000: wilc_wfi_cfgoperations.c: replace WILC_MALLOC with
    kmalloc
  staging: wilc1000: do not include wilc_memory.h
  staging: wilc1000: make: remove wilc_memory.o from wilc1000-objs
  staging: wilc1000: remove wilc_memory.[ch]

 drivers/staging/wilc1000/Makefile                 |   2 +-
 drivers/staging/wilc1000/host_interface.c         | 145 +++++++++++++---------
 drivers/staging/wilc1000/wilc_memory.c            |  16 ---
 drivers/staging/wilc1000/wilc_memory.h            |  66 ----------
 drivers/staging/wilc1000/wilc_msgqueue.h          |   1 -
 drivers/staging/wilc1000/wilc_oswrapper.h         |   3 -
 drivers/staging/wilc1000/wilc_wfi_cfgoperations.c |  56 ++++++---
 7 files changed, 122 insertions(+), 167 deletions(-)
 delete mode 100644 drivers/staging/wilc1000/wilc_memory.c
 delete mode 100644 drivers/staging/wilc1000/wilc_memory.h

-- 
2.1.0

--
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/

[toc] | [next] | [standalone]


#1223299

FromGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Date2015-09-12 06:40 +0200
Message-ID<q7KLv-6L3-5@gated-at.bofh.it>
In reply to#1222097
On Thu, Sep 10, 2015 at 01:27:52PM +0300, Mike Rapoport wrote:
> The wilc_memory.[ch] provide wrappers to kmalloc that effectively boil down to
> calling to kmalloc with flags=GFP_ATOMIC. Replacing the calls to these wrappers
> with direct calls to kmalloc allows removal of the wilc_memory.[ch] files.

These were done just before you sent them in, sorry.
--
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/

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web