Changeset 101


Ignore:
Timestamp:
Jun 3, 2011, 10:26:26 PM (14 years ago)
Author:
Markus Thielen
Message:

use 32bit calculation during validation of BIOS provided CHS data; treat overflow flag in port interrupt status as error

Location:
trunk/src/os2ahci
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/os2ahci/ahci.h

    r87 r101  
    176176                                 PORT_IRQ_UNK_FIS  | PORT_IRQ_BAD_PMP)
    177177#define PORT_IRQ_ERROR          (PORT_IRQ_FREEZE   | PORT_IRQ_TF_ERR   | \
    178                                  PORT_IRQ_HBUS_DATA_ERR)
     178                                 PORT_IRQ_OVERFLOW | PORT_IRQ_HBUS_DATA_ERR)
    179179#define DEF_PORT_IRQ            (PORT_IRQ_ERROR | PORT_IRQ_SG_DONE     | \
    180180                                 PORT_IRQ_SDB_FIS | PORT_IRQ_DMAS_FIS  | \
  • TabularUnified trunk/src/os2ahci/ata.c

    r87 r101  
    503503  } else if (CUR_HEADS(id_buf) > 0 && CUR_CYLS(id_buf) > 0 &&
    504504             CUR_SECTORS(id_buf) > 0 &&
    505              CUR_CAPACITY(id_buf) == CUR_HEADS(id_buf) *
    506                                      CUR_CYLS(id_buf) *
    507                                      CUR_SECTORS(id_buf)) {
     505             CUR_CAPACITY(id_buf) == (u32) CUR_HEADS(id_buf) *
     506                                     (u32) CUR_CYLS(id_buf) *
     507                                     (u32) CUR_SECTORS(id_buf)) {
    508508    /* BIOS-supplied (aka "current") geometry values look valid */
    509509    geometry->NumHeads        = CUR_HEADS(id_buf);
Note: See TracChangeset for help on using the changeset viewer.