Some are called do_COMMAND() (old ones, usually), some hmp_COMMAND(), and sometimes COMMAND pointlessly differs in spelling. Normalize to hmp_COMMAND(), where COMMAND is exactly the command name with '-' replaced by '_'. Exceptions: * do_device_add() and client_migrate_info() *not* renamed to hmp_device_add(), hmp_client_migrate_info(), because they're also QMP handlers. They still need to be converted to QAPI. * do_memory_dump(), do_physical_memory_dump(), do_ioport_read(), do_ioport_write() renamed do hmp_* instead of hmp_x(), hmp_xp(), hmp_i(), hmp_o(), because those names are too cryptic for my taste. * do_info_help() renamed to hmp_info_help() instead of hmp_info(), because it only covers help. Signed-off-by: Markus Armbruster <armbru@redhat.com>
		
			
				
	
	
		
			48 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * PCI stubs for platforms that don't support pci bus.
 | 
						|
 *
 | 
						|
 * Copyright (c) 2010 Isaku Yamahata <yamahata at valinux co jp>
 | 
						|
 *                    VA Linux Systems Japan K.K.
 | 
						|
 *
 | 
						|
 * This program is free software; you can redistribute it and/or modify
 | 
						|
 * it under the terms of the GNU General Public License as published by
 | 
						|
 * the Free Software Foundation; either version 2 of the License, or
 | 
						|
 * (at your option) any later version.
 | 
						|
 *
 | 
						|
 * This program is distributed in the hope that it will be useful,
 | 
						|
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
						|
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
						|
 * GNU General Public License for more details.
 | 
						|
 *
 | 
						|
 * You should have received a copy of the GNU General Public License along
 | 
						|
 * with this program; if not, see <http://www.gnu.org/licenses/>.
 | 
						|
 */
 | 
						|
 | 
						|
#include "sysemu/sysemu.h"
 | 
						|
#include "monitor/monitor.h"
 | 
						|
#include "hw/pci/pci.h"
 | 
						|
#include "qmp-commands.h"
 | 
						|
 | 
						|
PciInfoList *qmp_query_pci(Error **errp)
 | 
						|
{
 | 
						|
    error_set(errp, QERR_UNSUPPORTED);
 | 
						|
    return NULL;
 | 
						|
}
 | 
						|
 | 
						|
static void pci_error_message(Monitor *mon)
 | 
						|
{
 | 
						|
    monitor_printf(mon, "PCI devices not supported\n");
 | 
						|
}
 | 
						|
 | 
						|
int hmp_pcie_aer_inject_error(Monitor *mon,
 | 
						|
                             const QDict *qdict, QObject **ret_data)
 | 
						|
{
 | 
						|
    pci_error_message(mon);
 | 
						|
    return -ENOSYS;
 | 
						|
}
 | 
						|
 | 
						|
void pcie_aer_inject_error_print(Monitor *mon, const QObject *data)
 | 
						|
{
 | 
						|
    pci_error_message(mon);
 | 
						|
}
 |