All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Document flexible arrays
@ 2009-09-08 23:56 Jonathan Corbet
  2009-09-09  0:20 ` David Rientjes
  0 siblings, 1 reply; 4+ messages in thread
From: Jonathan Corbet @ 2009-09-08 23:56 UTC (permalink / raw)
  To: LKML; +Cc: Andrew Morton, Dave Hansen, David Rientjes

On Thu, 20 Aug 2009 16:35:10 -0600
Jonathan Corbet <corbet@lwn.net> wrote:

> Should it be helpful: I wrote an overview of the flex_array API here:
> 
> 	http://lwn.net/Articles/345273/
> 
> I could format it up for addition to Documentation/ if people want.

Well, it only took me a few weeks...  For the curious, here's a
document for flexible arrays as found in 2.6.31.  Barring objections,
I'll drop it into my docs tree and send it during the upcoming merge
window.

jon

---
Document the flex_array library.

A brief document on how to use flexible arrays, derived from an article
first published on LWN.

Signed-off-by: Jonathan Corbet <corbet@lwn.net>
---
 Documentation/flexible-arrays.txt |   99 +++++++++++++++++++++++++++++++++++++
 1 files changed, 99 insertions(+), 0 deletions(-)
 create mode 100644 Documentation/flexible-arrays.txt

diff --git a/Documentation/flexible-arrays.txt b/Documentation/flexible-arrays.txt
new file mode 100644
index 0000000..39b891b
--- /dev/null
+++ b/Documentation/flexible-arrays.txt
@@ -0,0 +1,99 @@
+Using flexible arrays in the kernel
+Last updated for 2.6.31
+Jonathan Corbet <corbet@lwn.net>
+
+Large contiguous memory allocations can be unreliable in the Linux kernel.
+Kernel programmers will sometimes respond to this problem by allocating
+pages with vmalloc().  This solution not ideal, though.  On 32-bit systems,
+memory from vmalloc() must be mapped into a relatively small address space;
+it's easy to run out.  On SMP systems, the page table changes required by
+vmalloc() allocations can require expensive cross-processor interrupts on
+all CPUs.  And, on all systems, use of space in the vmalloc() range
+increases pressure on the translation lookaside buffer (TLB), reducing the
+performance of the system.
+
+In many cases, the need for memory from vmalloc() can be eliminated by
+piecing together an array from smaller parts; the flexible array library
+exists to make this task easier.
+
+A flexible array holds an arbitrary (within limits) number of fixed-sized
+objects, accessed via an integer index.  Sparse arrays are handled
+reasonably well.  Only single-page allocations are made, so memory
+allocation failures should be relatively rare.  The down sides are that the
+arrays cannot be indexed directly, individual object size cannot exceed the
+system page size, and putting data into a flexible array requires a copy
+operation.  It's also worth noting that flexible arrays do no internal
+locking at all; if concurrent access to an array is possible, then the
+caller must arrange for appropriate mutual exclusion.
+
+The creation of a flexible array is done with:
+
+    #include <linux/flex_array.h>
+
+    struct flex_array *flex_array_alloc(int element_size,
+					unsigned int total,
+					gfp_t flags);
+
+The individual object size is provided by element_size, while total is the
+maximum number of objects which can be stored in the array.  The flags
+argument is passed directly to the internal memory allocation calls.  With
+the current code, using flags to ask for high memory is likely to lead to
+notably unpleasant side effects.
+
+Storing data into a flexible array is accomplished with a call to:
+
+    int flex_array_put(struct flex_array *array, unsigned int element_nr,
+    		       void *src, gfp_t flags);
+
+This call will copy the data from src into the array, in the position
+indicated by element_nr (which must be less than the maximum specified when
+the array was created).  If any memory allocations must be performed, flags
+will be used.  The return value is zero on success, a negative error code
+otherwise.
+
+There might possibly be a need to store data into a flexible array while
+running in some sort of atomic context; in this situation, sleeping in the
+memory allocator would be a bad thing.  That can be avoided by using
+GFP_ATOMIC for the flags value, but, often, there is a better way.  The
+trick is to ensure that any needed memory allocations are done before
+entering atomic context, using:
+
+    int flex_array_prealloc(struct flex_array *array, unsigned int start,
+			    unsigned int end, gfp_t flags);
+
+This function will ensure that memory for the elements indexed in the range
+defined by start and end has been allocated.  Thereafter, a
+flex_array_put() call on an element in that range is guaranteed not to
+block.
+
+Getting data back out of the array is done with:
+
+    void *flex_array_get(struct flex_array *fa, unsigned int element_nr);
+
+The return value is a pointer to the data element, or NULL if that
+particular element has never been allocated.
+
+Note that it is possible to get back a valid pointer for an element which
+has never been stored in the array.  Memory for array elements is allocated
+one page at a time; a single allocation could provide memory for several
+adjacent elements.  The flexible array code does not know if a specific
+element has been written; it only knows if the associated memory is
+present.  So a flex_array_get() call on an element which was never stored
+in the array has the potential to return a pointer to random data.  If the
+caller does not have a separate way to know which elements were actually
+stored, it might be wise, at least, to add GFP_ZERO to the flags argument
+to ensure that all elements are zeroed.
+
+There is no way to remove a single element from the array.  It is possible,
+though, to remove all elements with a call to:
+
+    void flex_array_free_parts(struct flex_array *array);
+
+This call frees all elements, but leaves the array itself in place.
+Freeing the entire array is done with:
+
+    void flex_array_free(struct flex_array *array);
+
+As of this writing, there are no users of flexible arrays in the mainline
+kernel.  The functions described here are also not exported to modules;
+that will probably be fixed when somebody comes up with a need for it.
-- 
1.6.2.5


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] Document flexible arrays
  2009-09-08 23:56 [PATCH] Document flexible arrays Jonathan Corbet
@ 2009-09-09  0:20 ` David Rientjes
  2009-09-09 13:13   ` Jonathan Corbet
  0 siblings, 1 reply; 4+ messages in thread
From: David Rientjes @ 2009-09-09  0:20 UTC (permalink / raw)
  To: Jonathan Corbet; +Cc: LKML, Andrew Morton, Dave Hansen

On Tue, 8 Sep 2009, Jonathan Corbet wrote:

> Document the flex_array library.
> 
> A brief document on how to use flexible arrays, derived from an article
> first published on LWN.
> 
> Signed-off-by: Jonathan Corbet <corbet@lwn.net>

Hmm, there are a number of changes in -mm that conflict with the 
description given in this document (element poisoning, DEFINE_FLEX_ARRAY, 
array shrinking, etc).  Perhaps this could be based on the -mm behavior 
and get pushed through Andrew so that it's consistent when merged for 
2.6.32?

Thanks for writing this up, it's very descriptive and understandable.  I 
think there's some question right now about whether flex arrays will be 
very popular given we haven't identified any potential users at the 
moment, though.  Adding this documentation may help in getting new code to 
use it and inspire existing code to convert, so I think it's a good idea 
if flex arrays are indeed here to stay.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] Document flexible arrays
  2009-09-09  0:20 ` David Rientjes
@ 2009-09-09 13:13   ` Jonathan Corbet
  2009-09-09 19:26     ` David Rientjes
  0 siblings, 1 reply; 4+ messages in thread
From: Jonathan Corbet @ 2009-09-09 13:13 UTC (permalink / raw)
  To: David Rientjes; +Cc: LKML, Andrew Morton, Dave Hansen

On Tue, 8 Sep 2009 17:20:16 -0700 (PDT)
David Rientjes <rientjes@google.com> wrote:

> Hmm, there are a number of changes in -mm that conflict with the 
> description given in this document (element poisoning, DEFINE_FLEX_ARRAY, 
> array shrinking, etc).  Perhaps this could be based on the -mm behavior 
> and get pushed through Andrew so that it's consistent when merged for 
> 2.6.32?

I've seen those patches going by.  The problem is that documenting
existing, in-mainline APIs is challenging enough; trying to document
maybe-next-release versions is a recipe for frustration.  So I'd really
rather start with a document that describes the current state of the
art; I promise I'll update it when the other changes go in.

Sound reasonable?

Thanks,

jon

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] Document flexible arrays
  2009-09-09 13:13   ` Jonathan Corbet
@ 2009-09-09 19:26     ` David Rientjes
  0 siblings, 0 replies; 4+ messages in thread
From: David Rientjes @ 2009-09-09 19:26 UTC (permalink / raw)
  To: Jonathan Corbet; +Cc: LKML, Andrew Morton, Dave Hansen

On Wed, 9 Sep 2009, Jonathan Corbet wrote:

> > Hmm, there are a number of changes in -mm that conflict with the 
> > description given in this document (element poisoning, DEFINE_FLEX_ARRAY, 
> > array shrinking, etc).  Perhaps this could be based on the -mm behavior 
> > and get pushed through Andrew so that it's consistent when merged for 
> > 2.6.32?
> 
> I've seen those patches going by.  The problem is that documenting
> existing, in-mainline APIs is challenging enough; trying to document
> maybe-next-release versions is a recipe for frustration.  So I'd really
> rather start with a document that describes the current state of the
> art; I promise I'll update it when the other changes go in.
> 

If you're going to push it yourself, I guess that's fine.  But if it's 
going through -mm, I don't think it would be helpful for the documentation 
to be inconsistent with the library in that kernel.  I'll probably be 
forced to update it myself when the changes are merged by Linus.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-09-09 19:26 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-09-08 23:56 [PATCH] Document flexible arrays Jonathan Corbet
2009-09-09  0:20 ` David Rientjes
2009-09-09 13:13   ` Jonathan Corbet
2009-09-09 19:26     ` David Rientjes

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.