From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-3.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 2ED2DC4363A for ; Sat, 24 Oct 2020 13:13:47 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id EF5AC2177B for ; Sat, 24 Oct 2020 13:13:46 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1761725AbgJXNNp (ORCPT ); Sat, 24 Oct 2020 09:13:45 -0400 Received: from youngberry.canonical.com ([91.189.89.112]:33954 "EHLO youngberry.canonical.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726900AbgJXNNl (ORCPT ); Sat, 24 Oct 2020 09:13:41 -0400 Received: from mail-wm1-f70.google.com ([209.85.128.70]) by youngberry.canonical.com with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1kWJMZ-0007mY-GT for linux-ext4@vger.kernel.org; Sat, 24 Oct 2020 13:13:39 +0000 Received: by mail-wm1-f70.google.com with SMTP id l17so1182142wmb.0 for ; Sat, 24 Oct 2020 06:13:39 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:mime-version :content-disposition; bh=eVttoSXvi/+R5QaLq4CVVO/8VY2PkGXsswXQjE147KQ=; b=M6RbVff6okOiRkeaPkVyab38OulhctgcLyZoIlB8sI68oR4B9mf6sgJ8MNRkytJIib /3SfFp76XlezrjI+/DzcIiugZdDeK2ni2vQcEm5I/jBrQGblPURby1+fxBz46dQzHpEU Azf/P8VtZ3kjfLn4o+8z1OZ2db3rqVdDgQmfqyMK7TRhHi0o9ThuRyvXb2d020mlwHvG /3PVsUev+Ysh3QWd5ZwP/wK5194gRIojbm9HJGC5TPq2Ayqt+5JQgPgSWCATI7zyM8zb 2C4ycgncROYHOHBapN2QHGlhydSxpIanm28+T+3ianR7GzZR/BvlIUYQVzunrqQn3Tgk Po2A== X-Gm-Message-State: AOAM530d1VE5WNuFAdxNWNiDaRUROqFaN5JzOlCoV8l39uC/VMF60BwM /eTSp5bmqIjQZ9s+DWI+RqAXw0gxuCX4N46WqK/qCKc0PcfqPTUshWfElrFosKrrG3tzKTvHkWb 65ZbRt2b5CLzGycE3ov60IJ8ZWIZpGqSZZuwmtiU= X-Received: by 2002:a1c:f719:: with SMTP id v25mr6919188wmh.186.1603545219172; Sat, 24 Oct 2020 06:13:39 -0700 (PDT) X-Google-Smtp-Source: ABdhPJxb4Q7HPONqIXu6KDJ5bPFCRZSabTgLRKzN7DRjvCNRHQmmn9cL4hmqjKPxKsOk91n35/bpIQ== X-Received: by 2002:a1c:f719:: with SMTP id v25mr6919021wmh.186.1603545216681; Sat, 24 Oct 2020 06:13:36 -0700 (PDT) Received: from localhost (host-79-33-123-6.retail.telecomitalia.it. [79.33.123.6]) by smtp.gmail.com with ESMTPSA id c185sm10661303wma.44.2020.10.24.06.13.34 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sat, 24 Oct 2020 06:13:36 -0700 (PDT) Date: Sat, 24 Oct 2020 15:13:33 +0200 From: Andrea Righi To: Harshad Shirwadkar Cc: Theodore Ts'o , Andreas Dilger , linux-ext4@vger.kernel.org, linux-kernel@vger.kernel.org Subject: swap file broken with ext4 fast-commit Message-ID: <20201024131333.GA32124@xps-13-7390> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org I'm getting the following error if I try to create and activate a swap file defined on an ext4 filesystem: [ 34.406479] swapon: file is not committed The swap file is created in the root filesystem (ext4 mounted with the following options): $ grep " / " /proc/mounts /dev/vda1 / ext4 rw,relatime 0 0 No matter how long I wait or how many times I run sync, I'm still getting the same error and the swap file is never activated. A git bisect shows that this issue has been introduced by the following commit: aa75f4d3daae ("ext4: main fast-commit commit path") Simple test case to reproduce the problem: # fallocate -l 8G /swapfile # chmod 0600 /swapfile # mkswap /swapfile # swapon /swapfile Maybe we're missing to mark the inode as clean somewhere, even if the transation is committed to the journal? Thanks, -Andrea