NFS client patches for Linux 2.6.26-rc5

The following set of patches fix known issues with the 2.6.26-rc5 NFS client code, and significantly enhance the support for NFSv4.

linux-2.6.26-001-fix_nfs_update_request_memleak.dif:

From: Trond Myklebust <Trond.Myklebust@netapp.com>

Date: Thu, 5 Jun 2008 15:17:39 -0400

NFS: Fix a preemption count leak in nfs_update_request

The commit 2785259631697ebb0749a3782cca206e2e542939 (nfs: use GFP_NOFS preloads for radix-tree insertion) appears to have introduced a bug: We only want to call radix_tree_preload() once after creating a request. Calling it every time we loop after we created the request, will cause preemption count leaks.

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> Cc: Nick Piggin <npiggin@suse.de>

linux-2.6.26-002-dont_mark_page_dirty_on_error.dif:

From: Trond Myklebust <Trond.Myklebust@netapp.com>

Date: Thu, 5 Jun 2008 16:02:35 -0400

NFS: nfs_updatepage(): don't mark page as dirty if an error occurred

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>

linux-2.6.26-003-add_lock_check_bounds.dif:

From: Trond Myklebust <Trond.Myklebust@netapp.com>

Date: Tue, 20 May 2008 19:34:39 -0400

NFS: Add correct bounds checking to NFSv2 locks

NFSv2 file locking currently fails the Connectathon tests, because the calls to the VFS locking code do not return an EINVAL error if the struct file_lock overflows the 32-bit boundaries.

The problem is due to the fact that we occasionally call helpers from fs/locks.c in order to avoid RPC calls to the server when we know that a local process holds the lock. These helpers are, of course, always 64-bit enabled, so EINVAL is not returned in cases when it would if the call had gone to the NLM code.

For consistency, we therefore add support for a bounds-checking helper.

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>

linux-2.6.26-004-exit_on_encode_error.dif:

From: Trond Myklebust <Trond.Myklebust@netapp.com>

Date: Wed, 14 May 2008 19:48:25 -0700

SUNRPC: Ensure we exit early in case of an encode error

All errors from call_encode(), with exception of EAGAIN are fatal, so we should immediately return instead of proceeding to xprt_transmit().

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>

linux-2.6.26-005-enomem_on_encode_is_fatal.dif:

From: Trond Myklebust <Trond.Myklebust@netapp.com>

Date: Tue, 10 Jun 2008 18:30:11 -0400

SUNRPC: An ENOMEM error from call_encode is always fatal

The special 'ENOMEM' case that was previously flagged as non-fatal is bogus: auth_gss always returns EAGAIN for non-fatal errors, and may in fact return ENOMEM in the special case where xdr_buf_read_netobj runs out of preallocated buffer space (invariably a _fatal_ error, since there is no provision for preallocating larger buffers).

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>

linux-2.6.26-006-optimise_append.dif:

From: Trond Myklebust <Trond.Myklebust@netapp.com>

Date: Tue, 10 Jun 2008 18:31:00 -0400

NFS: Optimise append writes with holes

If a file is being extended, and we're creating a hole, we might as well declare the entire page to be up to date.

This patch significantly improves the write performance for sparse files in the case where lseek(SEEK_END) is used to append several non-contiguous writes at intervals of < PAGE_SIZE.

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>

linux-2.6.26-007-revert_commit_44dd151d.dif:

From: Trond Myklebust <Trond.Myklebust@netapp.com>

Date: Sun, 25 May 2008 12:59:19 -0400

NFS: Revert commit 44dd151d

Revert commit 44dd151d "NFS: Don't mark a written page as uptodate until it is on disk". While it is true that the write may fail, that is always the case. There is no reason why we should treat data on pages that are not already marked as PG_uptodate as being special. The only thing we gain is a noticeable slowdown when re-reading these pages.

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>

linux-2.6.26-008-use_gfp_nofs_when_alloc_creds.dif:

From: Trond Myklebust <Trond.Myklebust@netapp.com>

Date: Tue, 10 Jun 2008 18:31:01 -0400

SUNRPC: Use GFP_NOFS when allocating credentials

Since the credentials may be allocated during the call to rpc_new_task(), which again may be called by a memory allocator...

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>

linux-2.6.26-009-locks_dont_flush_on_delegation.dif:

From: Trond Myklebust <Trond.Myklebust@netapp.com>

Date: Tue, 10 Jun 2008 18:31:02 -0400

NFS: do_setlk(): don't flush caches when we have a delegation

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>

linux-2.6.26-010-update_help_text_for_config_nfs_fs.dif:

From: Chuck Lever <chuck.lever@oracle.com>

Date: Wed, 21 May 2008 17:09:04 -0400

NFS: Update help text for CONFIG_NFS_FS

Clean up: refresh the help text for Kconfig items related to the NFS client. Remove obsolete URLs, and make the language consistent among the options.

Also move the ROOT_NFS config option next to the options related to the NFS client.

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>

linux-2.6.26-011-add_a_function_to_display_the_name_of_an_rpc_procedure.dif:

From: Chuck Lever <chuck.lever@oracle.com>

Date: Wed, 21 May 2008 17:09:12 -0400

SUNRPC: Add a function to display the name of an RPC procedure

Improve debugging messages in call_start() and call_verify() by having them show the RPC procedure name instead of the procedure number.

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>

linux-2.6.26-012-rename_call_functions_that_are_no_longer_fsm_states.dif:

From: Chuck Lever <chuck.lever@oracle.com>

Date: Wed, 21 May 2008 17:09:19 -0400

SUNRPC: Rename "call_" functions that are no longer FSM states

The RPC client uses a finite state machine to move RPC tasks through each step of an RPC request. Each state is contained in a function in net/sunrpc/clnt.c, and named call_foo.

Some of the functions named call_foo have changed over the past few years and are no longer states in the FSM. These include: call_encode, call_header, and call_verify. As a clean up, rename the functions that have changed.

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>

linux-2.6.26-013-don_t_display_the_rpc_show_tasks_header_if_there_are_no_tasks.dif:

From: Chuck Lever <chuck.lever@oracle.com>

Date: Wed, 21 May 2008 17:09:26 -0400

SUNRPC: Don't display the rpc_show_tasks header if there are no tasks

Clean up: don't display the rpc_show_tasks column header unless there is at least one task to display. As far as I can tell, it is safe to let the list_for_each_entry macro decide that each list is empty.

scripts/checkpatch.pl also wants a KERN_FOO at the start of any newly added printk() calls, so this and subsequent patches will also add KERN_INFO.

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>

linux-2.6.26-014-refactor_rpc_show_tasks.dif:

From: Chuck Lever <chuck.lever@oracle.com>

Date: Wed, 21 May 2008 17:09:33 -0400

SUNRPC: Refactor rpc_show_tasks

Clean up: move the logic that displays each task to its own function. This removes indentation and makes future changes easier.

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>

linux-2.6.26-015-display_some_debugging_information_as_text_rather_than_numbers.dif:

From: Chuck Lever <chuck.lever@oracle.com>

Date: Wed, 21 May 2008 17:09:41 -0400

SUNRPC: Display some debugging information as text rather than numbers

In rpc_show_tasks(), display the program name, version number, procedure name and tk_action as human-readable variable-length text fields rather than columnar numbers.

Doing the symbol lookup here helps in cases where we have actual debugging output from a kernel log, but don't have access to the kernel image or RPC module that generated the output.

Sample output:

-pid- flgs status -client- --rqstp- -timeout ---ops-- 5608 0001 -11 eeb42690 f6d93710 0 f8fa1764 nfsv3 WRITE a:call_transmit_status q:none 5609 0001 -11 eeb42690 f6d937e0 0 f8fa1764 nfsv3 WRITE a:call_status q:xprt_sending 5610 0001 -11 eeb42690 f6d93230 0 f8fa1764 nfsv3 WRITE a:call_status q:xprt_sending 5611 0001 -11 eeb42690 f6d93300 0 f8fa1764 nfsv3 WRITE a:call_status q:xprt_sending 5612 0001 -11 eeb42690 f6d93090 0 f8fa1764 nfsv3 WRITE a:call_status q:xprt_sending 5613 0001 -11 eeb42690 f6d933d0 0 f8fa1764 nfsv3 WRITE a:call_status q:xprt_sending 5614 0001 -11 eeb42690 f6d93cc0 0 f8fa1764 nfsv3 WRITE a:call_status q:xprt_sending 5615 0001 -11 eeb42690 f6d93a50 0 f8fa1764 nfsv3 WRITE a:call_status q:xprt_sending 5616 0001 -11 eeb42690 f6d93640 0 f8fa1764 nfsv3 WRITE a:call_status q:xprt_sending 5617 0001 -11 eeb42690 f6d93b20 0 f8fa1764 nfsv3 WRITE a:call_status q:xprt_sending 5618 0001 -11 eeb42690 f6d93160 0 f8fa1764 nfsv3 WRITE a:call_status q:xprt_sending

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>

linux-2.6.26-016-make_nfs_fsync_methods_consistent.dif:

From: Chuck Lever <chuck.lever@oracle.com>

Date: Tue, 27 May 2008 16:29:07 -0400

NFS: Make nfs_fsync methods consistent

Clean up: Report the same debugging info, count function calls the same, and use similar function naming in nfs_fsync_dir() and nfs_fsync().

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>

linux-2.6.26-017-make_nfs_llseek_methods_consistent.dif:

From: Chuck Lever <chuck.lever@oracle.com>

Date: Wed, 11 Jun 2008 17:55:34 -0400

NFS: Make nfs_llseek methods consistent

Clean up: Report the same debugging info in nfs_llseek_dir() and nfs_llseek_file().

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>

linux-2.6.26-018-make_nfs_open_methods_consistent.dif:

From: Chuck Lever <chuck.lever@oracle.com>

Date: Wed, 11 Jun 2008 17:55:42 -0400

NFS: Make nfs_open methods consistent

Clean up: Report the same debugging info and count function calls the same for files and directories in nfs_opendir() and nfs_file_open().

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>

linux-2.6.26-019-add_debugging_facility_for_nfs_aops.dif:

From: Chuck Lever <chuck.lever@oracle.com>

Date: Wed, 11 Jun 2008 17:55:50 -0400

NFS: Add debugging facility for NFS aops

Recent work in fs/nfs/file.c neglected to add appropriate trace debugging for the NFS client's address space operations.

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>

linux-2.6.26-020-use_nfsdbg_file_for_all_fops.dif:

From: Chuck Lever <chuck.lever@oracle.com>

Date: Wed, 11 Jun 2008 17:55:58 -0400

NFS: Use NFSDBG_FILE for all fops

Clean up: some fops use NFSDBG_FILE, some use NFSDBG_VFS. Let's use NFSDBG_FILE for all fops, and consistently report file names instead of inode numbers.

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>

linux-2.6.26-021-fix_trace_debugging_nits_in_write_c.dif:

From: Chuck Lever <chuck.lever@oracle.com>

Date: Wed, 11 Jun 2008 17:56:05 -0400

NFS: Fix trace debugging nits in write.c

Clean up: fix a few dprintk messages that still need to show the RPC task ID correctly, and be sure we use the preferred %lld or %llu instead of %Ld or %Lu.

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>

linux-2.6.26-022-remove_obsolete_messages_during_transport_connect.dif:

From: Chuck Lever <chuck.lever@oracle.com>

Date: Wed, 11 Jun 2008 17:56:13 -0400

SUNRPC: Remove obsolete messages during transport connect

Recent changes to the RPC client's transport connect logic make connect status values ECONNREFUSED and ECONNRESET impossible.

Clean up xprt_connect_status() to account for these changes.

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>

linux-2.6.26-023-nfsroot_remove_cvs_keyword.dif:

From: Adrian Bunk <bunk@kernel.org>

Date: Tue, 20 May 2008 01:08:00 +0300

fs/nfs/nfsroot.c: remove CVS keyword

This patch removes a CVS keyword that wasn't updated for a long time from a comment.

Signed-off-by: Adrian Bunk <bunk@kernel.org>

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>

linux-2.6.26-024-check_options_when_remounting.dif:

From: Jeff Layton <jlayton@redhat.com>

Date: Tue, 10 Jun 2008 15:38:39 -0400

NFS: implement option checking when remounting NFS filesystems (resend)

When remounting an NFS or NFS4 filesystem, the new NFS options are not respected, yet the remount will still return success. This patch adds a remount_fs sb op for NFS that checks any new nfs mount options against the existing ones and fails the mount if any have changed.

This is only implemented for string-based mount options since doing this with binary options isn't really feasible.

This is essentially the same as the original patch I sent out, but adds a check to see if the addr= option has changed.

Signed-off-by: Jeff Layton <jlayton@redhat.com>

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>

linux-2.6.26-025-bring_back_cl_chatty.dif:

From: Olga Kornievskaia <aglo@citi.umich.edu>

Date: Mon, 9 Jun 2008 16:51:31 -0400

rpc: bring back cl_chatty

The cl_chatty flag alows us to control whether a given rpc client leaves

"server X not responding, timed out"

messages in the syslog. Such messages make sense for ordinary nfs clients (where an unresponsive server means applications on the mountpoint are probably hanging), but not for the callback client (which can fail more commonly, with the only result just of disabling some optimizations).

Previously cl_chatty was removed, do to lack of users; reinstate it, and use it for the nfsd's callback client.

Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>

linux-2.6.26-026-eliminate_unused_variable_in_auth_gss_upcall_code.dif:

From: \"J. Bruce Fields\" <bfields@citi.umich.edu>

Date: Mon, 9 Jun 2008 16:51:33 -0400

rpc: eliminate unused variable in auth_gss upcall code

Also, a minor comment grammar fix in the same file.

Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>

linux-2.6.26-027-remove_some_unused_macros.dif:

From: \"J. Bruce Fields\" <bfields@citi.umich.edu>

Date: Mon, 9 Jun 2008 16:51:34 -0400

rpc: remove some unused macros

There used to be a print_hexl() function that used isprint(), now gone. I don't know why NFS_NGROUPS and CA_RUN_AS_MACHINE were here.

I also don't know why another #define that's actually used was marked "unused".

Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>

linux-2.6.26-028-minor_cleanup_of_scheduler_callback_code.dif:

From: \"J. Bruce Fields\" <bfields@citi.umich.edu>

Date: Mon, 9 Jun 2008 16:51:35 -0400

rpc: minor cleanup of scheduler callback code

Try to make the comment here a little more clear and concise.

Also, this macro definition seems unnecessary.

Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>

linux-2.6.26-030-set_rq_xtime_on_all_xprts.dif:

From: Chuck Lever <chuck.lever@oracle.com>

Date: Fri, 06 Jun 2008 13:22:25 -0400

SUNRPC: Ensure all transports set rq_xtime consistently

The RPC client uses the rq_xtime field in each RPC request to determine the round-trip time of the request. Currently, the rq_xtime field is initialized by each transport just before it starts enqueing a request to be sent. However, transports do not handle initializing this value consistently; sometimes they don't initialize it at all.

To make the measurement of request round-trip time consistent for all RPC client transport capabilities, pull rq_xtime initialization into the RPC client's generic transport logic. Now all transports will get a standardized RTT measure automatically, from:

xprt_transmit()

to

xprt_complete_rqst()

This makes round-trip time calculation more accurate for the TCP transport. The socket ->sendmsg() method can return "-EAGAIN" if the socket's output buffer is full, so the TCP transport's ->send_request() method may call the ->sendmsg() method repeatedly until it gets all of the request's bytes queued in the socket's buffer.

Currently, the TCP transport sets the rq_xtime field every time through that loop so the final value is the timestamp just before the *last* call to the underlying socket's ->sendmsg() method. After this patch, the rq_xtime field contains a timestamp that reflects the time just before the *first* call to ->sendmsg().

This is consequential under heavy workloads because large requests often take multiple ->sendmsg() calls to get all the bytes of a request queued. The TCP transport causes the request to sleep until the remote end of the socket has received enough bytes to clear space in the socket's local output buffer. This delay can be quite significant.

The method introduced by this patch is a more accurate measure of RTT for stream transports, since the server can cause enough back pressure to delay (ie increase the latency of) requests from the client.

Additionally, this patch corrects the behavior of the RDMA transport, which entirely neglected to initialize the rq_xtime field. RPC performance metrics for RDMA transports now display correct RPC request round trip times.

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>

Acked-by: Tom Talpey <thomas.talpey@netapp.com>

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>

linux-2.6.26-031-remove_redundant_file_open_rpc_op.dif:

From: Trond Myklebust <Trond.Myklebust@netapp.com>

Date: Wed, 11 Jun 2008 16:32:46 -0400

NFS: Remove the redundant file_open entry from struct nfs_rpc_ops

All instances are set to nfs_open(), so we should just remove the redundant indirection. Ditto for the file_release op

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>

linux-2.6.26-032-add_nfs_iostat_h_to_include_linux.dif:

From: Chuck Lever <chuck.lever@oracle.com>

Date: Thu, 12 Jun 2008 12:32:25 -0400

NFS: Move fs/nfs/iostat.h to include/linux

The fs/nfs/iostat.h header has definitions that were designed to be exposed to user space. Move these definitions under include/linux so user space can use the definitions in applications that read /proc/self/mountstats.

Also address a handful of coding style issues called out by checkpatch.pl in fs/nfs/iostat.h.

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>

linux-2.6.26-033-fix_warning_in_nfs4_async_handle_error.dif:

From: Trond Myklebust <Trond.Myklebust@netapp.com>

Date: Wed, 11 Jun 2008 16:42:05 -0400

NFS: Fix a warning in nfs4_async_handle_error

We're not modifying the nfs_server when we call nfs_inc_server_stats and friends, so allow the compiler to pass 'const' pointers too.

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>

linux-2.6.26-034-fix_nfs4_proc_set_acl.dif:

From: Trond Myklebust <Trond.Myklebust@netapp.com>

Date: Wed, 11 Jun 2008 17:39:04 -0400

NFS: Ensure we zap only the access and acl caches when setting new acls

...and ensure that we obey the NFS_INO_INVALID_ACL flag when retrieving the acls.

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>

linux-2.6.26-035-allow_any_value_for_the_retry_option.dif:

From: Chuck Lever <chuck.lever@oracle.com>

Date: Thu, 12 Jun 2008 12:37:33 -0400

NFS: Allow any value for the "retry" option

The kernel NFS mount option parser should ignore the retry= mount option since it is meaningful only in user space. Today it expects a number rather than arbitrary text, so it ignores the option if the value is numeric, but chokes if there are other characters in the value.

Change it to allow any text (except ",") as its value.

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>

linux-2.6.26-036-treat_intr_and_nointr_options_as_deprecated.dif:

From: Chuck Lever <chuck.lever@oracle.com>

Date: Thu, 12 Jun 2008 12:37:41 -0400

NFS: Treat "intr" and "nointr" options as deprecated

Clean up: the "intr" and "nointr" mount options were recently retired. Document this in the NFS mount option parser.

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>

linux-2.6.26-037-missing_newline_in_nfs_mount_debugging_message.dif:

From: Chuck Lever <chuck.lever@oracle.com>

Date: Thu, 12 Jun 2008 12:37:49 -0400

NFS: missing newline in NFS mount debugging message

Clean up.

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>

[ICO]NameLast modifiedSizeDescription

[PARENTDIR]Parent Directory   -  
[TXT]linux-2.6.26-001-fix..>2008-06-12 19:37 1.5K 
[TXT]linux-2.6.26-002-don..>2008-06-12 19:37 875  
[TXT]linux-2.6.26-003-add..>2008-06-12 19:37 3.5K 
[TXT]linux-2.6.26-004-exi..>2008-06-12 19:37 1.2K 
[TXT]linux-2.6.26-005-eno..>2008-06-12 19:37 1.0K 
[TXT]linux-2.6.26-006-opt..>2008-06-12 19:37 2.5K 
[TXT]linux-2.6.26-007-rev..>2008-06-12 19:37 2.2K 
[TXT]linux-2.6.26-008-use..>2008-06-12 19:37 5.1K 
[TXT]linux-2.6.26-009-loc..>2008-06-12 19:37 720  
[TXT]linux-2.6.26-010-upd..>2008-06-12 19:37 7.8K 
[TXT]linux-2.6.26-011-add..>2008-06-12 19:37 1.9K 
[TXT]linux-2.6.26-012-ren..>2008-06-12 19:37 4.5K 
[TXT]linux-2.6.26-013-don..>2008-06-12 19:37 1.9K 
[TXT]linux-2.6.26-014-ref..>2008-06-12 19:37 2.2K 
[TXT]linux-2.6.26-015-dis..>2008-06-12 19:37 3.5K 
[TXT]linux-2.6.26-016-mak..>2008-06-12 19:37 2.9K 
[TXT]linux-2.6.26-017-mak..>2008-06-12 19:37 1.8K 
[TXT]linux-2.6.26-018-mak..>2008-06-12 19:37 1.4K 
[TXT]linux-2.6.26-019-add..>2008-06-12 19:37 3.1K 
[TXT]linux-2.6.26-020-use..>2008-06-12 19:37 8.6K 
[TXT]linux-2.6.26-021-fix..>2008-06-12 19:37 3.6K 
[TXT]linux-2.6.26-022-rem..>2008-06-12 19:37 1.4K 
[TXT]linux-2.6.26-023-nfs..>2008-06-12 19:37 738  
[TXT]linux-2.6.26-024-che..>2008-06-12 19:37 4.5K 
[TXT]linux-2.6.26-025-bri..>2008-06-12 19:37 4.1K 
[TXT]linux-2.6.26-026-eli..>2008-06-12 19:37 1.4K 
[TXT]linux-2.6.26-027-rem..>2008-06-12 19:37 1.4K 
[TXT]linux-2.6.26-028-min..>2008-06-12 19:37 1.9K 
[   ]linux-2.6.26-029-fix..>2008-06-12 19:37 6.2K 
[TXT]linux-2.6.26-030-set..>2008-06-12 19:37 3.5K 
[TXT]linux-2.6.26-031-rem..>2008-06-12 19:37 3.1K 
[TXT]linux-2.6.26-032-add..>2008-06-12 19:37 10K 
[TXT]linux-2.6.26-033-fix..>2008-06-12 19:37 2.2K 
[TXT]linux-2.6.26-034-fix..>2008-06-12 19:37 3.5K 
[TXT]linux-2.6.26-035-all..>2008-06-12 19:37 1.3K 
[TXT]linux-2.6.26-036-tre..>2008-06-12 19:37 1.5K 
[TXT]linux-2.6.26-037-mis..>2008-06-12 19:37 742  
[   ]series 2008-06-12 19:37 2.1K 

Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/5.4.16 mod_perl/2.0.11 Perl/v5.16.3 Server at linux-nfs.org Port 80