Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'staging-4.5-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging

Pull staging/android fix from Greg KH:
"Here is one patch, for the android binder driver, to resolve a
reported problem. Turns out it has been around for a while (since
3.15), so it is good to finally get it resolved.

It has been in linux-next for a while with no reported issues"

* tag 'staging-4.5-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging:
drivers: android: correct the size of struct binder_uintptr_t for BC_DEAD_BINDER_DONE

+1 -1
+1 -1
drivers/android/binder.c
··· 2074 2074 if (get_user(cookie, (binder_uintptr_t __user *)ptr)) 2075 2075 return -EFAULT; 2076 2076 2077 - ptr += sizeof(void *); 2077 + ptr += sizeof(cookie); 2078 2078 list_for_each_entry(w, &proc->delivered_death, entry) { 2079 2079 struct binder_ref_death *tmp_death = container_of(w, struct binder_ref_death, work); 2080 2080