Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
57770064
Commit
57770064
authored
Jul 13, 2003
by
Robert Zwerus
Committed by
Russell King
Jul 13, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] Documentation/CodingStyle spelling fixes
parent
2e2cede4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
Documentation/CodingStyle
Documentation/CodingStyle
+4
-4
No files found.
Documentation/CodingStyle
View file @
57770064
...
@@ -140,7 +140,7 @@ understand what the function is all about, you should adhere to the
...
@@ -140,7 +140,7 @@ understand what the function is all about, you should adhere to the
maximum limits all the more closely. Use helper functions with
maximum limits all the more closely. Use helper functions with
descriptive names (you can ask the compiler to in-line them if you think
descriptive names (you can ask the compiler to in-line them if you think
it's performance-critical, and it will probably do a better job of it
it's performance-critical, and it will probably do a better job of it
tha
t
you would have done).
tha
n
you would have done).
Another measure of the function is the number of local variables. They
Another measure of the function is the number of local variables. They
shouldn't exceed 5-10, or you're doing something wrong. Re-think the
shouldn't exceed 5-10, or you're doing something wrong. Re-think the
...
@@ -200,7 +200,7 @@ automagically when you edit source files under /usr/src/linux.
...
@@ -200,7 +200,7 @@ automagically when you edit source files under /usr/src/linux.
But even if you fail in getting emacs to do sane formatting, not
But even if you fail in getting emacs to do sane formatting, not
everything is lost: use "indent".
everything is lost: use "indent".
Now, again, GNU indent has the same brain
dead settings that GNU emacs
Now, again, GNU indent has the same brain
-
dead settings that GNU emacs
has, which is why you need to give it a few command line options.
has, which is why you need to give it a few command line options.
However, that's not too bad, because even the makers of GNU indent
However, that's not too bad, because even the makers of GNU indent
recognize the authority of K&R (the GNU people aren't evil, they are
recognize the authority of K&R (the GNU people aren't evil, they are
...
@@ -232,7 +232,7 @@ fi
...
@@ -232,7 +232,7 @@ fi
Generally, CONFIG_EXPERIMENTAL should surround all options not considered
Generally, CONFIG_EXPERIMENTAL should surround all options not considered
stable. All options that are known to trash data (experimental write-
stable. All options that are known to trash data (experimental write-
support for file-systems, for instance) should be denoted (DANGEROUS), other
support for file-systems, for instance) should be denoted (DANGEROUS), other
E
xperimental options should be denoted (EXPERIMENTAL).
e
xperimental options should be denoted (EXPERIMENTAL).
Chapter 8: Data structures
Chapter 8: Data structures
...
@@ -258,7 +258,7 @@ when there are users of different "classes". The subclass count counts
...
@@ -258,7 +258,7 @@ when there are users of different "classes". The subclass count counts
the number of subclass users, and decrements the global count just once
the number of subclass users, and decrements the global count just once
when the subclass count goes to zero.
when the subclass count goes to zero.
Examples of this kind of "multi-reference-counting" can be found in
Examples of this kind of "multi-
level-
reference-counting" can be found in
memory management ("struct mm_struct": mm_users and mm_count), and in
memory management ("struct mm_struct": mm_users and mm_count), and in
filesystem code ("struct super_block": s_count and s_active).
filesystem code ("struct super_block": s_count and s_active).
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment