From patchwork Mon Jul 18 02:52:30 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yongqiang Yang X-Patchwork-Id: 105150 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 5DF0FB6F75 for ; Mon, 18 Jul 2011 12:57:01 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752489Ab1GRC5A (ORCPT ); Sun, 17 Jul 2011 22:57:00 -0400 Received: from mail-iy0-f174.google.com ([209.85.210.174]:65169 "EHLO mail-iy0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752352Ab1GRC47 (ORCPT ); Sun, 17 Jul 2011 22:56:59 -0400 Received: by mail-iy0-f174.google.com with SMTP id 12so2725572iyb.19 for ; Sun, 17 Jul 2011 19:56:59 -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:in-reply-to:references; bh=vJ/L93hd4k4iZZynDhqUC4zv9jkG2CmHzDehBAd5aaI=; b=WA3fCe4ZrCMRiC9Jzr+EhXIjiDpct6LXo55t9kX3ulI3kVwEWQIVHQo6dakxgPWdE3 exFg/rTqOrcgZgo7u13yzRw6q3DyQ0ed91ja8AWZx+WmKHo3T5n0VbJtosbBALUBbyYx jrOKxTYox1yNAwK1sUFkh2E3/jdk6I3seZWAM= Received: by 10.42.159.199 with SMTP id m7mr1070969icx.326.1310957819729; Sun, 17 Jul 2011 19:56:59 -0700 (PDT) Received: from localhost.localdomain ([159.226.43.42]) by mx.google.com with ESMTPS id y3sm2592761ibc.37.2011.07.17.19.56.57 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 17 Jul 2011 19:56:59 -0700 (PDT) From: Yongqiang Yang To: linux-ext4@vger.kernel.org Cc: aedilger@gmail.com, Yongqiang Yang Subject: [PATCH 07/12] ext4: fix a typo in ext4_group_extend() Date: Mon, 18 Jul 2011 10:52:30 +0800 Message-Id: <1310957555-15617-8-git-send-email-xiaoqiangnk@gmail.com> X-Mailer: git-send-email 1.7.5.1 In-Reply-To: <1310957555-15617-1-git-send-email-xiaoqiangnk@gmail.com> References: <1310957555-15617-1-git-send-email-xiaoqiangnk@gmail.com> Sender: linux-ext4-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org This patch fixed a typo in ext4_group_extend(). Signed-off-by: Yongqiang Yang --- fs/ext4/resize.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/fs/ext4/resize.c b/fs/ext4/resize.c index 2e63376..4089642 100644 --- a/fs/ext4/resize.c +++ b/fs/ext4/resize.c @@ -996,7 +996,7 @@ int ext4_group_extend(struct super_block *sb, struct ext4_super_block *es, o_blocks_count = ext4_blocks_count(es); if (test_opt(sb, DEBUG)) - printk(KERN_DEBUG "EXT4-fs: extending last group from %llu uto %llu blocks\n", + printk(KERN_DEBUG "EXT4-fs: extending last group from %llu to %llu blocks\n", o_blocks_count, n_blocks_count); if (n_blocks_count == 0 || n_blocks_count == o_blocks_count)