Displaying 1 result from an estimated 1 matches for "disk_backend_qdisk".
2011 Apr 05
0
[PATCH] libxl: remove impossible check for backend != DISK_BACKEND_QDISK
# HG changeset patch
# User Ian Campbell <ian.campbell@citrix.com>
# Date 1302021247 -3600
# Node ID 281207ed3fb3e1bf49c91ff3bcd76af1a3ab00af
# Parent 403080639e20aaf8f5a768f8f583fe0700afe84e
libxl: remove impossible check for backend != DISK_BACKEND_QDISK
In this case we are already in the DISK_BACKEND_QDISK case of a switch
statement on the same variable.
Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
---
Maybe I''m mistaken here, since the DISK_BACKEND_TAP case can fall
through, but only if !libxl__blktap_enabled. I'...