aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/CodingStyle
diff options
context:
space:
mode:
authorJesper Juhl <jj@chaosbits.net>2011-07-06 11:27:17 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2011-07-06 13:17:51 -0700
commit316b3799880c55bb20f6d2db904245eccc30e25f (patch)
treec11d75dfd0e03729d864ccb93745a028e2904663 /Documentation/CodingStyle
parentMAINTAINERS: move kernel-doc patches location (diff)
downloadlinux-dev-316b3799880c55bb20f6d2db904245eccc30e25f.tar.xz
linux-dev-316b3799880c55bb20f6d2db904245eccc30e25f.zip
Documentation: update CodingStyle memory allocators
The list of available general purpose memory allocators in Documentation/CodingStyle chapter 14 is incomplete. This patch adds the missing vzalloc() to the list. Signed-off-by: Jesper Juhl <jj@chaosbits.net> Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'Documentation/CodingStyle')
-rw-r--r--Documentation/CodingStyle4
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/CodingStyle b/Documentation/CodingStyle
index 58b0bf917834..fa6e25b94a54 100644
--- a/Documentation/CodingStyle
+++ b/Documentation/CodingStyle
@@ -680,8 +680,8 @@ ones already enabled by DEBUG.
Chapter 14: Allocating memory
The kernel provides the following general purpose memory allocators:
-kmalloc(), kzalloc(), kcalloc(), and vmalloc(). Please refer to the API
-documentation for further information about them.
+kmalloc(), kzalloc(), kcalloc(), vmalloc(), and vzalloc(). Please refer to
+the API documentation for further information about them.
The preferred form for passing a size of a struct is the following: