@@ -465,19 +465,19 @@ static void cf_check dump_console_ring_key(unsigned char key)
*/
#define switch_code (opt_conswitch[0]-'a'+1)
/*
- * console_rx=0 => input to xen
- * console_rx=1 => input to dom0 (or the sole shim domain)
- * console_rx=N => input to dom(N-1)
+ * console_owner=0 => input to xen
+ * console_owner=1 => input to dom0 (or the sole shim domain)
+ * console_owner=N => input to dom(N-1)
*/
-static unsigned int __read_mostly console_rx = 0;
+static unsigned int __read_mostly console_owner = 0;
#define max_console_rx (max_init_domid + 1)
struct domain *console_get_domain(void)
{
- if ( console_rx == 0 )
+ if ( console_owner == 0 )
return NULL;
- return rcu_lock_domain_by_id(console_rx - 1);
+ return rcu_lock_domain_by_id(console_owner - 1);
}
void console_put_domain(struct domain *d)
@@ -488,7 +488,7 @@ void console_put_domain(struct domain *d)
static void console_switch_input(void)
{
- unsigned int next_rx = console_rx;
+ unsigned int next_rx = console_owner;
/*
* Rotate among Xen, dom0 and boot-time created domUs while skipping
@@ -501,7 +501,7 @@ static void console_switch_input(void)
if ( next_rx++ >= max_console_rx )
{
- console_rx = 0;
+ console_owner = 0;
printk("*** Serial input to Xen");
break;
}
@@ -514,7 +514,7 @@ static void console_switch_input(void)
if ( d )
{
rcu_unlock_domain(d);
- console_rx = next_rx;
+ console_owner = next_rx;
printk("*** Serial input to DOM%u", domid);
break;
}
@@ -531,7 +531,7 @@ static void __serial_rx(char c)
struct domain *d;
int rc = 0;
- if ( console_rx == 0 )
+ if ( console_owner == 0 )
return handle_keypress(c, false);
d = console_get_domain();
@@ -1105,7 +1105,7 @@ void __init console_endboot(void)
* a useful 'how to switch' message.
*/
if ( opt_conswitch[1] == 'x' )
- console_rx = max_console_rx;
+ console_owner = max_console_rx;
register_keyhandler('w', dump_console_ring_key,
"synchronously dump console ring buffer (dmesg)", 0);