* Re: [PATCH] Altix I/O code cleanup
@ 2003-10-13 15:22 Pat Gefre
0 siblings, 0 replies; only message in thread
From: Pat Gefre @ 2003-10-13 15:22 UTC (permalink / raw)
To: linux-ia64
On Mon, 13 Oct 2003, Christoph Hellwig wrote:
+ On Fri, Oct 10, 2003 at 04:49:57PM -0500, Patrick Gefre wrote:
+ > This is my first patch for this - more to come ....
+
+ It would be nice to give those credits who submitted those patches.
+ And life would be a lot simpler if you wouldn't submit my individual
+ patches instead of putting them into a big one - this gives useful
+ entries in the revision history and allows for easier binary search
+ if something goes wrong.
I'm trying to submit this code in small patches - yet still have *some*
amount of utility in them. Some of the code that you submitted had
already been update in our trees by someone else.
+
+ p.s. the right list for this would probably be linux-ia64@vger.kernel.org
OK I switched it over.
+
+ >
+ > void *
+ > -snia_kmem_zalloc(size_t size, int flag)
+ > +snia_kmem_zalloc(size_t size)
+ > {
+ > void *ptr = kmalloc(size, GFP_KERNEL);
+
+ passing a gfp_mask down here would make sense..
Future patches will remove this function all together.
+
+ > - * the alloc/free_node routines do a simple kmalloc for now ..
+ > - */
+ > -void *
+ > -snia_kmem_alloc_node(register size_t size, register int flags, cnodeid_t node)
+ > -{
+ > - /* someday will Allocate on node 'node' */
+ > - return(kmalloc(size, GFP_KERNEL));
+ > -}
+ > -
+ > -void *
+ > -snia_kmem_zalloc_node(register size_t size, register int flags, cnodeid_t node)
+ > -{
+ > - void *ptr = kmalloc(size, GFP_KERNEL);
+ > - if ( ptr )
+ > - BZERO(ptr, size);
+ > - return(ptr);
+ > -}
+
+ Why do you remove the per-nod wrappers? Unlike the other these actually
+ had some use as preparation for a node-aware kmalloc..
It's easy enough to put back in at a future date - when we can do this.
+
+ > int rc;
+ > - extern void * snia_kmem_zalloc(size_t size, int flag);
+ > + extern void * snia_kmem_zalloc(size_t size);
+
+ This is in a header, isn't it?
+
+ >
+ > - xvolinfo = snia_kmem_zalloc(sizeof(struct xswitch_vol_s), GFP_KERNEL);
+ > + xvolinfo = snia_kmem_zalloc(sizeof(struct xswitch_vol_s));
+
+ You still need to handle a NULL return here.
+
+ >
+ > - intr_hdl = snia_kmem_alloc_node(sizeof(struct hub_intr_s), KM_NOSLEEP, cnode);
+ > + intr_hdl = kmalloc(sizeof(struct hub_intr_s), GFP_KERNEL);
+ > ASSERT_ALWAYS(intr_hdl);
+
+ NULL return not handled again (and the assert is totally useless)
+
+ > -#define NEWAf(ptr,n,f) (ptr = snia_kmem_zalloc((n)*sizeof (*(ptr)), (f&PCIIO_NOSLEEP)?KM_NOSLEEP:KM_SLEEP))
+ > -#define NEWA(ptr,n) (ptr = snia_kmem_zalloc((n)*sizeof (*(ptr)), KM_SLEEP))
+ > +#define NEWAf(ptr,n,f) (ptr = snia_kmem_zalloc((n)*sizeof (*(ptr))))
+ > +#define NEWA(ptr,n) (ptr = snia_kmem_zalloc((n)*sizeof (*(ptr))))
+ > #define DELA(ptr,n) (kfree(ptr))
+
+ What about killing this stupid wrappers while you're at it?
+ Also PCIIO_NOSLEEP is never set.
+
Yes coming.
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2003-10-13 15:22 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-10-13 15:22 [PATCH] Altix I/O code cleanup Pat Gefre
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox