From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1M1KhS-0000j2-3F for qemu-devel@nongnu.org; Tue, 05 May 2009 09:28:46 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1M1KhR-0000iV-Iw for qemu-devel@nongnu.org; Tue, 05 May 2009 09:28:45 -0400 Received: from [199.232.76.173] (port=52819 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1M1KhR-0000iB-6Q for qemu-devel@nongnu.org; Tue, 05 May 2009 09:28:45 -0400 Received: from naru.obs2.net ([84.20.150.76]:56556) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1M1KhQ-0002wz-K3 for qemu-devel@nongnu.org; Tue, 05 May 2009 09:28:45 -0400 Received: from kos.to (localhost.localdomain [127.0.0.1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by narury.org (Postfix) with ESMTP id 33A97327404B for ; Tue, 5 May 2009 16:28:43 +0300 (EEST) Date: Tue, 5 May 2009 16:28:43 +0300 From: Riku Voipio Message-ID: <20090505132842.GA29321@kos.to> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Subject: [Qemu-devel] [PATCH] linux-user: include linux/fs.h List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org defines FIGETBSZ FIBMAP, allowing the respective ioctl's to be implemented. From: Martin Mohring Signed-off-by: Riku Voipio --- linux-user/syscall.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/linux-user/syscall.c b/linux-user/syscall.c index afbb3b4..77fb7f6 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -77,6 +77,7 @@ #include #include #include +#include #include "linux_loop.h" #include "qemu.h" -- 1.6.2.1