Lines Matching full:t
8 A little weeding here and there goes a long way; don't wait until things have
11 Things don't always have to be perfect - nitpicking often does more harm than
24 the course of writing a patchset you encounter a condition that shouldn't
27 BUG_ON(). Don't leave undefined or unspecified behavior lurking in the codebase.
33 expensive - but don't turn everything into a debug mode assertion, so that
37 Assertions are documentation that can't go out of date. Good assertions are
64 introspection. We can't debug anything if we can't see what's going on.
66 Whenever we're debugging, and the solution isn't immediately obvious, if the
67 issue is that we don't know where the issue is because we can't see what's
71 percpu data structures among them. Don't let things stay hidden.
83 labels, and good structure - we don't want files with a list of bare integers,
90 Tracepoints shouldn't be the first thing you reach for. They're an important
104 When debugging, try to get the most out of every bug you come across; don't
114 like to help - otherwise they wouldn't be reporting the bug in the first place.
116 Talk to your users. Don't isolate yourself.
121 Spend time doing support and helpdesk stuff. Don't just write code - code isn't
129 Be wary of how you take on and commit to big projects. Don't let development
131 wait for its proper time - but you won't know if it's the proper time for an
140 But don't be afraid to tackle projects that require significant rework of
143 perhaps more robust. Just don't hesitate to abandon the idea if it looks like
150 much less risk of wasted effort if the feature you were going for doesn't work
163 reading lots of code and looking for common patterns and issues. Don't be
167 come from relaxed conversations where people aren't afraid to say "what if?".
169 Don't neglect your tools.
175 time is being wasted because your tools are bad or too slow - don't accept it,
179 don't go overboard. A good commit message is wonderful - but if the information
183 A good code comment is wonderful, but even better is the comment that didn't