Development: Code Review: Difference between revisions

From LinuxTVWiki
Jump to navigation Jump to search
m (some changes in wording)
m (add link)
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
We define a "code reviewer" as somebody who carefully looks over submitted source code, checking it for correctness and considers areas in which it could potentially be optimized, and then reports or provides such feedback to the original authour.
We define a "code reviewer" as somebody who carefully looks over [[Development: How to submit patches|submitted source code]], checking it for correctness and considers areas in which it could potentially be optimized, and then reports or provides such feedback to the original authour.


== Why have a Code Review? ==
== Why have a Code Review? ==
Nobody is perfect; we are all human and, hence, despite even the most rigorous attempts not to, we can potentially err somewhere along the way. In development, it is often the case that an unrecognized bug makes its way into the code, and then remains latent until it manifests itself in some more obvious way and, only after which, its presence is finally realized (i.e end user reports an error that is ultimately traced as being derived from a bug in the code that has been present all along). The only way to make the Linux v4l-dvb code as stable and robust as possible is, in by itself, by having as many developers as possible analyze the source code, watching out for potential bugs and weaknesses.
Nobody is perfect; we are all human and, hence, despite even the most rigorous attempts not to, we can potentially err somewhere along the way. This is particularly true in software development, as it is often the case that an unrecognized bug makes its way into production code. Therein, the bug will remain latent until it manifests itself in some more obvious way and then, only after which time, its presence is finally realized (i.e an end user encounters and [[Bug Report|reports an error]] which is ultimately traced to being derived from a bug that has been present in the source code all along).


== When should you have a code review? ==
== When should you have a Code Review? ==
Consequent to the above question as to why have a code review, having a code review is an integral part of the process for new [[Development: How to submit patches|driver and patch submissions]] to the V4L-DVB code base. The only way to make the [[What is V4L or DVB?|V4L-DVB]] code as stable and robust as possible is, in by itself, by having as many developers as possible analyze the source code, watching out for potential bugs and weaknesses.
If you encounter a bug please file a [[Bug Report]] or, even better, send in a [[Bugfix]] !


==Similar Concepts to a Code Review==
When you get a good idea on how to make something better or wish to introduce [[Development: DVB Driver Performance Optimisations|performance optimisations]], please start a thread on the [mailto:majordomo@vger.kernel.org?body=subscribe%20linux-media linux-media mailing list] and let's discuss this/these idea(s).
When you get a good idea on how to improve the existing code base, such as by introducing [[Development: Driver Performance Optimisations|performance optimisations]], or wish to introduce something entirely new to its feature set, please start a RFC (review for consideration) thread on the [mailto:majordomo@vger.kernel.org?body=subscribe%20linux-media Linux-Media Mailing List] (like this, [http://www.mail-archive.com/linux-media@vger.kernel.org/msg09831.html for example]) and let's discuss this/these idea(s).


As soon you encounter a point where you see that it would make much more sense to rewrite portions of the V4L-DVB source code, you are now dealing with the deeper process of '''refactoring'''; please have a look at the "[[Development: Hints for Refactoring Existing Drivers|Hints for Refactoring Existing drivers]]" article for more information.
Also note that when you encounter a point where you see that it would make much more sense to completely rewrite portions of the V4L-DVB source code, you are now dealing with the much deeper process of '''refactoring'''; please have a look at the "[[Development: Hints for Refactoring Existing Drivers|Hints for Refactoring Existing drivers]]" article for more information.





Latest revision as of 03:08, 19 September 2009

We define a "code reviewer" as somebody who carefully looks over submitted source code, checking it for correctness and considers areas in which it could potentially be optimized, and then reports or provides such feedback to the original authour.

Why have a Code Review?

Nobody is perfect; we are all human and, hence, despite even the most rigorous attempts not to, we can potentially err somewhere along the way. This is particularly true in software development, as it is often the case that an unrecognized bug makes its way into production code. Therein, the bug will remain latent until it manifests itself in some more obvious way and then, only after which time, its presence is finally realized (i.e an end user encounters and reports an error which is ultimately traced to being derived from a bug that has been present in the source code all along).

When should you have a Code Review?

Consequent to the above question as to why have a code review, having a code review is an integral part of the process for new driver and patch submissions to the V4L-DVB code base. The only way to make the V4L-DVB code as stable and robust as possible is, in by itself, by having as many developers as possible analyze the source code, watching out for potential bugs and weaknesses.

Similar Concepts to a Code Review

When you get a good idea on how to improve the existing code base, such as by introducing performance optimisations, or wish to introduce something entirely new to its feature set, please start a RFC (review for consideration) thread on the Linux-Media Mailing List (like this, for example) and let's discuss this/these idea(s).

Also note that when you encounter a point where you see that it would make much more sense to completely rewrite portions of the V4L-DVB source code, you are now dealing with the much deeper process of refactoring; please have a look at the "Hints for Refactoring Existing drivers" article for more information.