[PATCH] FUSE - fix variable with confusing name

From: Miklos Szeredi
Date: Fri Jan 14 2005 - 07:50:47 EST


Andrew,

This patch fixes a variable name that looks like it's shadowing a
function (spotted by Michael Waychison).

Signed-off-by: Miklos Szeredi <miklos@xxxxxxxxxx>
diff -rup linux-2.6.11-rc1-mm1/fs/fuse/dev.c linux-2.6.11-rc1-mm1-fuse/fs/fuse/dev.c
--- linux-2.6.11-rc1-mm1/fs/fuse/dev.c 2005-01-14 12:30:07.000000000 +0100
+++ linux-2.6.11-rc1-mm1-fuse/fs/fuse/dev.c 2005-01-14 12:44:36.000000000 +0100
@@ -53,10 +53,10 @@ void fuse_request_free(struct fuse_req *

static inline void block_sigs(sigset_t *oldset)
{
- sigset_t sigmask;
+ sigset_t mask;

- siginitsetinv(&sigmask, sigmask(SIGKILL));
- sigprocmask(SIG_BLOCK, &sigmask, oldset);
+ siginitsetinv(&mask, sigmask(SIGKILL));
+ sigprocmask(SIG_BLOCK, &mask, oldset);
}

static inline void restore_sigs(sigset_t *oldset)

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/