diff options
| author | Urban Widmark <urban.widmark@enlight.net> | 2003-09-16 23:21:55 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@laptop.osdl.org> | 2003-09-16 23:21:55 -0700 |
| commit | c506da41c5d7d2e8a724f3c33fb531f90e97b555 (patch) | |
| tree | 733d9bda59469b64a8daf1d0023219db0d3b7655 /include/linux/smb_mount.h | |
| parent | 851cbb5f8dfe338e647feddcee688a7e2a5ecbc6 (diff) | |
[PATCH] smbfs module unload and highuid
I haven't been doing much smbfs work recently, but here are some bugfixes:
- Fix module unload (Angus Sawyer).
- Fix the smbfs error handling if kernel_thread() should fail.
- Allow high uids/gids to be used as the fake uid smbfs sets as file owner.
Diffstat (limited to 'include/linux/smb_mount.h')
| -rw-r--r-- | include/linux/smb_mount.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/linux/smb_mount.h b/include/linux/smb_mount.h index f4435d7459f0..256900c55881 100644 --- a/include/linux/smb_mount.h +++ b/include/linux/smb_mount.h @@ -43,11 +43,11 @@ struct smb_mount_data { struct smb_mount_data_kernel { int version; - __kernel_uid_t mounted_uid; /* Who may umount() this filesystem? */ - __kernel_uid_t uid; - __kernel_gid_t gid; - __kernel_mode_t file_mode; - __kernel_mode_t dir_mode; + uid_t mounted_uid; /* Who may umount() this filesystem? */ + uid_t uid; + gid_t gid; + mode_t file_mode; + mode_t dir_mode; u32 flags; |
