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.


Clean up compat ioctl handlers in host-dev and keyed-stream host ifaces
Peter Dinda [Fri, 17 Feb 2012 17:34:10 +0000 (11:34 -0600)]
linux_module/iface-host-dev.c
linux_module/iface-keyed-stream.c

index a1e69c4..22070da 100644 (file)
@@ -605,9 +605,8 @@ static struct file_operations host_dev_fops = {
     .release  = host_dev_release,
 #ifdef HAVE_COMPAT_IOCTL
     .compat_ioctl = host_dev_compat_ioctl,
-#else
-    .ioctl = host_dev_ioctl,
 #endif
+    .ioctl = host_dev_ioctl,
 };
 
 
index bb19e70..ae83ec1 100644 (file)
@@ -1013,9 +1013,8 @@ static struct file_operations user_keyed_stream_fops = {
     .poll = keyed_stream_poll_user,
 #ifdef HAVE_COMPAT_IOCTL
     .compat_ioctl = keyed_stream_compat_ioctl_user,
-#else
-    .ioctl = keyed_stream_ioctl_user,
 #endif
+    .ioctl = keyed_stream_ioctl_user,
     .release = keyed_stream_release_user,
 };