From patchwork Tue Apr 17 17:41:08 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Weil X-Patchwork-Id: 153262 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id D8660B7055 for ; Wed, 18 Apr 2012 03:41:33 +1000 (EST) Received: from localhost ([::1]:53247 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SKCPD-00047s-Nl for incoming@patchwork.ozlabs.org; Tue, 17 Apr 2012 13:41:31 -0400 Received: from eggs.gnu.org ([208.118.235.92]:49514) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SKCP4-00046S-5g for qemu-devel@nongnu.org; Tue, 17 Apr 2012 13:41:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SKCOx-0006p6-Oo for qemu-devel@nongnu.org; Tue, 17 Apr 2012 13:41:21 -0400 Received: from v220110690675601.yourvserver.net ([78.47.199.172]:42420) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SKCOx-0006oW-Id; Tue, 17 Apr 2012 13:41:15 -0400 Received: from localhost (v220110690675601.yourvserver.net.local [127.0.0.1]) by v220110690675601.yourvserver.net (Postfix) with ESMTP id 899AD72800B3; Tue, 17 Apr 2012 19:41:13 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at weilnetz.de Received: from v220110690675601.yourvserver.net ([127.0.0.1]) by localhost (v220110690675601.yourvserver.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id U84024vNfNLZ; Tue, 17 Apr 2012 19:41:08 +0200 (CEST) Received: by v220110690675601.yourvserver.net (Postfix, from userid 1000) id CB96672800B5; Tue, 17 Apr 2012 19:41:08 +0200 (CEST) From: Stefan Weil To: qemu-devel@nongnu.org Date: Tue, 17 Apr 2012 19:41:08 +0200 Message-Id: <1334684468-2522-1-git-send-email-sw@weilnetz.de> X-Mailer: git-send-email 1.7.9 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 78.47.199.172 Cc: qemu-trivial@nongnu.org, Kevin Wolf , Stefan Weil Subject: [Qemu-devel] [PATCH] block: Fix spelling in comment (ineffcient -> inefficient) X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Stefan Weil --- block/cow.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/block/cow.c b/block/cow.c index 8d3c9f8..a5a00eb 100644 --- a/block/cow.c +++ b/block/cow.c @@ -103,7 +103,7 @@ static int cow_open(BlockDriverState *bs, int flags) } /* - * XXX(hch): right now these functions are extremely ineffcient. + * XXX(hch): right now these functions are extremely inefficient. * We should just read the whole bitmap we'll need in one go instead. */ static inline int cow_set_bit(BlockDriverState *bs, int64_t bitnum)