forked from MaximeChretien/linux-history
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The main notables are the network fixes (uninitialized skb->dev could…
… and did cause oopses in ip_defrag) and the mm fixes (dirty pages without mappings etc, causing problems in page_launder). The mm cleanups also include removing "swapout()" as a VM operation, as nobody can sanely do anything more than just marking the page dirty anyway (the real work is done by writepage() these days), and doing that explicitly simplifies VM scanning considerably. This still doesn't tell "sync()" about dirty pages (ie the "innd loses the active file after a reboot" bug), but now the places that mark pages dirty are under control. Next step.. - NIIBE Yutaka: SuperH update - Geert Uytterhoeven: m68k update - David Miller: TCP RTO calc fix, UDP multicast fix etc - Duncan Laurie: ServerWorks PIRQ routing definition. - mm PageDirty cleanups, added sanity checks, and don't lose the bit.
- Loading branch information
Linus Torvalds
committed
Nov 23, 2007
1 parent
5ecc69e
commit 480eec6
Showing
76 changed files
with
64,276 additions
and
641 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1166,7 +1166,7 @@ S: Maintained | |
|
||
SUPERH | ||
P: Niibe Yutaka | ||
M: gniibe@chroot.org | ||
M: gniibe@m17n.org | ||
P: Kazumoto Kojima | ||
M: [email protected] | ||
L: [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
This is the original source code from Motorola for the 68060 processor | ||
support code, providing emulation for rarely used m68k instructions | ||
not implemented in the 68060 silicon. | ||
|
||
The code provided here will not assemble out of the box using the GNU | ||
assembler, however it is being included in order to comply with the | ||
GNU General Public License. | ||
|
||
You don't need to actually assemble these files in order to compile a | ||
workin m68k kernel, the precompiled .sa files in arch/m68k/ifpsp060 | ||
are sufficient and were generated from these source files by | ||
Motorola. |
Oops, something went wrong.