mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 09:43:56 -06:00
ppc: spelling fixes
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru> Reviewed-by: Cédric Le Goater <clg@kaod.org>
This commit is contained in:
parent
4907644841
commit
e6a19a6477
15 changed files with 30 additions and 30 deletions
|
@ -738,7 +738,7 @@ static target_ulong _cpu_ppc_load_decr(CPUPPCState *env, int64_t now)
|
|||
decr = __cpu_ppc_load_decr(env, now, tb_env->decr_next);
|
||||
|
||||
/*
|
||||
* If large decrementer is enabled then the decrementer is signed extened
|
||||
* If large decrementer is enabled then the decrementer is signed extended
|
||||
* to 64 bits, otherwise it is a 32 bit value.
|
||||
*/
|
||||
if (env->spr[SPR_LPCR] & LPCR_LD) {
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
#define TYPE_PREP_SYSTEMIO "prep-systemio"
|
||||
OBJECT_DECLARE_SIMPLE_TYPE(PrepSystemIoState, PREP_SYSTEMIO)
|
||||
|
||||
/* Bit as defined in PowerPC Reference Plaform v1.1, sect. 6.1.5, p. 132 */
|
||||
/* Bit as defined in PowerPC Reference Platform v1.1, sect. 6.1.5, p. 132 */
|
||||
#define PREP_BIT(n) (1 << (7 - (n)))
|
||||
|
||||
struct PrepSystemIoState {
|
||||
|
|
|
@ -2573,7 +2573,7 @@ static void spapr_set_vsmt_mode(SpaprMachineState *spapr, Error **errp)
|
|||
return;
|
||||
}
|
||||
|
||||
/* Detemine the VSMT mode to use: */
|
||||
/* Determine the VSMT mode to use: */
|
||||
if (vsmt_user) {
|
||||
if (spapr->vsmt < smp_threads) {
|
||||
error_setg(errp, "Cannot support VSMT mode %d"
|
||||
|
@ -3107,7 +3107,7 @@ static int spapr_kvm_type(MachineState *machine, const char *vm_type)
|
|||
{
|
||||
/*
|
||||
* The use of g_ascii_strcasecmp() for 'hv' and 'pr' is to
|
||||
* accomodate the 'HV' and 'PV' formats that exists in the
|
||||
* accommodate the 'HV' and 'PV' formats that exists in the
|
||||
* wild. The 'auto' mode is being introduced already as
|
||||
* lower-case, thus we don't need to bother checking for
|
||||
* "AUTO".
|
||||
|
@ -4340,7 +4340,7 @@ spapr_cpu_index_to_props(MachineState *machine, unsigned cpu_index)
|
|||
CPUArchId *core_slot;
|
||||
MachineClass *mc = MACHINE_GET_CLASS(machine);
|
||||
|
||||
/* make sure possible_cpu are intialized */
|
||||
/* make sure possible_cpu are initialized */
|
||||
mc->possible_cpu_arch_ids(machine);
|
||||
/* get CPU core slot containing thread that matches cpu_index */
|
||||
core_slot = spapr_find_cpu_slot(machine, cpu_index, NULL);
|
||||
|
@ -5034,7 +5034,7 @@ static void spapr_machine_2_12_class_options(MachineClass *mc)
|
|||
|
||||
/* We depend on kvm_enabled() to choose a default value for the
|
||||
* hpt-max-page-size capability. Of course we can't do it here
|
||||
* because this is too early and the HW accelerator isn't initialzed
|
||||
* because this is too early and the HW accelerator isn't initialized
|
||||
* yet. Postpone this to machine init (see default_caps_with_cpu()).
|
||||
*/
|
||||
smc->default_caps.caps[SPAPR_CAP_HPT_MAXPAGESIZE] = 0;
|
||||
|
|
|
@ -1615,7 +1615,7 @@ static void hypercall_register_types(void)
|
|||
spapr_register_hypercall(H_GET_CPU_CHARACTERISTICS,
|
||||
h_get_cpu_characteristics);
|
||||
|
||||
/* "debugger" hcalls (also used by SLOF). Note: We do -not- differenciate
|
||||
/* "debugger" hcalls (also used by SLOF). Note: We do -not- differentiate
|
||||
* here between the "CI" and the "CACHE" variants, they will use whatever
|
||||
* mapping attributes qemu is using. When using KVM, the kernel will
|
||||
* enforce the attributes more strongly
|
||||
|
|
|
@ -378,7 +378,7 @@ static target_ulong h_scm_bind_mem(PowerPCCPU *cpu, SpaprMachineState *spapr,
|
|||
|
||||
/*
|
||||
* Currently continue token should be zero qemu has already bound
|
||||
* everything and this hcall doesnt return H_BUSY.
|
||||
* everything and this hcall doesn't return H_BUSY.
|
||||
*/
|
||||
if (continue_token > 0) {
|
||||
return H_P5;
|
||||
|
@ -589,7 +589,7 @@ void spapr_nvdimm_finish_flushes(void)
|
|||
* Called on reset path, the main loop thread which calls
|
||||
* the pending BHs has gotten out running in the reset path,
|
||||
* finally reaching here. Other code path being guest
|
||||
* h_client_architecture_support, thats early boot up.
|
||||
* h_client_architecture_support, that's early boot up.
|
||||
*/
|
||||
nvdimms = nvdimm_get_device_list();
|
||||
for (list = nvdimms; list; list = list->next) {
|
||||
|
|
|
@ -78,7 +78,7 @@ int spapr_phb_vfio_eeh_set_option(SpaprPhbState *sphb,
|
|||
* call. Now we just need to check the validity of the PCI
|
||||
* pass-through devices (vfio-pci) under this sphb bus.
|
||||
* We have already validated that all the devices under this sphb
|
||||
* are from same iommu group (within same PE) before comming here.
|
||||
* are from same iommu group (within same PE) before coming here.
|
||||
*
|
||||
* Prior to linux commit 98ba956f6a389 ("powerpc/pseries/eeh:
|
||||
* Rework device EEH PE determination") kernel would call
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue