diff options
author | Jiro SEKIBA <jir@unicus.jp> | 2009-11-12 00:07:27 -0500 |
---|---|---|
committer | Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp> | 2009-11-19 20:05:47 -0500 |
commit | e2073e78575e3690ea3cce67b11b7b1de8e85fd3 (patch) | |
tree | 46a43afec32b87abac0967bb5b19dec0a8708f3d /fs/nilfs2 | |
parent | 91f1953bf3243a4215b57d8e2f317a7035924de7 (diff) |
nilfs2: cleanup unused match_bool function
match_bool function is not used anymore.
Signed-off-by: Jiro SEKIBA <jir@unicus.jp>
Signed-off-by: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
Diffstat (limited to 'fs/nilfs2')
-rw-r--r-- | fs/nilfs2/super.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/fs/nilfs2/super.c b/fs/nilfs2/super.c index 02dcbb008673..b6837f48636f 100644 --- a/fs/nilfs2/super.c +++ b/fs/nilfs2/super.c | |||
@@ -582,19 +582,6 @@ static match_table_t tokens = { | |||
582 | {Opt_err, NULL} | 582 | {Opt_err, NULL} |
583 | }; | 583 | }; |
584 | 584 | ||
585 | static int match_bool(substring_t *s, int *result) | ||
586 | { | ||
587 | int len = s->to - s->from; | ||
588 | |||
589 | if (strncmp(s->from, "on", len) == 0) | ||
590 | *result = 1; | ||
591 | else if (strncmp(s->from, "off", len) == 0) | ||
592 | *result = 0; | ||
593 | else | ||
594 | return 1; | ||
595 | return 0; | ||
596 | } | ||
597 | |||
598 | static int parse_options(char *options, struct super_block *sb) | 585 | static int parse_options(char *options, struct super_block *sb) |
599 | { | 586 | { |
600 | struct nilfs_sb_info *sbi = NILFS_SB(sb); | 587 | struct nilfs_sb_info *sbi = NILFS_SB(sb); |