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 'char-misc-3.14-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc

Pull char/misc fix from Greg KH:
"Here is a single commit, to fix a reported problem in the mei driver"

* tag 'char-misc-3.14-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc:
mei: set client's read_cb to NULL when flow control fails

+3 -1
+3 -1
drivers/misc/mei/client.c
··· 666 666 goto err; 667 667 668 668 cb->fop_type = MEI_FOP_READ; 669 - cl->read_cb = cb; 670 669 if (dev->hbuf_is_ready) { 671 670 dev->hbuf_is_ready = false; 672 671 if (mei_hbm_cl_flow_control_req(dev, cl)) { ··· 677 678 } else { 678 679 list_add_tail(&cb->list, &dev->ctrl_wr_list.list); 679 680 } 681 + 682 + cl->read_cb = cb; 683 + 680 684 return rets; 681 685 err: 682 686 mei_io_cb_free(cb);