From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sebastian Herbszt Subject: [PATCH] exec.c: fix typo in comment (fluch -> flush) Date: Fri, 24 Apr 2009 20:06:48 +0200 Message-ID: <1240596408$2954@local> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7BIT Cc: herbszt@gmx.de To: kvm@vger.kernel.org Return-path: Received: from mail.gmx.net ([213.165.64.20]:53514 "HELO mail.gmx.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1752262AbZDXSHD (ORCPT ); Fri, 24 Apr 2009 14:07:03 -0400 Sender: kvm-owner@vger.kernel.org List-ID: Fix typo in comment in exec.c (fluch -> flush). Signed-off-by: Sebastian Herbszt Index: kvm-84-714-g2919cca/exec.c =================================================================== --- kvm-84-714-g2919cca.orig/exec.c +++ kvm-84-714-g2919cca/exec.c @@ -3187,7 +3187,7 @@ void cpu_physical_memory_rw(target_phys_ (0xff & ~CODE_DIRTY_FLAG); } /* qemu doesn't execute guest code directly, but kvm does - therefore fluch instruction caches */ + therefore flush instruction caches */ if (kvm_enabled()) flush_icache_range((unsigned long)ptr, ((unsigned long)ptr)+l);