Signed-off-by: Gabriel Somlo <somlo@xxxxxxx> --- vfio.c gets copied by sync, and it needs vfio.h. I don't think there's an easy way to #define ourselves out of this one, copying vfio.h into kvm-kmod/include/linux/ seems to be the path of least resistance... Thanks, Gabriel P.S. I'm not a native Python speaker, so, while the glob() line does the job, it may not be the most beautiful way to express the new requirement :) sync | 1 + 1 file changed, 1 insertion(+) diff --git a/sync b/sync index e447ec4..9902a11 100755 --- a/sync +++ b/sync @@ -433,6 +433,7 @@ def header_sync(arch): T = 'header' rmtree(T) for file in (glob('%(linux)s/include/linux/kvm*.h' % { 'linux': linux }) + + glob('%(linux)s/include/linux/vfio.h' % { 'linux': linux }) + glob('%(linux)s/include/uapi/linux/kvm*.h' % { 'linux': linux })): out = ('%(T)s/include/linux/%(name)s' % { 'T': T, 'name': os.path.basename(file) }) -- 1.9.0 -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html