From patchwork Sun Oct 30 02:55:12 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eryu Guan X-Patchwork-Id: 122584 Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 283ADB6F81 for ; Sun, 30 Oct 2011 13:55:47 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933393Ab1J3Czo (ORCPT ); Sat, 29 Oct 2011 22:55:44 -0400 Received: from mail-qw0-f46.google.com ([209.85.216.46]:40055 "EHLO mail-qw0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933352Ab1J3Czo (ORCPT ); Sat, 29 Oct 2011 22:55:44 -0400 Received: by qabj40 with SMTP id j40so4436091qab.19 for ; Sat, 29 Oct 2011 19:55:43 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer; bh=pjT9l+8jr1KspOF8LLFaLvRV5AMskw4MGoL0at7mryc=; b=msskkMyhY653Yc0lNfJLJAIDAlF6w6+Oc4IWWEfcIriY1VQJybY5wflcefFJw+ojBT XfLHTiL8CYf+YGsgwGZaf9VYpHRpksbsg25EY6vwrYcQd/eFP8z9pOHdObvYGDL0Jo3J crUBtdHs4foG863+3gavbYmuDG5jn7RFDcFGE= Received: by 10.224.9.81 with SMTP id k17mr7701256qak.24.1319943343901; Sat, 29 Oct 2011 19:55:43 -0700 (PDT) Received: from localhost ([123.116.132.248]) by mx.google.com with ESMTPS id fz9sm23262765qab.13.2011.10.29.19.55.39 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 29 Oct 2011 19:55:43 -0700 (PDT) From: Eryu Guan To: linux-ext4@vger.kernel.org Cc: Eryu Guan , "Theodore Ts'o" Subject: [PATCH] ext4: remove comments about extent mount option in ext4_new_inode() Date: Sun, 30 Oct 2011 10:55:12 +0800 Message-Id: <1319943312-5534-1-git-send-email-guaneryu@gmail.com> X-Mailer: git-send-email 1.7.7.1 Sender: linux-ext4-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org Remove comments about 'extent' mount option in ext4_new_inode(), it's no longer existed. Cc: "Theodore Ts'o" Signed-off-by: Eryu Guan --- fs/ext4/ialloc.c | 6 +----- 1 files changed, 1 insertions(+), 5 deletions(-) diff --git a/fs/ext4/ialloc.c b/fs/ext4/ialloc.c index 9c63f27..c25b9e5 100644 --- a/fs/ext4/ialloc.c +++ b/fs/ext4/ialloc.c @@ -1005,11 +1005,7 @@ got: ei->i_dir_start_lookup = 0; ei->i_disksize = 0; - /* - * Don't inherit extent flag from directory, amongst others. We set - * extent flag on newly created directory and file only if -o extent - * mount option is specified - */ + /* Don't inherit extent flag from directory, amongst others. */ ei->i_flags = ext4_mask_flags(mode, EXT4_I(dir)->i_flags & EXT4_FL_INHERITED); ei->i_file_acl = 0;