* [PATCH] [MiniOS] backporting mistake in 3.4-testing
@ 2009-10-27 12:29 Andre Przywara
2009-10-27 12:35 ` Stefano Stabellini
0 siblings, 1 reply; 2+ messages in thread
From: Andre Przywara @ 2009-10-27 12:29 UTC (permalink / raw)
To: Stefano Stabellini; +Cc: xen-devel
[-- Attachment #1: Type: text/plain, Size: 625 bytes --]
Hi,
in xen-3.4-testing.hg c/s 19793 introduced a backporting mistake in the
MiniOS console preventing 3.4 MiniOS to be built. Attached patch fixes that.
Signed-off-by: Andre Przywara <andre.przywara@amd.com>
Regards,
Andre.
--
Andre Przywara
AMD-Operating System Research Center (OSRC), Dresden, Germany
Tel: +49 351 448 3567 12
----to satisfy European Law for business letters:
Advanced Micro Devices GmbH
Karl-Hammerschmidt-Str. 34, 85609 Dornach b. Muenchen
Geschaeftsfuehrer: Andrew Bowd; Thomas M. McCoy; Giuliano Meroni
Sitz: Dornach, Gemeinde Aschheim, Landkreis Muenchen
Registergericht Muenchen, HRB Nr. 43632
[-- Attachment #2: 3.4-minios-console.patch --]
[-- Type: text/x-patch, Size: 758 bytes --]
diff -r 2a5604621e21 extras/mini-os/console/console.c
--- a/extras/mini-os/console/console.c Fri Oct 23 10:34:01 2009 +0100
+++ b/extras/mini-os/console/console.c Tue Oct 27 13:28:23 2009 +0100
@@ -99,7 +99,7 @@
saved_char = *(curr_char+1);
*(curr_char+1) = '\n';
part_len = curr_char - copied_ptr + 2;
- ring_send_fn(dev, copied_ptr, part_len);
+ ring_send_fn(copied_ptr, part_len);
*(curr_char+1) = saved_char;
copied_ptr = curr_char+1;
length -= part_len - 1;
@@ -112,7 +112,7 @@
length++;
}
- ring_send_fn(dev, copied_ptr, length);
+ ring_send_fn(copied_ptr, length);
}
void print(int direct, const char *fmt, va_list args)
[-- Attachment #3: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-10-27 12:35 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-10-27 12:29 [PATCH] [MiniOS] backporting mistake in 3.4-testing Andre Przywara
2009-10-27 12:35 ` Stefano Stabellini
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.