[BK PATCH 4/4] remove NGROUPS hard limit (resend)

Timothy Hockin (th122948@scl2.sfbay.sun.com)
Tue, 5 Nov 2002 12:02:08 -0800 (PST)


# This is a BitKeeper generated patch for the following project:
# Project Name: Linux kernel tree
# This patch format is intended for GNU patch command version 2.5 or higher.
# This patch includes the following deltas:
# ChangeSet 1.932 -> 1.933
# include/linux/nfsiod.h 1.1 -> (deleted)
#
# The following is the BitKeeper ChangeSet Log
# --------------------------------------------
# 02/11/05 thockin@freakshow.cobalt.com 1.933
# no one references nfsiod.h anymore - nix it.
# --------------------------------------------
#
diff -Nru a/include/linux/nfsiod.h b/include/linux/nfsiod.h
--- a/include/linux/nfsiod.h Tue Nov 5 11:15:30 2002
+++ /dev/null Wed Dec 31 16:00:00 1969
@@ -1,52 +0,0 @@
-/*
- * linux/include/linux/nfsiod.h
- *
- * Declarations for asynchronous NFS RPC calls.
- *
- */
-
-#ifndef _LINUX_NFSIOD_H
-#define _LINUX_NFSIOD_H
-
-#include <linux/rpcsock.h>
-#include <linux/nfs_fs.h>
-
-#ifdef __KERNEL__
-
-/*
- * This is the callback handler for nfsiod requests.
- * Note that the callback procedure must NOT sleep.
- */
-struct nfsiod_req;
-typedef int (*nfsiod_callback_t)(int result, struct nfsiod_req *);
-
-/*
- * This is the nfsiod request struct.
- */
-struct nfsiod_req {
- struct nfsiod_req * rq_next;
- struct nfsiod_req * rq_prev;
- wait_queue_head_t rq_wait;
- struct rpc_ioreq rq_rpcreq;
- nfsiod_callback_t rq_callback;
- struct nfs_server * rq_server;
- struct inode * rq_inode;
- struct page * rq_page;
-
- /* user creds */
- uid_t rq_fsuid;
- gid_t rq_fsgid;
- int rq_groups[NGROUPS];
-
- /* retry handling */
- int rq_retries;
-};
-
-struct nfsiod_req * nfsiod_reserve(struct nfs_server *);
-void nfsiod_release(struct nfsiod_req *);
-void nfsiod_enqueue(struct nfsiod_req *);
-int nfsiod(void);
-
-
-#endif /* __KERNEL__ */
-#endif /* _LINUX_NFSIOD_H */
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/