Created
October 23, 2015 15:23
-
-
Save tophyr/b70c0ba4e2279b5084dc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
static int binder_open(struct inode *nodp, struct file *filp) | |
{ | |
struct binder_proc *proc; | |
binder_debug(BINDER_DEBUG_OPEN_CLOSE, "binder_open: %d:%d\n", | |
current->group_leader->pid, current->pid); | |
proc = kzalloc(sizeof(*proc), GFP_KERNEL); | |
if (proc == NULL) | |
return -ENOMEM; | |
get_task_struct(current); | |
proc->tsk = current; | |
INIT_LIST_HEAD(&proc->todo); | |
init_waitqueue_head(&proc->wait); | |
proc->default_priority = task_nice(current); | |
binder_lock(__func__); | |
binder_stats_created(BINDER_STAT_PROC); | |
hlist_add_head(&proc->proc_node, &binder_procs); | |
proc->pid = current->group_leader->pid; | |
INIT_LIST_HEAD(&proc->delivered_death); | |
filp->private_data = proc; | |
binder_unlock(__func__); | |
if (binder_debugfs_dir_entry_proc) { | |
char strbuf[11]; | |
snprintf(strbuf, sizeof(strbuf), "%u", proc->pid); | |
proc->debugfs_entry = debugfs_create_file(strbuf, S_IRUGO, | |
binder_debugfs_dir_entry_proc, proc, &binder_proc_fops); | |
} | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment