* [rfc][patch] clean up redundant code for alloc_pages
@ 2003-02-22 0:31 Matthew Dobson
0 siblings, 0 replies; only message in thread
From: Matthew Dobson @ 2003-02-22 0:31 UTC (permalink / raw)
To: Linus Torvalds, Andrew Morton, Martin Bligh; +Cc: linux-kernel, linux-mm
[-- Attachment #1: Type: text/plain, Size: 500 bytes --]
Well, alloc_pages() and alloc_pages_node() look *REAAALY* similar. This
is a really small patch to just shrink alloc_pages_node() a bit and
point alloc_page() and alloc_pages() at alloc_pages_node() with the
appropriate arguments.
It is a pretty trivial change, just curious if there are any violent
objections to such a change.
[mcd@arrakis push]$ diffstat alloc_pages_cleanup-2.5.62.patch
gfp.h | 18 +++++-------------
1 files changed, 5 insertions(+), 13 deletions(-)
Cheers!
-Matt
[-- Attachment #2: alloc_pages_cleanup-2.5.62.patch --]
[-- Type: text/plain, Size: 1528 bytes --]
diff -Nur --exclude-from=/usr/src/.dontdiff linux-2.5.62-vanilla/include/linux/gfp.h linux-2.5.62-alloc_pages/include/linux/gfp.h
--- linux-2.5.62-vanilla/include/linux/gfp.h Mon Feb 17 14:56:09 2003
+++ linux-2.5.62-alloc_pages/include/linux/gfp.h Fri Feb 21 16:15:59 2003
@@ -49,24 +49,16 @@
extern struct page * FASTCALL(__alloc_pages(unsigned int, unsigned int, struct zonelist *));
static inline struct page * alloc_pages_node(int nid, unsigned int gfp_mask, unsigned int order)
{
- struct pglist_data *pgdat = NODE_DATA(nid);
- unsigned int idx = (gfp_mask & GFP_ZONEMASK);
-
if (unlikely(order >= MAX_ORDER))
return NULL;
- return __alloc_pages(gfp_mask, order, pgdat->node_zonelists + idx);
-}
-static inline struct page * alloc_pages(unsigned int gfp_mask, unsigned int order)
-{
- struct pglist_data *pgdat = NODE_DATA(numa_node_id());
- unsigned int idx = (gfp_mask & GFP_ZONEMASK);
- if (unlikely(order >= MAX_ORDER))
- return NULL;
- return __alloc_pages(gfp_mask, order, pgdat->node_zonelists + idx);
+ return __alloc_pages(gfp_mask, order, NODE_DATA(nid)->node_zonelists + (gfp_mask & GFP_ZONEMASK));
}
-#define alloc_page(gfp_mask) alloc_pages(gfp_mask, 0)
+#define alloc_pages(gfp_mask, order) \
+ alloc_pages_node(numa_node_id(), gfp_mask, order)
+#define alloc_page(gfp_mask) \
+ alloc_pages_node(numa_node_id(), gfp_mask, 0)
extern unsigned long FASTCALL(__get_free_pages(unsigned int gfp_mask, unsigned int order));
extern unsigned long FASTCALL(get_zeroed_page(unsigned int gfp_mask));
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2003-02-22 0:31 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-02-22 0:31 [rfc][patch] clean up redundant code for alloc_pages Matthew Dobson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox