Fix "Unused variable" warning if CONFIG_SUNRPC_DEBUG is not set Signed-off-by: Boaz Harrosh <boazharrosh@xxxxxxxxx> --- git diff --stat -p -M fs/nfsd/nfs4pnfsds.c fs/nfsd/nfs4pnfsds.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/fs/nfsd/nfs4pnfsds.c b/fs/nfsd/nfs4pnfsds.c index 2732f20..ab67523 100644 --- a/fs/nfsd/nfs4pnfsds.c +++ b/fs/nfsd/nfs4pnfsds.c @@ -170,10 +170,9 @@ static int stateid_hashval(stateid_t *stidp) hashval = stateid_hashval(stidp); list_for_each_entry(local, &ds_stid_hashtbl[hashval], ds_hash) if (!memcmp(&local->ds_stid.si_opaque, &stidp->si_opaque, sizeof(stidp->si_opaque))) { - stateid_t *sid = &local->ds_stid; dprintk("NFSD: %s <-- %p ds_flags %lx " STATEID_FMT "\n", __func__, local, local->ds_flags, - STATEID_VAL(sid)); + STATEID_VAL(&local->ds_stid)); return local; } return NULL; -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html