X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=fs%2Ffile_table.c;h=bc4563fe791d1281e91240e21be740ff218054dd;hb=86a264abe542cfececb4df129bc45a0338d8cdb9;hp=5ad0eca6eea27b1ee33fcd8415c05edfeac97d82;hpb=cdce1f0931831cebfbeb811a266a2f4adf5c8a35;p=deliverable%2Flinux.git diff --git a/fs/file_table.c b/fs/file_table.c index 5ad0eca6eea2..bc4563fe791d 100644 --- a/fs/file_table.c +++ b/fs/file_table.c @@ -94,7 +94,7 @@ int proc_nr_files(ctl_table *table, int write, struct file *filp, */ struct file *get_empty_filp(void) { - struct task_struct *tsk; + const struct cred *cred = current_cred(); static int old_max; struct file * f; @@ -118,12 +118,11 @@ struct file *get_empty_filp(void) if (security_file_alloc(f)) goto fail_sec; - tsk = current; INIT_LIST_HEAD(&f->f_u.fu_list); atomic_long_set(&f->f_count, 1); rwlock_init(&f->f_owner.lock); - f->f_uid = tsk->fsuid; - f->f_gid = tsk->fsgid; + f->f_uid = cred->fsuid; + f->f_gid = cred->fsgid; eventpoll_init_file(f); /* f->f_version: 0 */ return f;