Gitweb: http://git.kernel.org/linus/8f9c466f291a94b138560f28242c44e320a79ca4 Commit: 8f9c466f291a94b138560f28242c44e320a79ca4 Parent: f02a8cbc50aaef89f56faf0cf1e27fa5a80faec6 Author: Forest Bond <forest@alittletooquiet.net> AuthorDate: Sat Jun 13 07:38:47 2009 -0400 Committer: Greg Kroah-Hartman <gregkh@suse.de> CommitDate: Tue Sep 15 12:01:32 2009 -0700 Staging: vt6656: main_usb.c: Drop obsolete fsuid/fsgid accesses. drivers/staging/vt6656/main_usb.c: Drop obsolete fsuid/fsgid accesses. Signed-off-by: Forest Bond <forest@alittletooquiet.net> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de> --- drivers/staging/vt6656/main_usb.c | 13 +++++++++---- 1 files changed, 9 insertions(+), 4 deletions(-) diff --git a/drivers/staging/vt6656/main_usb.c b/drivers/staging/vt6656/main_usb.c index 3368e83..f181d23 100644 --- a/drivers/staging/vt6656/main_usb.c +++ b/drivers/staging/vt6656/main_usb.c @@ -1655,15 +1655,17 @@ static UCHAR *Config_FileOperation(PSDevice pDevice) { UCHAR *buffer=NULL; struct file *filp=NULL; mm_segment_t old_fs = get_fs(); - int oldfsuid=0,oldfsgid=0; + //int oldfsuid=0,oldfsgid=0; int result=0; set_fs (KERNEL_DS); -//Make sure a caller can read or write power as root - oldfsuid=current->fsuid; - oldfsgid=current->fsgid; + /* Can't do this anymore, so we rely on correct filesystem permissions: + //Make sure a caller can read or write power as root + oldfsuid=current->fsuid; + oldfsgid=current->fsgid; current->fsuid = 0; current->fsgid = 0; + */ //open file filp = filp_open(config_path, O_RDWR, 0); @@ -1697,8 +1699,11 @@ error1: error2: set_fs (old_fs); + + /* current->fsuid=oldfsuid; current->fsgid=oldfsgid; + */ if(result!=0) { if(buffer) -- To unsubscribe from this list: send the line "unsubscribe git-commits-head" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
