Skip to content

Commit

Permalink
Staging: vt6656: main_usb.c: Drop obsolete fsuid/fsgid accesses.
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Forest Bond authored and Greg Kroah-Hartman committed Sep 15, 2009
1 parent f02a8cb commit 8f9c466
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions drivers/staging/vt6656/main_usb.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -1697,8 +1699,11 @@ static UCHAR *Config_FileOperation(PSDevice pDevice) {

error2:
set_fs (old_fs);

/*
current->fsuid=oldfsuid;
current->fsgid=oldfsgid;
*/

if(result!=0) {
if(buffer)
Expand Down

0 comments on commit 8f9c466

Please sign in to comment.