Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754586AbYGaFis (ORCPT ); Thu, 31 Jul 2008 01:38:48 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752052AbYGaFij (ORCPT ); Thu, 31 Jul 2008 01:38:39 -0400 Received: from mailhub.sw.ru ([195.214.232.25]:44480 "EHLO relay.sw.ru" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751678AbYGaFii (ORCPT ); Thu, 31 Jul 2008 01:38:38 -0400 From: "Denis V. Lunev" To: Trond.Myklebust@netapp.com Cc: linux-nfs@vger.kernel.org, linux-kernel@vger.kernel.org, "Denis V. Lunev" Subject: [PATCH 1/1] nfs: ERR_PTR is expected on failure from nfs_do_clone_mount Date: Thu, 31 Jul 2008 09:38:55 +0400 Message-Id: <1217482735-2336-1-git-send-email-den@openvz.org> X-Mailer: git-send-email 1.5.4.5 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 865 Lines: 28 Replace NULL with ERR_PTR(-EINVAL). Signed-off-by: Denis V. Lunev --- fs/nfs/namespace.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/fs/nfs/namespace.c b/fs/nfs/namespace.c index 2f285ef..99d527e 100644 --- a/fs/nfs/namespace.c +++ b/fs/nfs/namespace.c @@ -189,7 +189,7 @@ static struct vfsmount *nfs_do_clone_mount(struct nfs_server *server, struct nfs_clone_mount *mountdata) { #ifdef CONFIG_NFS_V4 - struct vfsmount *mnt = NULL; + struct vfsmount *mnt = ERR_PTR(-EINVAL); switch (server->nfs_client->rpc_ops->version) { case 2: case 3: -- 1.5.4.5 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/