Contribute/SubmitAPatch: Difference between revisions

From QEMU
(Undo revision 1445 by Mm1827 (Talk))
No edit summary
Line 1: Line 1:
All contributions to QEMU are '''sent as patches''' to the qemu-devel [[MailingLists|mailing list]].  Patch contributions should not be posted on the bug tracker, posted on forums, or externally hosted and linked to.
All contributions to QEMU are '''sent as patches''' to the qemu-devel [[MailingLists|mailing list]].  Patch contributions should not be posted on the bug tracker, posted on forums, or externally hosted and linked to.
You get a better chance to get a reply if you follow the LKML rule of send directly to the maintainer of the portion of the patch (see MAINTAINERS file).
Consider also to prefix your patch commit messages with the portion you changed (ie: block or tcg).


'''Send patches inline''' so they are easy to reply to with review comments.  Do not put patches in attachments.
'''Send patches inline''' so they are easy to reply to with review comments.  Do not put patches in attachments.

Revision as of 13:08, 22 July 2011

All contributions to QEMU are sent as patches to the qemu-devel mailing list. Patch contributions should not be posted on the bug tracker, posted on forums, or externally hosted and linked to.

You get a better chance to get a reply if you follow the LKML rule of send directly to the maintainer of the portion of the patch (see MAINTAINERS file).

Consider also to prefix your patch commit messages with the portion you changed (ie: block or tcg).

Send patches inline so they are easy to reply to with review comments. Do not put patches in attachments.

Patch emails must include a Signed-off-by: line. For more information see SubmittingPatches 1.12.

Follow the coding style and run scripts/checkpatch.pl <patchfile> before submitting. See also:

Split up longer patches into a patch series of logical code changes. Each change should compile and execute successfully.

For smaller patches in less frequently changed areas of QEMU, consider using the trivial patches process.