lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1248327697.24021.661.camel@nimitz>
Date:	Wed, 22 Jul 2009 22:41:37 -0700
From:	Dave Hansen <dave@...ux.vnet.ibm.com>
To:	Benjamin Blum <bblum@...gle.com>
Cc:	vda.linux@...glemail.com, containers@...ts.linux-foundation.org,
	linux-kernel@...r.kernel.org, menage@...gle.com,
	akpm@...ux-foundation.org
Subject: Re: [RFCv2][PATCH] flexible array implementation

On Wed, 2009-07-22 at 16:20 -0700, Benjamin Blum wrote:
> 
> >> How about a resize() function that can be
> >> used to either grow or shrink the array?
> >
> > I think growing is out of the question.  It has a fixed maximum size
> > already.  As for shrinking, there's probably a use case for when
> > something is large, then shrinks back down.  But, I think I'd want to
> > see a user for it, otherwise I'm just guessing at it too much.
> 
> Check out the reallocate logic in pidlist_uniq from my patch (the
> series you linked).

To me, it seems like you should just replace the cgroup_pidlist->list
with a 'struct flex_array *'.  It sounds like you're concerned that a
large cgroup_pidlist that was later shrunk would take up too much space.

That's a valid concern and it would be quite possible to make a
flex_array_clean() or truncate() or something similar.  Such a function,
given an index, could clean out the array at all points past the given
index.  Kinda the opposite of prealloc().

At the same time, you could get the same effect by allocating a new flex
array and doing copies like you are now with the normal arrays.  

-- Dave

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ