From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52619) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V7juy-0006G4-Ai for qemu-devel@nongnu.org; Fri, 09 Aug 2013 06:27:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1V7jup-0000jr-S1 for qemu-devel@nongnu.org; Fri, 09 Aug 2013 06:27:36 -0400 Received: from mail-ea0-x22e.google.com ([2a00:1450:4013:c01::22e]:53830) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V7jup-0000jh-K7 for qemu-devel@nongnu.org; Fri, 09 Aug 2013 06:27:27 -0400 Received: by mail-ea0-f174.google.com with SMTP id z15so1949633ead.33 for ; Fri, 09 Aug 2013 03:27:26 -0700 (PDT) Sender: Paolo Bonzini Message-ID: <5204C3ED.9020800@redhat.com> Date: Fri, 09 Aug 2013 12:26:53 +0200 From: Paolo Bonzini MIME-Version: 1.0 References: <1375998147-24292-1-git-send-email-alex@alex.org.uk> <1375998147-24292-29-git-send-email-alex@alex.org.uk> In-Reply-To: <1375998147-24292-29-git-send-email-alex@alex.org.uk> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [RFC] [PATCHv8 28/30] aio / timers: Add scripts/switch-timer-api List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Alex Bligh Cc: Kevin Wolf , Anthony Liguori , qemu-devel@nongnu.org, liu ping fan , Stefan Hajnoczi , MORITA Kazutaka , rth@twiddle.net Il 08/08/2013 23:42, Alex Bligh ha scritto: > + # these have just changed name > + $line =~ s/\bqemu_mod_timer\b/qemu_timer_mod/g; > + $line =~ s/\bqemu_mod_timer_(ns|us|ms)\b/qemu_timer_mod_$1/g; > + $line =~ s/\bqemu_free_timer\b/qemu_timer_free/g; > + $line =~ s/\bqemu_del_timer\b/qemu_timer_del/g; I couldn't quite track which patch introduced this change. I would either go all the way and drop the qemu_ prefix, or leave the old name in place. Paolo