[Cluster-devel] GFS2 -nmw git tree

2010-07-29 Thread Steven Whitehouse
Hi, Since Linus pulled in a GFS2 patch yesterday, I've now rebased the tree on top of that, Steve.

Re: [Cluster-devel] GFS2: Use kmalloc when possible for ->readdir() (try #2)

2010-07-29 Thread Joel Becker
On Wed, Jul 28, 2010 at 10:13:27AM -0700, Andrew Morton wrote: > On Wed, 28 Jul 2010 17:56:23 +0100 Steven Whitehouse > wrote: > > +static void gfs2_free_sort_buffer(void *ptr) > > +{ > > + if (is_vmalloc_addr(ptr)) > > + vfree(ptr); > > + else > > + kfree(ptr); > > +} >