Loading drivers/staging/android/ion/heaps/ion_system_heap.c +2 −2 Original line number Diff line number Diff line Loading @@ -670,7 +670,7 @@ static struct task_struct *ion_create_kworker(struct ion_page_pool **pools, attr.sched_nice = ION_KTHREAD_NICE_VAL; buf = cached ? "cached" : "uncached"; thread = kthread_create(ion_sys_heap_worker, pools, thread = kthread_run(ion_sys_heap_worker, pools, "ion-pool-%s-worker", buf); if (IS_ERR(thread)) { pr_err("%s: failed to create %s worker thread: %ld\n", Loading Loading
drivers/staging/android/ion/heaps/ion_system_heap.c +2 −2 Original line number Diff line number Diff line Loading @@ -670,7 +670,7 @@ static struct task_struct *ion_create_kworker(struct ion_page_pool **pools, attr.sched_nice = ION_KTHREAD_NICE_VAL; buf = cached ? "cached" : "uncached"; thread = kthread_create(ion_sys_heap_worker, pools, thread = kthread_run(ion_sys_heap_worker, pools, "ion-pool-%s-worker", buf); if (IS_ERR(thread)) { pr_err("%s: failed to create %s worker thread: %ld\n", Loading