Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758187Ab2EAPSD (ORCPT ); Tue, 1 May 2012 11:18:03 -0400 Received: from youngberry.canonical.com ([91.189.89.112]:46423 "EHLO youngberry.canonical.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756405Ab2EAPSA (ORCPT ); Tue, 1 May 2012 11:18:00 -0400 From: Andy Whitcroft To: Miklos Szeredi , Andy Whitcroft Cc: linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org, mszeredi@suse.cz, Sedat Dilek Subject: [PATCH 5/5] overlayfs: update touch_atime() usage Date: Tue, 1 May 2012 16:17:55 +0100 Message-Id: <1335885475-11990-6-git-send-email-apw@canonical.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1335885475-11990-1-git-send-email-apw@canonical.com> References: <1335885475-11990-1-git-send-email-apw@canonical.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 899 Lines: 28 touch_atime() now has new parametarisation, follow this in overlayfs. Signed-off-by: Andy Whitcroft --- fs/overlayfs/inode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/overlayfs/inode.c b/fs/overlayfs/inode.c index bc9178c..c63fd3f 100644 --- a/fs/overlayfs/inode.c +++ b/fs/overlayfs/inode.c @@ -176,7 +176,7 @@ static int ovl_readlink(struct dentry *dentry, char __user *buf, int bufsiz) if (!realinode->i_op->readlink) return -EINVAL; - touch_atime(realpath.mnt, realpath.dentry); + touch_atime(&realpath); return realinode->i_op->readlink(realpath.dentry, buf, bufsiz); } -- 1.7.9.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/