From patchwork Tue Sep 19 10:18:19 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Trippelsdorf X-Patchwork-Id: 815406 Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=vger.kernel.org (client-ip=209.132.180.67; helo=vger.kernel.org; envelope-from=linux-ext4-owner@vger.kernel.org; receiver=) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; secure) header.d=mail.ud10.udmedia.de header.i=@mail.ud10.udmedia.de header.b="osNWX+Ax"; dkim-atps=neutral Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 3xxJkM4xZQz9s3T for ; Tue, 19 Sep 2017 20:18:51 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750948AbdISKSX (ORCPT ); Tue, 19 Sep 2017 06:18:23 -0400 Received: from ud10.udmedia.de ([194.117.254.50]:53558 "EHLO mail.ud10.udmedia.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750747AbdISKSV (ORCPT ); Tue, 19 Sep 2017 06:18:21 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=simple; d=mail.ud10.udmedia.de; h= date:from:to:cc:subject:message-id:references:mime-version :content-type:in-reply-to; s=k1; bh=WxVdJiU1MNbnJaCE/4kWemmlrs2a lq26VfV9GB1KgzA=; b=osNWX+Ax+/pDAxZORHwvRhdM1XaTap6L5hRaIHKWe+UN CQgzw01le9RekPCwm/6+ZKBLz+fdonOSmLkrUva/Zpj7CMDQ30nGsJux4lQqA7Ti MSeaBr+Jdx06kVAykAs83CxcF02Pdo045jym6OVOlomcvDuZZVh3ahw2BDurqAI= Received: (qmail 8164 invoked from network); 19 Sep 2017 12:18:19 +0200 Received: from ip5b405f48.dynamic.kabel-deutschland.de (HELO x4) (ud10?360p3@91.64.95.72) by mail.ud10.udmedia.de with ESMTPSA (ECDHE-RSA-AES256-SHA encrypted, authenticated); 19 Sep 2017 12:18:19 +0200 Date: Tue, 19 Sep 2017 12:18:19 +0200 From: Markus Trippelsdorf To: Theodore Ts'o Cc: Andreas Dilger , linux-ext4@vger.kernel.org, Alexander Viro , linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] VFS: Handle lazytime in do_mount() Message-ID: <20170919101819.GA233@x4> References: <20170918192644.GA232@x4> <20170919083506.GA233@x4> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20170919083506.GA233@x4> Sender: linux-ext4-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org The lazytime option didn't get passed on when using current util-linux, which passes MS_LAZYTIME in the mountflags directly. Fix the issue by handling the option in do_mount(). Signed-off-by: Markus Trippelsdorf --- fs/namespace.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fs/namespace.c b/fs/namespace.c index 54059b142d6b..b633838b8f02 100644 --- a/fs/namespace.c +++ b/fs/namespace.c @@ -2823,7 +2823,8 @@ long do_mount(const char *dev_name, const char __user *dir_name, SB_MANDLOCK | SB_DIRSYNC | SB_SILENT | - SB_POSIXACL); + SB_POSIXACL | + MS_LAZYTIME); if (flags & MS_REMOUNT) retval = do_remount(&path, flags, sb_flags, mnt_flags,