2002-10-11 01:31:24

by Timothy Hockin

[permalink] [raw]
Subject: [BK PATCH 4/4] fix NGROUPS hard limit

# 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.741 -> 1.742
# include/linux/nfsiod.h 1.1 -> 1.2
#
# The following is the BitKeeper ChangeSet Log
# --------------------------------------------
# 02/10/10 [email protected] 1.742
# convert nfsiod to use OLD_NGROUPS - does anyone _use_ this file anymore?
# --------------------------------------------
#
diff -Nru a/include/linux/nfsiod.h b/include/linux/nfsiod.h
--- a/include/linux/nfsiod.h Thu Oct 10 18:19:48 2002
+++ b/include/linux/nfsiod.h Thu Oct 10 18:19:48 2002
@@ -10,6 +10,7 @@

#include <linux/rpcsock.h>
#include <linux/nfs_fs.h>
+#include <linux/limits.h>

#ifdef __KERNEL__

@@ -36,7 +37,7 @@
/* user creds */
uid_t rq_fsuid;
gid_t rq_fsgid;
- int rq_groups[NGROUPS];
+ int rq_groups[OLD_NGROUPS];

/* retry handling */
int rq_retries;