Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


fix IDE layer to drop unhandled IO ops, instead of aborting execution This is necessa...
Jack Lange [Mon, 5 Dec 2011 20:40:13 +0000 (15:40 -0500)]
palacios/src/devices/ide.c

index f5baf95..285e534 100644 (file)
@@ -737,8 +737,8 @@ static int write_dma_port(struct guest_info * core, ushort_t port, void * src, u
            break;
        }
        default:
-           PrintError("IDE: Invalid DMA Port (%s)\n", dma_port_to_str(port_offset));
-           return -1;
+           PrintError("IDE: Invalid DMA Port (%d) (%s)\n", port, dma_port_to_str(port_offset));
+           break;
     }
 
     return length;
@@ -787,8 +787,8 @@ static int read_dma_port(struct guest_info * core, ushort_t port, void * dst, ui
            break;
        }
        default:
-           PrintError("IDE: Invalid DMA Port (%s)\n", dma_port_to_str(port_offset));
-           return -1;
+           PrintError("IDE: Invalid DMA Port (%d) (%s)\n", port, dma_port_to_str(port_offset));
+           break;
     }
 
     PrintDebug("\tval=%x (len=%d)\n", *(uint32_t *)dst, length);