[PATCH 2.6.6-rc2-mm1] BUGFIX - autofs4

From: FabF
Date: Wed Apr 21 2004 - 14:04:59 EST


Andrew,

Here's a bugfix against autofs4 (AFAICS, we parse_int to fd without
check) and parser optimization.

Could you apply ?

Regards,
Fabian
diff -Naur orig/fs/autofs4/inode.c edited/fs/autofs4/inode.c
--- orig/fs/autofs4/inode.c 2004-04-21 18:11:01.000000000 +0200
+++ edited/fs/autofs4/inode.c 2004-04-21 20:56:30.000000000 +0200
@@ -132,34 +132,25 @@
continue;

token = match_token(p, tokens, args);
+ if (match_int(args, pipefd))
+ return 1;
switch (token) {
case Opt_fd:
- if (match_int(args, pipefd))
- return 1;
+ *pipefd = option;
break;
case Opt_uid:
- if (match_int(args, &option))
- return 1;
*uid = option;
break;
case Opt_gid:
- if (match_int(args, &option))
- return 1;
*gid = option;
break;
case Opt_pgrp:
- if (match_int(args, &option))
- return 1;
*pgrp = option;
break;
case Opt_minproto:
- if (match_int(args, &option))
- return 1;
*minproto = option;
break;
case Opt_maxproto:
- if (match_int(args, &option))
- return 1;
*maxproto = option;
break;
default: