Loading kernel/exec_domain.c +0 −22 Original line number Diff line number Diff line Loading @@ -145,28 +145,6 @@ __set_personality(u_long personality) return 0; } if (atomic_read(¤t->fs->count) != 1) { struct fs_struct *fsp, *ofsp; fsp = copy_fs_struct(current->fs); if (fsp == NULL) { module_put(ep->module); return -ENOMEM; } task_lock(current); ofsp = current->fs; current->fs = fsp; task_unlock(current); put_fs_struct(ofsp); } /* * At that point we are guaranteed to be the sole owner of * current->fs. */ current->personality = personality; oep = current_thread_info()->exec_domain; current_thread_info()->exec_domain = ep; Loading Loading
kernel/exec_domain.c +0 −22 Original line number Diff line number Diff line Loading @@ -145,28 +145,6 @@ __set_personality(u_long personality) return 0; } if (atomic_read(¤t->fs->count) != 1) { struct fs_struct *fsp, *ofsp; fsp = copy_fs_struct(current->fs); if (fsp == NULL) { module_put(ep->module); return -ENOMEM; } task_lock(current); ofsp = current->fs; current->fs = fsp; task_unlock(current); put_fs_struct(ofsp); } /* * At that point we are guaranteed to be the sole owner of * current->fs. */ current->personality = personality; oep = current_thread_info()->exec_domain; current_thread_info()->exec_domain = ep; Loading