Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 107548
b: refs/heads/master
c: 1a3f7d9
h: refs/heads/master
v: v3
  • Loading branch information
Linus Torvalds committed Aug 4, 2008
1 parent b775822 commit 8e23d9c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: fca082c9f1e11ec07efa8d2f9f13688521253f36
refs/heads/master: 1a3f7d98e5f50f21ce6fb1406a35531d9596c5c6
2 changes: 1 addition & 1 deletion trunk/fs/nfs/nfsroot.c
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ enum {
Opt_err
};

static match_table_t __initconst tokens = {
static match_table_t __initdata tokens = {
{Opt_port, "port=%u"},
{Opt_rsize, "rsize=%u"},
{Opt_wsize, "wsize=%u"},
Expand Down
2 changes: 1 addition & 1 deletion trunk/fs/ufs/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -1233,7 +1233,7 @@ static int ufs_show_options(struct seq_file *seq, struct vfsmount *vfs)
{
struct ufs_sb_info *sbi = UFS_SB(vfs->mnt_sb);
unsigned mval = sbi->s_mount_opt & UFS_MOUNT_UFSTYPE;
const struct match_token *tp = tokens;
struct match_token *tp = tokens;

while (tp->token != Opt_onerror_panic && tp->token != mval)
++tp;
Expand Down
2 changes: 1 addition & 1 deletion trunk/include/linux/parser.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ struct match_token {
const char *pattern;
};

typedef const struct match_token match_table_t[];
typedef struct match_token match_table_t[];

/* Maximum number of arguments that match_token will find in a pattern */
enum {MAX_OPT_ARGS = 3};
Expand Down

0 comments on commit 8e23d9c

Please sign in to comment.