On 06.09.2017 22:28, Emilio G. Cota wrote: [...] > diff --git a/plugin.c b/plugin.c > new file mode 100644 > index 0000000..3cd19df > --- /dev/null > +++ b/plugin.c > @@ -0,0 +1,519 @@ > +/* plugin.c - QEMU Plugin interface > + * > + * Copyright (C) 2017, Emilio G. Cota <c...@braap.org> > + * > + * License: GNU GPL, version 2 or later. > + * See the COPYING file in the top-level directory. > + */
If you introduce new .c files, please add some sentences with a proper description in the header with some very high level description about what the code in the file is supposed to be doing. Just reading "plugin interface" is not really very helpful when trying to understand new code. Thanks, Thomas