From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:53327) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1US7e9-0001J8-2d for qemu-devel@nongnu.org; Tue, 16 Apr 2013 11:18:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1US7e7-0004mc-IV for qemu-devel@nongnu.org; Tue, 16 Apr 2013 11:18:12 -0400 Received: from mx1.redhat.com ([209.132.183.28]:61515) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1US7e7-0004mW-Bj for qemu-devel@nongnu.org; Tue, 16 Apr 2013 11:18:11 -0400 Date: Tue, 16 Apr 2013 17:18:08 +0200 From: Igor Mammedov Message-ID: <20130416171808.7134ef56@nial.usersys.redhat.com> In-Reply-To: <1366053940-9401-5-git-send-email-ehabkost@redhat.com> References: <1366053940-9401-1-git-send-email-ehabkost@redhat.com> <1366053940-9401-5-git-send-email-ehabkost@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [qom-cpu PATCH 4/7] target-i386/cpu.c: Break lines on kvm_cpu_fill_host() List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Eduardo Habkost Cc: qemu-devel@nongnu.org, Andreas =?ISO-8859-1?B?RuRyYmVy?= On Mon, 15 Apr 2013 16:25:37 -0300 Eduardo Habkost wrote: > Break lines so they don't get too long once the *_features fields are > replaced by an array. > > Signed-off-by: Eduardo Habkost > --- > target-i386/cpu.c | 6 ++++-- > 1 file changed, 4 insertions(+), 2 deletions(-) > > diff --git a/target-i386/cpu.c b/target-i386/cpu.c > index 732cafd..5390ca5 100644 > --- a/target-i386/cpu.c > +++ b/target-i386/cpu.c > @@ -918,8 +918,10 @@ static void kvm_cpu_fill_host(x86_def_t *x86_cpu_def) > x86_cpu_def->stepping = eax & 0x0F; > > x86_cpu_def->level = kvm_arch_get_supported_cpuid(s, 0x0, 0, R_EAX); > - x86_cpu_def->features = kvm_arch_get_supported_cpuid(s, 0x1, 0, R_EDX); > - x86_cpu_def->ext_features = kvm_arch_get_supported_cpuid(s, 0x1, 0, > R_ECX); > + x86_cpu_def->features = > + kvm_arch_get_supported_cpuid(s, 0x1, 0, R_EDX); > + x86_cpu_def->ext_features = > + kvm_arch_get_supported_cpuid(s, 0x1, 0, R_ECX); > > if (x86_cpu_def->level >= 7) { > x86_cpu_def->cpuid_7_0_ebx_features = Reviewed 4-6/7 patches, they look good, I'd though would merge them since they are doing the same repetitive thing and easy to review.