From mboxrd@z Thu Jan 1 00:00:00 1970 From: Francis Moreau Subject: [PATCH] Remove useless affectation in __lookup_mnt() Date: Thu, 15 Apr 2010 21:39:54 +0200 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 To: linux-fsdevel@vger.kernel.org Return-path: Received: from fg-out-1718.google.com ([72.14.220.158]:21620 "EHLO fg-out-1718.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754862Ab0DOTj6 (ORCPT ); Thu, 15 Apr 2010 15:39:58 -0400 Received: by fg-out-1718.google.com with SMTP id 19so2964943fgg.1 for ; Thu, 15 Apr 2010 12:39:55 -0700 (PDT) Sender: linux-fsdevel-owner@vger.kernel.org List-ID: --- fs/namespace.c | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/fs/namespace.c b/fs/namespace.c index 8174c8a..bfc0e8e 100644 --- a/fs/namespace.c +++ b/fs/namespace.c @@ -420,7 +420,6 @@ struct vfsmount *__lookup_mnt(struct vfsmount *mnt, struct dentry *dentry, for (;;) { tmp = dir ? tmp->next : tmp->prev; - p = NULL; if (tmp == head) break; p = list_entry(tmp, struct vfsmount, mnt_hash); -- 1.7.0.2