Fix typo in code and comments

Replace writeable -> writable

Signed-off-by: Stefan Weil <weil@mail.berlios.de>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
This commit is contained in:
Stefan Weil 2011-04-26 10:29:36 +02:00 committed by Stefan Hajnoczi
parent 3964f535c3
commit ebabb67a17
11 changed files with 41 additions and 37 deletions

View File

@ -455,7 +455,7 @@ static int bdrv_open_common(BlockDriverState *bs, const char *filename,
open_flags = flags & ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING); open_flags = flags & ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
/* /*
* Snapshots should be writeable. * Snapshots should be writable.
*/ */
if (bs->is_temporary) { if (bs->is_temporary) {
open_flags |= BDRV_O_RDWR; open_flags |= BDRV_O_RDWR;

View File

@ -196,7 +196,7 @@ static inline uint64_t fnv_64a_buf(void *buf, size_t len, uint64_t hval)
return hval; return hval;
} }
static inline int is_data_obj_writeable(SheepdogInode *inode, unsigned int idx) static inline int is_data_obj_writable(SheepdogInode *inode, unsigned int idx)
{ {
return inode->vdi_id == inode->data_vdi_id[idx]; return inode->vdi_id == inode->data_vdi_id[idx];
} }
@ -1577,7 +1577,7 @@ static void sd_readv_writev_bh_cb(void *p)
create = 1; create = 1;
} else if (acb->aiocb_type == AIOCB_WRITE_UDATA } else if (acb->aiocb_type == AIOCB_WRITE_UDATA
&& !is_data_obj_writeable(inode, idx)) { && !is_data_obj_writable(inode, idx)) {
/* Copy-On-Write */ /* Copy-On-Write */
create = 1; create = 1;
old_oid = oid; old_oid = oid;

View File

@ -1126,7 +1126,7 @@ static void eepro100_write_eeprom(eeprom_t * eeprom, uint8_t val)
{ {
TRACE(EEPROM, logout("val=0x%02x\n", val)); TRACE(EEPROM, logout("val=0x%02x\n", val));
/* mask unwriteable bits */ /* mask unwritable bits */
#if 0 #if 0
val = SET_MASKED(val, 0x31, eeprom->value); val = SET_MASKED(val, 0x31, eeprom->value);
#endif #endif

View File

@ -75,7 +75,7 @@ struct _eeprom_t {
uint8_t tick; uint8_t tick;
uint8_t address; uint8_t address;
uint8_t command; uint8_t command;
uint8_t writeable; uint8_t writable;
uint8_t eecs; uint8_t eecs;
uint8_t eesk; uint8_t eesk;
@ -130,7 +130,7 @@ static const VMStateDescription vmstate_eeprom = {
VMSTATE_UINT8(tick, eeprom_t), VMSTATE_UINT8(tick, eeprom_t),
VMSTATE_UINT8(address, eeprom_t), VMSTATE_UINT8(address, eeprom_t),
VMSTATE_UINT8(command, eeprom_t), VMSTATE_UINT8(command, eeprom_t),
VMSTATE_UINT8(writeable, eeprom_t), VMSTATE_UINT8(writable, eeprom_t),
VMSTATE_UINT8(eecs, eeprom_t), VMSTATE_UINT8(eecs, eeprom_t),
VMSTATE_UINT8(eesk, eeprom_t), VMSTATE_UINT8(eesk, eeprom_t),
@ -165,7 +165,7 @@ void eeprom93xx_write(eeprom_t *eeprom, int eecs, int eesk, int eedi)
address = 0x0; address = 0x0;
} else if (eeprom->eecs && ! eecs) { } else if (eeprom->eecs && ! eecs) {
/* End chip select cycle. This triggers write / erase. */ /* End chip select cycle. This triggers write / erase. */
if (eeprom->writeable) { if (eeprom->writable) {
uint8_t subcommand = address >> (eeprom->addrbits - 2); uint8_t subcommand = address >> (eeprom->addrbits - 2);
if (command == 0 && subcommand == 2) { if (command == 0 && subcommand == 2) {
/* Erase all. */ /* Erase all. */
@ -232,7 +232,7 @@ void eeprom93xx_write(eeprom_t *eeprom, int eecs, int eesk, int eedi)
switch (address >> (eeprom->addrbits - 2)) { switch (address >> (eeprom->addrbits - 2)) {
case 0: case 0:
logout("write disable command\n"); logout("write disable command\n");
eeprom->writeable = 0; eeprom->writable = 0;
break; break;
case 1: case 1:
logout("write all command\n"); logout("write all command\n");
@ -242,7 +242,7 @@ void eeprom93xx_write(eeprom_t *eeprom, int eecs, int eesk, int eedi)
break; break;
case 3: case 3:
logout("write enable command\n"); logout("write enable command\n");
eeprom->writeable = 1; eeprom->writable = 1;
break; break;
} }
} else { } else {

View File

@ -155,7 +155,7 @@ int msi_init(struct PCIDevice *dev, uint8_t offset,
pci_set_word(dev->wmask + msi_data_off(dev, msi64bit), 0xffff); pci_set_word(dev->wmask + msi_data_off(dev, msi64bit), 0xffff);
if (msi_per_vector_mask) { if (msi_per_vector_mask) {
/* Make mask bits 0 to nr_vectors - 1 writeable. */ /* Make mask bits 0 to nr_vectors - 1 writable. */
pci_set_long(dev->wmask + msi_mask_off(dev, msi64bit), pci_set_long(dev->wmask + msi_mask_off(dev, msi64bit),
0xffffffff >> (PCI_MSI_VECTORS_MAX - nr_vectors)); 0xffffffff >> (PCI_MSI_VECTORS_MAX - nr_vectors));
} }

View File

@ -87,7 +87,7 @@ static int msix_add_config(struct PCIDevice *pdev, unsigned short nentries,
pci_set_long(config + MSIX_PBA_OFFSET, (bar_size + MSIX_PAGE_PENDING) | pci_set_long(config + MSIX_PBA_OFFSET, (bar_size + MSIX_PAGE_PENDING) |
bar_nr); bar_nr);
pdev->msix_cap = config_offset; pdev->msix_cap = config_offset;
/* Make flags bit writeable. */ /* Make flags bit writable. */
pdev->wmask[config_offset + MSIX_CONTROL_OFFSET] |= MSIX_ENABLE_MASK | pdev->wmask[config_offset + MSIX_CONTROL_OFFSET] |= MSIX_ENABLE_MASK |
MSIX_MASKALL_MASK; MSIX_MASKALL_MASK;
return 0; return 0;

View File

@ -168,7 +168,7 @@ void pci_device_reset(PCIDevice *dev)
dev->irq_state = 0; dev->irq_state = 0;
pci_update_irq_status(dev); pci_update_irq_status(dev);
pci_device_deassert_intx(dev); pci_device_deassert_intx(dev);
/* Clear all writeable bits */ /* Clear all writable bits */
pci_word_test_and_clear_mask(dev->config + PCI_COMMAND, pci_word_test_and_clear_mask(dev->config + PCI_COMMAND,
pci_get_word(dev->wmask + PCI_COMMAND) | pci_get_word(dev->wmask + PCI_COMMAND) |
pci_get_word(dev->w1cmask + PCI_COMMAND)); pci_get_word(dev->w1cmask + PCI_COMMAND));
@ -871,7 +871,7 @@ void pci_register_bar(PCIDevice *pci_dev, int region_num,
wmask = ~(size - 1); wmask = ~(size - 1);
addr = pci_bar(pci_dev, region_num); addr = pci_bar(pci_dev, region_num);
if (region_num == PCI_ROM_SLOT) { if (region_num == PCI_ROM_SLOT) {
/* ROM enable bit is writeable */ /* ROM enable bit is writable */
wmask |= PCI_ROM_ADDRESS_ENABLE; wmask |= PCI_ROM_ADDRESS_ENABLE;
} }
pci_set_long(pci_dev->config + addr, type); pci_set_long(pci_dev->config + addr, type);
@ -1975,7 +1975,7 @@ void pci_del_capability(PCIDevice *pdev, uint8_t cap_id, uint8_t size)
if (!offset) if (!offset)
return; return;
pdev->config[prev] = pdev->config[offset + PCI_CAP_LIST_NEXT]; pdev->config[prev] = pdev->config[offset + PCI_CAP_LIST_NEXT];
/* Make capability writeable again */ /* Make capability writable again */
memset(pdev->wmask + offset, 0xff, size); memset(pdev->wmask + offset, 0xff, size);
memset(pdev->w1cmask + offset, 0, size); memset(pdev->w1cmask + offset, 0, size);
/* Clear cmask as device-specific registers can't be checked */ /* Clear cmask as device-specific registers can't be checked */

View File

@ -132,7 +132,7 @@ struct PCIDevice {
/* PCI config space */ /* PCI config space */
uint8_t *config; uint8_t *config;
/* Used to enable config checks on load. Note that writeable bits are /* Used to enable config checks on load. Note that writable bits are
* never checked even if set in cmask. */ * never checked even if set in cmask. */
uint8_t *cmask; uint8_t *cmask;

View File

@ -1399,7 +1399,7 @@ static void rtl8139_ChipCmd_write(RTL8139State *s, uint32_t val)
s->currCPlusTxDesc = 0; s->currCPlusTxDesc = 0;
} }
/* mask unwriteable bits */ /* mask unwritable bits */
val = SET_MASKED(val, 0xe3, s->bChipCmdState); val = SET_MASKED(val, 0xe3, s->bChipCmdState);
/* Deassert reset pin before next read */ /* Deassert reset pin before next read */
@ -1443,7 +1443,7 @@ static void rtl8139_CpCmd_write(RTL8139State *s, uint32_t val)
s->cplus_enabled = 1; s->cplus_enabled = 1;
/* mask unwriteable bits */ /* mask unwritable bits */
val = SET_MASKED(val, 0xff84, s->CpCmd); val = SET_MASKED(val, 0xff84, s->CpCmd);
s->CpCmd = val; s->CpCmd = val;
@ -1472,7 +1472,7 @@ static uint32_t rtl8139_IntrMitigate_read(RTL8139State *s)
return ret; return ret;
} }
static int rtl8139_config_writeable(RTL8139State *s) static int rtl8139_config_writable(RTL8139State *s)
{ {
if (s->Cfg9346 & Cfg9346_Unlock) if (s->Cfg9346 & Cfg9346_Unlock)
{ {
@ -1490,10 +1490,10 @@ static void rtl8139_BasicModeCtrl_write(RTL8139State *s, uint32_t val)
DPRINTF("BasicModeCtrl register write(w) val=0x%04x\n", val); DPRINTF("BasicModeCtrl register write(w) val=0x%04x\n", val);
/* mask unwriteable bits */ /* mask unwritable bits */
uint32_t mask = 0x4cff; uint32_t mask = 0x4cff;
if (1 || !rtl8139_config_writeable(s)) if (1 || !rtl8139_config_writable(s))
{ {
/* Speed setting and autonegotiation enable bits are read-only */ /* Speed setting and autonegotiation enable bits are read-only */
mask |= 0x3000; mask |= 0x3000;
@ -1521,7 +1521,7 @@ static void rtl8139_BasicModeStatus_write(RTL8139State *s, uint32_t val)
DPRINTF("BasicModeStatus register write(w) val=0x%04x\n", val); DPRINTF("BasicModeStatus register write(w) val=0x%04x\n", val);
/* mask unwriteable bits */ /* mask unwritable bits */
val = SET_MASKED(val, 0xff3f, s->BasicModeStatus); val = SET_MASKED(val, 0xff3f, s->BasicModeStatus);
s->BasicModeStatus = val; s->BasicModeStatus = val;
@ -1542,7 +1542,7 @@ static void rtl8139_Cfg9346_write(RTL8139State *s, uint32_t val)
DPRINTF("Cfg9346 write val=0x%02x\n", val); DPRINTF("Cfg9346 write val=0x%02x\n", val);
/* mask unwriteable bits */ /* mask unwritable bits */
val = SET_MASKED(val, 0x31, s->Cfg9346); val = SET_MASKED(val, 0x31, s->Cfg9346);
uint32_t opmode = val & 0xc0; uint32_t opmode = val & 0xc0;
@ -1594,10 +1594,11 @@ static void rtl8139_Config0_write(RTL8139State *s, uint32_t val)
DPRINTF("Config0 write val=0x%02x\n", val); DPRINTF("Config0 write val=0x%02x\n", val);
if (!rtl8139_config_writeable(s)) if (!rtl8139_config_writable(s)) {
return; return;
}
/* mask unwriteable bits */ /* mask unwritable bits */
val = SET_MASKED(val, 0xf8, s->Config0); val = SET_MASKED(val, 0xf8, s->Config0);
s->Config0 = val; s->Config0 = val;
@ -1618,10 +1619,11 @@ static void rtl8139_Config1_write(RTL8139State *s, uint32_t val)
DPRINTF("Config1 write val=0x%02x\n", val); DPRINTF("Config1 write val=0x%02x\n", val);
if (!rtl8139_config_writeable(s)) if (!rtl8139_config_writable(s)) {
return; return;
}
/* mask unwriteable bits */ /* mask unwritable bits */
val = SET_MASKED(val, 0xC, s->Config1); val = SET_MASKED(val, 0xC, s->Config1);
s->Config1 = val; s->Config1 = val;
@ -1642,10 +1644,11 @@ static void rtl8139_Config3_write(RTL8139State *s, uint32_t val)
DPRINTF("Config3 write val=0x%02x\n", val); DPRINTF("Config3 write val=0x%02x\n", val);
if (!rtl8139_config_writeable(s)) if (!rtl8139_config_writable(s)) {
return; return;
}
/* mask unwriteable bits */ /* mask unwritable bits */
val = SET_MASKED(val, 0x8F, s->Config3); val = SET_MASKED(val, 0x8F, s->Config3);
s->Config3 = val; s->Config3 = val;
@ -1666,10 +1669,11 @@ static void rtl8139_Config4_write(RTL8139State *s, uint32_t val)
DPRINTF("Config4 write val=0x%02x\n", val); DPRINTF("Config4 write val=0x%02x\n", val);
if (!rtl8139_config_writeable(s)) if (!rtl8139_config_writable(s)) {
return; return;
}
/* mask unwriteable bits */ /* mask unwritable bits */
val = SET_MASKED(val, 0x0a, s->Config4); val = SET_MASKED(val, 0x0a, s->Config4);
s->Config4 = val; s->Config4 = val;
@ -1690,7 +1694,7 @@ static void rtl8139_Config5_write(RTL8139State *s, uint32_t val)
DPRINTF("Config5 write val=0x%02x\n", val); DPRINTF("Config5 write val=0x%02x\n", val);
/* mask unwriteable bits */ /* mask unwritable bits */
val = SET_MASKED(val, 0x80, s->Config5); val = SET_MASKED(val, 0x80, s->Config5);
s->Config5 = val; s->Config5 = val;
@ -1743,7 +1747,7 @@ static void rtl8139_RxConfig_write(RTL8139State *s, uint32_t val)
{ {
DPRINTF("RxConfig write val=0x%08x\n", val); DPRINTF("RxConfig write val=0x%08x\n", val);
/* mask unwriteable bits */ /* mask unwritable bits */
val = SET_MASKED(val, 0xf0fc0040, s->RxConfig); val = SET_MASKED(val, 0xf0fc0040, s->RxConfig);
s->RxConfig = val; s->RxConfig = val;
@ -2610,7 +2614,7 @@ static void rtl8139_IntrMask_write(RTL8139State *s, uint32_t val)
{ {
DPRINTF("IntrMask write(w) val=0x%04x\n", val); DPRINTF("IntrMask write(w) val=0x%04x\n", val);
/* mask unwriteable bits */ /* mask unwritable bits */
val = SET_MASKED(val, 0x1e00, s->IntrMask); val = SET_MASKED(val, 0x1e00, s->IntrMask);
s->IntrMask = val; s->IntrMask = val;
@ -2642,7 +2646,7 @@ static void rtl8139_IntrStatus_write(RTL8139State *s, uint32_t val)
#else #else
uint16_t newStatus = s->IntrStatus & ~val; uint16_t newStatus = s->IntrStatus & ~val;
/* mask unwriteable bits */ /* mask unwritable bits */
newStatus = SET_MASKED(newStatus, 0x1e00, s->IntrStatus); newStatus = SET_MASKED(newStatus, 0x1e00, s->IntrStatus);
/* writing 1 to interrupt status register bit clears it */ /* writing 1 to interrupt status register bit clears it */
@ -2686,7 +2690,7 @@ static void rtl8139_MultiIntr_write(RTL8139State *s, uint32_t val)
{ {
DPRINTF("MultiIntr write(w) val=0x%04x\n", val); DPRINTF("MultiIntr write(w) val=0x%04x\n", val);
/* mask unwriteable bits */ /* mask unwritable bits */
val = SET_MASKED(val, 0xf000, s->MultiIntr); val = SET_MASKED(val, 0xf000, s->MultiIntr);
s->MultiIntr = val; s->MultiIntr = val;

View File

@ -118,7 +118,7 @@
#define IOPTE_PAGE 0xffffff00 /* Physical page number (PA[35:12]) */ #define IOPTE_PAGE 0xffffff00 /* Physical page number (PA[35:12]) */
#define IOPTE_CACHE 0x00000080 /* Cached (in vme IOCACHE or #define IOPTE_CACHE 0x00000080 /* Cached (in vme IOCACHE or
Viking/MXCC) */ Viking/MXCC) */
#define IOPTE_WRITE 0x00000004 /* Writeable */ #define IOPTE_WRITE 0x00000004 /* Writable */
#define IOPTE_VALID 0x00000002 /* IOPTE is valid */ #define IOPTE_VALID 0x00000002 /* IOPTE is valid */
#define IOPTE_WAZ 0x00000001 /* Write as zeros */ #define IOPTE_WAZ 0x00000001 /* Write as zeros */

View File

@ -477,7 +477,7 @@ static const mips_def_t mips_defs[] =
.CP0_Config1 = (1 << CP0C1_FP) | (47 << CP0C1_MMU), .CP0_Config1 = (1 << CP0C1_FP) | (47 << CP0C1_MMU),
.SYNCI_Step = 16, .SYNCI_Step = 16,
.CCRes = 2, .CCRes = 2,
.CP0_Status_rw_bitmask = 0xF5D0FF1F, /*bit5:7 not writeable*/ .CP0_Status_rw_bitmask = 0xF5D0FF1F, /*bit5:7 not writable*/
.CP1_fcr0 = (0x5 << FCR0_PRID) | (0x1 << FCR0_REV), .CP1_fcr0 = (0x5 << FCR0_PRID) | (0x1 << FCR0_REV),
.SEGBITS = 40, .SEGBITS = 40,
.PABITS = 40, .PABITS = 40,