diff options
| author | Linus Torvalds <torvalds@penguin.transmeta.com> | 2002-05-31 01:58:40 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@penguin.transmeta.com> | 2002-05-31 01:58:40 -0700 |
| commit | 8334b2cd48e69a830c539ea89996b99d588bf691 (patch) | |
| tree | 520dfc504cd4a2ae1719f92dd4b2949de7731103 /include/linux | |
| parent | 3f102da8fc4e532e253606d331e71feaa7356266 (diff) | |
Fix missing piece of uidhash list conversion
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/sched.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h index b62a724d437c..a9b97a1375c6 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h @@ -235,7 +235,7 @@ struct user_struct { atomic_t files; /* How many open files does this user have? */ /* Hash table maintenance information */ - struct user_struct *next, **pprev; + struct list_head uidhash_list; uid_t uid; }; |
