search for: string_param

Displaying 8 results from an estimated 8 matches for "string_param".

2009 Aug 28
0
[PATCH] properly __initdata-annotate command line option string buffers
...gt; --- 2009-08-18.orig/xen/arch/x86/acpi/power.c 2009-03-24 09:04:02.000000000 +0100 +++ 2009-08-18/xen/arch/x86/acpi/power.c 2009-08-24 17:46:05.000000000 +0200 @@ -32,7 +32,7 @@ uint32_t system_reset_counter = 1; -static char opt_acpi_sleep[20]; +static char __initdata opt_acpi_sleep[20]; string_param("acpi_sleep", opt_acpi_sleep); static u8 sleep_states[ACPI_S_STATE_COUNT]; --- 2009-08-18.orig/xen/arch/x86/domain_build.c 2009-08-21 17:38:51.000000000 +0200 +++ 2009-08-18/xen/arch/x86/domain_build.c 2009-08-24 17:40:18.000000000 +0200 @@ -101,10 +101,10 @@ struct vcpu *__init alloc_...
2012 Apr 02
6
[PATCH 0 of 3] Patches for Xen 4.2 (v2).
Patches that were posted last week - with review comments addressed.
2005 Aug 31
0
[PATCH] tiny signed char fix in arch/x86/cdb.c
...h/x86/cdb.c --- a/xen/arch/x86/cdb.c Wed Aug 31 14:53:43 2005 +++ b/xen/arch/x86/cdb.c Wed Aug 31 15:39:43 2005 @@ -21,7 +21,7 @@ debugger. so avoid it. */ #define dbg_printk(...) -static unsigned char opt_cdb[30] = "none"; +static char opt_cdb[30] = "none"; string_param("cdb", opt_cdb); struct xendbg_context { _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2012 Sep 11
2
[PATCH RFC 5/8] ns16550: MMIO adjustments
...gt; --- a/xen/drivers/char/ns16550.c +++ b/xen/drivers/char/ns16550.c @@ -20,6 +20,9 @@ #include <xen/pci.h> #include <xen/pci_regs.h> #include <asm/io.h> +#ifdef CONFIG_X86 +#include <asm/fixmap.h> +#endif /* * Configure serial port with a string: @@ -37,7 +40,7 @@ string_param("com2", opt_com2); static struct ns16550 { int baud, clock_hz, data_bits, parity, stop_bits, irq; unsigned long io_base; /* I/O port or memory-mapped I/O address. */ - char *remapped_io_base; /* Remapped virtual address of mmap I/O. */ + char __iomem *remapped_io_bas...
2007 Aug 30
0
[PATCH][Retry 1] 1/4: cpufreq/PowerNow! in Xen: Xen timer changes
...uot;---%d: %08x %08x %d\n", smp_processor_id(), error_factor, calibration_mul_frac, tsc_shift); #endif diff -r 256160ff19b7 xen/common/schedule.c --- a/xen/common/schedule.c Thu Aug 16 13:27:59 2007 +0100 +++ b/xen/common/schedule.c Thu Aug 30 12:08:29 2007 -0500 @@ -39,7 +39,9 @@ string_param("sched", opt_sched); /* opt_dom0_vcpus_pin: If true, dom0 VCPUs are pinned. */ static unsigned int opt_dom0_vcpus_pin; +unsigned int opt_cpufreq; boolean_param("dom0_vcpus_pin", opt_dom0_vcpus_pin); +boolean_param("cpufreq", opt_cpufreq); #define TIME_SLOP...
2013 Sep 13
10
[PATCH RFC 0/8] xen/arm: initial cubieboard2 support.
See http://www.gossamer-threads.com/lists/xen/devel/297170 for some information on how to get this going. I''ve rebased and addressed the review comments. As before several of the patches are not to be applied because they can be done better using infrastructure from Julien''s "Allow Xen to boot with a raw Device Tree" patch. They are included for completeness. With
2013 Sep 20
20
[PATCH v3 0/7] support for cubieboard2 / sunxi processors
See http://www.gossamer-threads.com/lists/xen/devel/297170 for some information on how to get this going. I''ve rebased and addressed the review comments. With this rebase I''ve picked up some patches from Julien which were required to do things properly, so the gic v7 and device blacklisting patches have been changed to use the proper mechanisms. Previously I was able to boot
2012 Nov 26
13
[PATCH 0 of 4] Minios improvements for app development
This patch series contains a set of patches making minios rather easier to use, from an application development point of view. Overview of patches: 1 Command line argument parsing support, from Xen. 2 Weak console handler function. 3 Build system tweaks for application directories. 4 Trailing whitespace cleanup. (because it is very messy) Patch 4 is likely to be more controversial than