- 13 Jan, 2003 5 commits
-
-
Linus Torvalds authored
-
Robert Love authored
As you mentioned, we do not correctly identify the P4-based Celeron in the kernel configuration help. Unfortunately, Intel has called all Celeron products simply "Celeron", so we call these "P4-based Celerons".
-
Linus Torvalds authored
-
Brian Gerst authored
Check for PnP BIOS in all fault paths, not just in do_trap().
-
http://ppc.bkbits.net/for-linus-ppc64Linus Torvalds authored
into home.transmeta.com:/home/torvalds/v2.5/linux
-
- 14 Jan, 2003 6 commits
-
-
Anton Blanchard authored
-
Anton Blanchard authored
into samba.org:/scratch/anton/sfr
-
Anton Blanchard authored
into samba.org:/scratch/anton/sfr
-
Anton Blanchard authored
-
Anton Blanchard authored
into samba.org:/scratch/anton/for-alan
-
Anton Blanchard authored
into samba.org:/scratch/anton/for-alan
-
- 13 Jan, 2003 5 commits
-
-
Anton Blanchard authored
-
Anton Blanchard authored
into samba.org:/scratch/anton/for-alan
-
bk://kernel.bkbits.net/davem/net-2.5Linus Torvalds authored
into home.transmeta.com:/home/torvalds/v2.5/linux
-
bk://kernel.bkbits.net/davem/sparc-2.5Linus Torvalds authored
into home.transmeta.com:/home/torvalds/v2.5/linux
-
bk://ppc.bkbits.net/for-linus-ppcLinus Torvalds authored
into home.transmeta.com:/home/torvalds/v2.5/linux
-
- 14 Jan, 2003 2 commits
-
-
Paul Mackerras authored
A couple of occurrences of struct free_pte_ctx in include/asm-ppc/tlb.h got missed in akpm's patch - this fixes them.
-
Dale Farnsworth authored
copy_from_user is supposed to transfer as much data as is valid and then to return the number of bytes not tranferred. That's how it works on x86. On ppc it can be as much as 15 bytes short. I initially saw the problem with the mount system call. Note that the fifth argument to mount is an address 8 bytes from the end of user data space. There is a null byte at that address, since no mount options are being passed. In the kernel, sys_mount() allocates a page for the options and does copy_from_user(new_page, 0x1005eff8, PAGE_SIZE). copy_from_user should copy 8 bytes and return (PAGE_SIZE-8). Instead, on ppc it reads 8 bytes, faults, writes no bytes, and returns PAGE_SIZE, which causes the EFAULT to be erroneously reported.
-
- 13 Jan, 2003 1 commit
-
-
Paul Mackerras authored
into samba.org:/home/paulus/kernel/for-linus-ppc
-
- 12 Jan, 2003 21 commits
-
-
David S. Miller authored
-
David S. Miller authored
-
Pete Zaitcev authored
- Make sure R9 is really loaded - Make sure IS_CONS flag is handled properly.
-
Paul Rolland authored
-
Bart De Schuymer authored
- use /* */ instead of // - change my mail alias - remove MOD_DEC_USE_COUNT and MOD_INC_USE_COUNT - use try_module_get (and check result) and module_put instead of __MOD_INC_USE_COUNT and __MOD_DEC_USE_COUNT - add \n in init/exit messages
-
Anders Gustafsson authored
-
Stephen Rothwell authored
-
Stephen Rothwell authored
Here is the s390x part. Others will go through the respective maintainers.
-
Stephen Rothwell authored
This patch creates compat_sys_statfs and compat_sys_fstatfs. This is just the generic part of the patch. Specific archs will follow.
-
Rusty Russell authored
Since these are just symbols in the module object, they need symbol name munging to find the symbol from the parameter name.
-
Rusty Russell authored
strlen_user returns 0 on error, not an error number, and otherwise returns the length including the NUL byte. Found by Andi Kleen.
-
Rusty Russell authored
Russell's patch beat mine in, and unfortunately didn't conflict, so armv has two __gpl_ksymtab sections. Revert mine.
-
Roland McGrath authored
Add ptrace support for getting and setting the THREAD_AREA of the thread being debugged on x86.
-
Linus Torvalds authored
-
Rusty Russell authored
Explicitly place the __gpl_ksymtab section for every arch. RMK pointed out that some archs will place it really badly otherwise.
-
Kai Germaschewski authored
I appreciate the adaption of the ISDN drivers to the new PnP layer (though I don't know why it was actually necessary to break the old ISAPnP so late in the cycle), but the gratuitious changes to the coding style were not exactly necessary. So revert things to the "if (retval) goto err_unwind;" style and fix a couple of other compile time errors.
-
Kai Germaschewski authored
into tp1.ruhr-uni-bochum.de:/scratch/kai/kernel/v2.5/linux-2.5.isdn
-
Kai Germaschewski authored
This is just again moving some common code into shared places, let the chip-specific driver check the versions instead of having every card-specific driver do so.
-
Kai Germaschewski authored
We use card->typ to decide which subdriver to call, so there's no need at all for the subdriver to check again that card->typ is correct.
-
Kai Germaschewski authored
Share the code to display line status via LEDs and get rid of the remaining ->cardmsg() users.
-
Kai Germaschewski authored
A lot of the subdrivers don't do anything in their ->cardmsg function anymore, so we just remove those and make the callers check for NULL. Also, add ops->bc_{,de}activate() for the drivers which want to be notified of B-Channel activation.
-