- 15 Jul, 2002 27 commits
-
-
Thomas 'Dent' Mirlacher authored
this patch fixes redundant declarations in 2.5.24 (same as sent yesterday, but this time automacially splitted into several mails)
-
Greg Banks authored
Symbol CONFIG_NUMA for alpha port depends on CONFIG_EXPERIMENTAL but does not say so in its banner.
-
James Mayer authored
-
Keith Owens authored
'**' in comments misleads DocBook, the comment is for a structure that DocBook cannot handle.
-
Andreas Dilger authored
this patch is a minor fixup to ext2/inode.c to avoid displaying the high 32 bits of the size for anything other than regular files. For sockets, pipes, symlinks, etc it doesn't make sense to have a value larger than 2GB, and this has already been fixed in ext3 and e2fsprogs.
-
Martin Schwidefsky authored
Enlarge the log buffer in printk to 128K for s390/s390x.
-
James Mayer authored
-
Greg Banks authored
Symbol CONFIG_SOFTWARE_SUSPEND depends on CONFIG_EXPERIMENTAL but does not say so in its banner.
-
Keith Owens authored
Documentation/DocBook/kernel-api.tmpl includes code that has no documentation on 2.5.24, the empty sections mess up the sgml. Comment out these sections until sombody adds docs to the code.
-
Greg Banks authored
1/8 definitions of CONFIG_VGA_CONSOLE have trivially different banners.
-
Stephen Rothwell authored
The CRIS architecture is also able to use the generic copy_siginfo_to_user.
-
James Mayer authored
-
Robert Kuebel authored
init_rootfs() (from ramfs) doesn't appear in any header file. I didn't see any that looked like a good home, so lets put a prototype at the top of fs/namespace.c. This only use of this function is in namespace.c.
-
James Mayer authored
-
Greg Banks authored
Symbol CONFIG_SOFTWARE_SUSPEND depends on CONFIG_EXPERIMENTAL but does not say so in its banner.
-
James Mayer authored
-
Thomas 'Dent' Mirlacher authored
this patch fixes redundant declarations in 2.5.24 (same as sent yesterday, but this time automacially splitted into several mails)
-
Greg Banks authored
Details over 2 years out of date.
-
Greg Banks authored
The arch-determining symbol CONFIG_SH in drivers/mtd/maps/Config.in should be CONFIG_SUPERH. [Rusty: this is a resend of 'PATCH 2.5: kconfig wrong arch symbol'; it should apply now that my earlier patch which trod on the context has been merged into 2.5.24]
-
James Mayer authored
-
Greg Banks authored
Use of the $ARCH variable is undocumented; the alpha port defines the bool constant CONFIG_ALPHA for this purpose.
-
Greg Banks authored
Symbol CONFIG_SGI_NEWPORT_GFX depends on CONFIG_EXPERIMENTAL but does not say so in its banner.
-
Andrey Panin authored
attached patch adds missing static modifiers for small_digits[] and large_digits[] arrays in the number() function from lib/vsprintf.c Patch against 2.5.25, should apply to 2.4.x. Please consider applying.
-
Greg Banks authored
Use of the $ARCH variable is undocumented; the sparc and sparc64 ports define the bool constants CONFIG_SPARC32 and CONFIG_SPARC64 respectively for this purpose.
-
Greg Banks authored
Use of the $ARCH variable is undocumented; the sparc and sparc64 ports define the bool constants CONFIG_SPARC32 and CONFIG_SPARC64 respectively for this purpose.
-
Stephen Rothwell authored
This patch was included in 2.5.23, but removed in 2.5.24. I guess I should have sent it to the maintainer in the first place ... This allows the cs46xx driver to build.
-
Thomas 'Dent' Mirlacher authored
this patch fixes redundant declarations in 2.5.24 (same as sent yesterday, but this time automacially splitted into several mails)
-
- 14 Jul, 2002 1 commit
-
-
Linus Torvalds authored
-
- 15 Jul, 2002 1 commit
-
-
Anton Altaparmakov authored
Beffers marked for async io must be locked!
-
- 14 Jul, 2002 1 commit
-
-
Linus Torvalds authored
-
- 15 Jul, 2002 1 commit
-
-
Anton Altaparmakov authored
-
- 14 Jul, 2002 9 commits
-
-
Trond Myklebust authored
After getting rid of rpc_lock_task() from net/sunrpc/xprt.c (see the previous patch), we can now remove it from the generic RPC queue handling code.
-
Trond Myklebust authored
Divorces task xid<->request slot mapping from the internals of the rpc_waitqueue xprt->pending. Instead xprt_lookup_rqst() is made to search a dedicated list (xprt->recv) on which the request slot is placed immediately after being allocated to a task. The new queue is protected using the spinlock xprt->sock_lock rather than the generic RPC task lock. Both udp_data_ready() and tcp_data_ready() (well tcp_read_request() actually) now need to protect against the request being removed from the xprt->recv list while they copy the RPC reply data from the skb. On the other hand, they no longer need to worry about the task disappearing from xprt->pending. This means that rpc_lock_task() hack can be replaced by the spinlock xprt->sock_lock.
-
Trond Myklebust authored
Fixes an obvious bug in __nfs_refresh_inode(): after updating the attribute cache, if we discover that the data cache is invalid don't call nfs_zap_caches() as that will also reinvalidate the attribute cache. This bug plays havoc with the new lookup/revalidation code in 2.4.19 since it forces a lot of unnecessary extra GETATTR RPC calls.
-
Douglas Gilbert authored
This patch is against lk 2.5.25 . It - fixes copy_from/to_user() [William Stinson from dj tree] - disables kiobuf use, so it will compile without kiobufs The latter change is so Andrew Morton can remove kiobufs as suggested in his "direct-to-BIO for O_DIRECT" thread.
-
Martin Dalecki authored
- Make airo include tqueue.h, which is needed to make this driver compile at all again. - Adjust aztcd.c and sonycd535.c to the recent end_request() signature changes.
-
Dave Jones authored
From Andi Kleen: Some fixes for CONFIG_X86_MCE_NONFATAL Calling smp_call_function from interrupt context is forbidden Unless I'm mistaken it would BUG on any box with more than two CPUs because it would expect smp_call_function callback to run only on a single CPU?? Also handle the Hammer.
-
http://linuxconsole.bkbits.net:8080/devLinus Torvalds authored
into home.transmeta.com:/home/torvalds/v2.5/linux
-
bk://thebsh.namesys.com/bk/reiser3-linux-2.5Linus Torvalds authored
into home.transmeta.com:/home/torvalds/v2.5/linux
-
Hirofumi Ogawa authored
SuSv3 says: "The mprotect() function shall fail if: [EACCES] The prot argument specifies a protection that violates the access permission the process has to the underlying memory object. [EAGAIN] The prot argument specifies PROT_WRITE over a MAP_PRIVATE mapping and there are insufficient memory resources to reserve for locking the private page. [EINVAL] The addr argument is not a multiple of the page size as returned by sysconf(). [ENOMEM] Addresses in the range [addr,addr+len) are invalid for the address space of a process, or specify one or more pages which are not mapped. [ENOMEM] The prot argument specifies PROT_WRITE on a MAP_PRIVATE mapping, and it would require more space than the system is able to supply for locking the private pages, if required. [ENOTSUP] The implementation does not support the combination of accesses requested in the prot argument." This fixes error code of mprotect() of the ENOMEM case.
-