SHA256
1
0
forked from pool/qemu

Accepting request 228442 from home:a_faerber:branches:Virtualization

Enhance update_git.sh script to not duplicate .patch filename extension and to fill in the SeaBIOS version automatically

OBS-URL: https://build.opensuse.org/request/show/228442
OBS-URL: https://build.opensuse.org/package/show/Virtualization/qemu?expand=0&rev=199
This commit is contained in:
Andreas Färber
2014-04-01 15:08:49 +00:00
committed by Git OBS Bridge
parent 972d120079
commit 0e7dd46c01
27 changed files with 70 additions and 45 deletions

View File

@@ -0,0 +1,23 @@
From 2ab8ba594caa75e869d684576cb76b7cf47d3a4e Mon Sep 17 00:00:00 2001
From: Ulrich Hecht <uli@suse.de>
Date: Tue, 14 Apr 2009 16:25:41 +0200
Subject: [PATCH] qemu-cvs-gettimeofday
No clue what this is for.
---
linux-user/syscall.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index c193397..98c12bb 100644
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
@@ -6359,6 +6359,8 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1,
case TARGET_NR_gettimeofday:
{
struct timeval tv;
+ if(copy_from_user_timeval(&tv, arg1))
+ goto efault;
ret = get_errno(gettimeofday(&tv, NULL));
if (!is_error(ret)) {
if (copy_to_user_timeval(arg1, &tv))