All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/4] autofs scaling and cleanup patches
@ 2009-01-09 18:46 Valerie Aurora Henson
  2009-01-09 18:47 ` [PATCH 1/4] Make hash table scale to thousands of entries Valerie Aurora Henson
  0 siblings, 1 reply; 66+ messages in thread
From: Valerie Aurora Henson @ 2009-01-09 18:46 UTC (permalink / raw)
  To: autofs

This is a small collection of patches generated from discussions with
Google folks.  The first makes the mount entry cache scale to
thousands of entries.  The second is prep for the next patch; it just
cleans up use of fixed buffer sizes so that it's easier to tell what's
going on.  The third removes some instances of alloca() - I had the
help of Coccinelle on this one.  The fourth fixes an include to use
the userland include instead of the kernel include.

Valerie Aurora Henson (4):
  Make hash table scale to thousands of entries
  Make MAX_ERR_BUF and PARSE_MAX_BUF use easier to audit
  Easy alloca() replacements
  Replace <linux/string.h> with <string.h>

 daemon/automount.c             |    6 ++--
 daemon/direct.c                |    8 ++----
 daemon/flag.c                  |   12 +++++-----
 daemon/indirect.c              |    8 ++----
 daemon/module.c                |   42 +++++++++------------------------
 include/automount.h            |    2 +-
 include/linux/auto_dev-ioctl.h |    2 +-
 lib/cache.c                    |   49 +++++++++++++++++++--------------------
 lib/cat_path.c                 |    1 -
 modules/lookup_ldap.c          |   49 ++++++++++++++++++----------------------
 modules/lookup_nisplus.c       |   22 ++++++++++++++----
 modules/mount_autofs.c         |    1 -
 modules/mount_bind.c           |    7 +----
 modules/mount_changer.c        |    5 +---
 modules/mount_ext2.c           |    5 +---
 modules/mount_generic.c        |    5 +---
 16 files changed, 97 insertions(+), 127 deletions(-)

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

end of thread, other threads:[~2009-01-19  6:13 UTC | newest]

Thread overview: 66+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-09 18:46 [PATCH 0/4] autofs scaling and cleanup patches Valerie Aurora Henson
2009-01-09 18:47 ` [PATCH 1/4] Make hash table scale to thousands of entries Valerie Aurora Henson
2009-01-09 18:47   ` [PATCH 2/4] Make MAX_ERR_BUF and PARSE_MAX_BUF use easier to audit Valerie Aurora Henson
2009-01-09 18:47     ` [PATCH 3/4] Easy alloca() replacements Valerie Aurora Henson
2009-01-09 18:47       ` [PATCH 4/4] Replace <linux/string.h> with <string.h> Valerie Aurora Henson
2009-01-12  5:59         ` Ian Kent
2009-01-09 20:48       ` [PATCH 3/4] Easy alloca() replacements Valerie Aurora Henson
2009-01-10  3:18       ` Ian Kent
2009-01-16 22:11         ` Valerie Aurora Henson
2009-01-09 19:00     ` [PATCH 2/4] Make MAX_ERR_BUF and PARSE_MAX_BUF use easier to audit Jeff Moyer
2009-01-09 19:54       ` Valerie Aurora Henson
2009-01-09 19:17   ` [PATCH 1/4] Make hash table scale to thousands of entries Jeff Moyer
2009-01-09 19:51     ` Valerie Aurora Henson
2009-01-10  1:19       ` Paul Wankadia
2009-01-11 16:42         ` Ian Kent
2009-01-11 23:25           ` Paul Wankadia
2009-01-12  1:13             ` Ian Kent
2009-01-12  1:19             ` Ian Kent
2009-01-12  2:10               ` Paul Wankadia
2009-01-12  4:02               ` Ian Kent
2009-01-12  4:58                 ` Ian Kent
2009-01-13  1:52                   ` Paul Wankadia
2009-01-13  2:24                     ` Ian Kent
2009-01-13  4:15                       ` Ian Kent
2009-01-13  5:07                         ` Paul Wankadia
2009-01-13  5:19                           ` Ian Kent
2009-01-14  3:43                             ` Paul Wankadia
2009-01-14  8:47                               ` Ian Kent
2009-01-14 10:52                                 ` Paul Wankadia
2009-01-14 13:17                                   ` Ian Kent
2009-01-14 14:20                                     ` Paul Wankadia
2009-01-15  1:41                                       ` Ian Kent
2009-01-15 15:04                                         ` Jeff Moyer
2009-01-15 15:16                                           ` Ian Kent
2009-01-15 20:33                                             ` Paul Wankadia
2009-01-15 20:41                                               ` Jeff Moyer
2009-01-15 20:57                                                 ` Paul Wankadia
2009-01-16  0:27                                                   ` Ian Kent
2009-01-16  0:40                                                     ` Ian Kent
2009-01-16  1:43                                                       ` Ian Kent
2009-01-16  3:59                                                         ` Paul Wankadia
2009-01-16  4:21                                                           ` Ian Kent
2009-01-16  5:05                                                             ` Ian Kent
2009-01-16  6:04                                                             ` Paul Wankadia
2009-01-16  6:24                                                               ` Ian Kent
2009-01-16  6:39                                                                 ` Ian Kent
2009-01-17 17:11                                                                   ` Paul Wankadia
2009-01-18  3:26                                                                     ` Ian Kent
2009-01-19  1:28                                                                       ` Paul Wankadia
2009-01-19  2:03                                                                         ` Ian Kent
2009-01-19  5:23                                                                           ` Paul Wankadia
2009-01-19  6:13                                                                             ` Ian Kent
2009-01-16  5:23                                                         ` Ian Kent
2009-01-16  0:33                                             ` Ian Kent
2009-01-10 14:45       ` Ian Kent
2009-01-10  2:07     ` Ian Kent
2009-01-10  3:29   ` Ian Kent
2009-01-10  3:57     ` Ian Kent
2009-01-13  5:51   ` Ian Kent
2009-01-14  3:58     ` Paul Wankadia
2009-01-14  8:48       ` Ian Kent
2009-01-15  2:47         ` Valerie Aurora Henson
2009-01-15  3:02           ` Ian Kent
2009-01-16 21:39             ` Valerie Aurora Henson
2009-01-15  5:06           ` Paul Wankadia
2009-01-15  4:42       ` Ian Kent

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.