From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751858AbbCVRs1 (ORCPT ); Sun, 22 Mar 2015 13:48:27 -0400 Received: from mail-lb0-f179.google.com ([209.85.217.179]:34429 "EHLO mail-lb0-f179.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751752AbbCVRsZ (ORCPT ); Sun, 22 Mar 2015 13:48:25 -0400 From: Alexander Kuleshov To: Rusty Russell Cc: lguest@lists.ozlabs.org, linux-kernel@vger.kernel.org, Alexander Kuleshov Subject: [PATCH] lguest: rename i386_head.S in the comments Date: Sun, 22 Mar 2015 23:48:14 +0600 Message-Id: <1427046494-27149-1-git-send-email-kuleshovmail@gmail.com> X-Mailer: git-send-email 2.3.3.472.g20ceeac.dirty Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org i386_head.S renamed to the head_32.S, let's update it in the comments too. Signed-off-by: Alexander Kuleshov --- arch/x86/lguest/boot.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/x86/lguest/boot.c b/arch/x86/lguest/boot.c index ac4453d..543510a 100644 --- a/arch/x86/lguest/boot.c +++ b/arch/x86/lguest/boot.c @@ -262,7 +262,7 @@ PV_CALLEE_SAVE_REGS_THUNK(lguest_save_fl); PV_CALLEE_SAVE_REGS_THUNK(lguest_irq_disable); /*:*/ -/* These are in i386_head.S */ +/* These are in head_32.S */ extern void lg_irq_enable(void); extern void lg_restore_fl(unsigned long flags); @@ -1366,7 +1366,7 @@ static void lguest_restart(char *reason) * fit comfortably. * * First we need assembly templates of each of the patchable Guest operations, - * and these are in i386_head.S. + * and these are in head_32.S. */ /*G:060 We construct a table from the assembler templates: */ -- 2.3.3.472.g20ceeac.dirty