From patchwork Fri Dec 20 05:11:03 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yongqiang Yang X-Patchwork-Id: 303890 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 B71E82C01AE for ; Fri, 20 Dec 2013 16:12:38 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753541Ab3LTFL1 (ORCPT ); Fri, 20 Dec 2013 00:11:27 -0500 Received: from mail-ea0-f171.google.com ([209.85.215.171]:41612 "EHLO mail-ea0-f171.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751232Ab3LTFLZ (ORCPT ); Fri, 20 Dec 2013 00:11:25 -0500 Received: by mail-ea0-f171.google.com with SMTP id h10so810843eak.2 for ; Thu, 19 Dec 2013 21:11:24 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type; bh=RI+Qm+rfJjr54wFGbgGiuyr/WumaIGCNoFPCbqOLlMQ=; b=TV4bIvZvVJwArvSfFKdTd0Io9+faZBB/r+qYSV1EYa9IsbfGm0PlwokK+EglA2PegJ HsWvc0lhxyfD+Ku+U3d6NnN5hp8tVJpVIYavslIp7TzOKWAMVHvYIAibABVOzag7gB6O hH781RATAxKN1IxPJksRQtjJppfH84APMViBHjkkNmwT/OmBU+yP405f10po1ZohWQOG IkWak8PU3ygUOVZBPVXPqkcGcQDgQaqoj/nz5UwcAOFv1ccQFkMA2rlgynMc6X5ClIYj nuAgPwq7ejOguRPknH74iespsyYYtpI9TrAPQxl1JH3iBQuCWGck/PHohnPAjaXcFc41 EU+g== X-Received: by 10.15.49.193 with SMTP id j41mr3559147eew.10.1387516283969; Thu, 19 Dec 2013 21:11:23 -0800 (PST) MIME-Version: 1.0 Received: by 10.14.79.129 with HTTP; Thu, 19 Dec 2013 21:11:03 -0800 (PST) In-Reply-To: <1387515880-10185-1-git-send-email-yangyongqiang01@baidu.com> References: <1387515880-10185-1-git-send-email-yangyongqiang01@baidu.com> From: Yongqiang Yang Date: Fri, 20 Dec 2013 13:11:03 +0800 Message-ID: Subject: Fwd: [RESEND PATCH 1/2] ext4: fix a typo in extents.c To: "Theodore Ts'o" , Ext4 Developers List Sender: linux-ext4-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org From: Yongqiang Yang Signed-off-by: Yongqiang Yang --- fs/ext4/extents.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 1.8.5.2 -- To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/fs/ext4/extents.c b/fs/ext4/extents.c index 54d52af..3654dac 100644 --- a/fs/ext4/extents.c +++ b/fs/ext4/extents.c @@ -3492,7 +3492,7 @@ static int ext4_ext_convert_to_initialized(handle_t *handle, WARN_ON(map->m_lblk < ee_block); /* * It is safe to convert extent to initialized via explicit - * zeroout only if extent is fully insde i_size or new_size. + * zeroout only if extent is fully inside i_size or new_size. */ split_flag |= ee_block + ee_len <= eof_block ? EXT4_EXT_MAY_ZEROOUT : 0;