From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52806) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZZflX-0005VU-LV for qemu-devel@nongnu.org; Wed, 09 Sep 2015 09:50:24 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZZflT-0002pa-QT for qemu-devel@nongnu.org; Wed, 09 Sep 2015 09:50:23 -0400 Received: from mx1.redhat.com ([209.132.183.28]:54495) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZZflT-0002pD-Ly for qemu-devel@nongnu.org; Wed, 09 Sep 2015 09:50:19 -0400 From: Paolo Bonzini Date: Wed, 9 Sep 2015 15:49:32 +0200 Message-Id: <1441806613-13775-3-git-send-email-pbonzini@redhat.com> In-Reply-To: <1441806613-13775-1-git-send-email-pbonzini@redhat.com> References: <1441806613-13775-1-git-send-email-pbonzini@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PULL 02/43] seqlock: add missing 'inline' to seqlock_read_retry List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: "Emilio G. Cota" From: "Emilio G. Cota" Signed-off-by: Emilio G. Cota Message-Id: <1440375847-17603-7-git-send-email-cota@braap.org> Reviewed-by: Alex Benn=C3=A9e Signed-off-by: Paolo Bonzini --- include/qemu/seqlock.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/qemu/seqlock.h b/include/qemu/seqlock.h index 3ff118a..f1256f5 100644 --- a/include/qemu/seqlock.h +++ b/include/qemu/seqlock.h @@ -62,7 +62,7 @@ static inline unsigned seqlock_read_begin(QemuSeqLock *= sl) return ret; } =20 -static int seqlock_read_retry(const QemuSeqLock *sl, unsigned start) +static inline int seqlock_read_retry(const QemuSeqLock *sl, unsigned sta= rt) { /* Read other fields before reading final sequence. */ smp_rmb(); --=20 2.4.3