summaryrefslogtreecommitdiff
path: root/lib/parser.c
AgeCommit message (Collapse)Author
2007-05-03[AFS]: Make the match_*() functions take const options.David Howells
Make the match_*() functions take a const pointer to the options table and make strings pointers in the options table const too. Signed-off-by: David Howells <dhowells@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
2004-11-10[PATCH] lib/parser: fix %% parsingDomen Puncer
Code looks like it intended to parse "%%" in pattern string as "%". Fix it, so it really does that. Compile and run tested. Signed-off-by: Domen Puncer <domen@coderock.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2003-12-29[PATCH] Add lib/parser.c kernel-docAndrew Morton
From: Will Dyson <will_dyson@pobox.com> Add documentation and comments to lib/parser.c and include/linux/parser.h
2003-10-05[PATCH] lib/parser: Not recognize nul string as "%s" (6/6)Hirofumi Ogawa
Current match_token recognize "foo=" as "foo=%s". So this change the nul string does not recognize as "%s".
2003-10-01[PATCH] table-driven filesystems option parsingAndrew Morton
From: "Randy.Dunlap" <rddunlap@osdl.org>, Will Dyson <will_dyson@pobox.com>, me Add generic filesystem options parser (infrastructure) and use it to parse mount options in several filesystems (adfs, affs, autofs, autofs4, ext2, ext3, fat, hfs, hpfs, isofs, jfs, procfs, udf, and ufs). It saves between 128 and 512 bytes per filesystem.