Age | Commit message (Expand) | Author | Files | Lines |
2010-05-19 | drivers/char: Eliminate use after free | Julia Lawall | 1 | -4/+4 |
2010-05-19 | virtio: console: Accept console size along with resize control message | Amit Shah | 1 | -1/+12 |
2010-05-19 | virtio: console: Store each console's size in the console structure | Amit Shah | 1 | -12/+31 |
2010-05-19 | virtio: console: Resize console port 0 on config intr only if multiport is off | Amit Shah | 1 | -7/+10 |
2010-05-19 | virtio: console: Add support for nonblocking write()s | Amit Shah | 1 | -8/+111 |
2010-05-19 | virtio: console: Rename wait_is_over() to will_read_block() | Amit Shah | 1 | -3/+3 |
2010-05-19 | virtio: console: Don't always create a port 0 if using multiport | Amit Shah | 1 | -17/+15 |
2010-05-19 | virtio: console: Use a control message to add ports | Amit Shah | 1 | -44/+33 |
2010-05-19 | virtio: console: Move code around for future patches | Amit Shah | 1 | -133/+133 |
2010-05-19 | virtio: console: Remove config work handler | Amit Shah | 1 | -63/+1 |
2010-05-19 | virtio: console: Don't call hvc_remove() on unplugging console ports | Amit Shah | 1 | -0/+11 |
2010-05-19 | virtio: console: Return -EPIPE to hvc_console if we lost the connection | Amit Shah | 1 | -2/+6 |
2010-05-19 | virtio: console: Let host know of port or device add failures | Amit Shah | 1 | -0/+5 |
2010-05-19 | virtio: console: Add a __send_control_msg() that can send messages without a ... | Amit Shah | 1 | -5/+11 |
2010-05-19 | virtio: Revert "virtio: disable multiport console support." | Amit Shah | 1 | -41/+8 |
2010-05-19 | virtio_console: use virtqueue_xxx wrappers | Michael S. Tsirkin | 1 | -16/+16 |
2010-04-08 | virtio: disable multiport console support. | Michael S. Tsirkin | 1 | -8/+41 |
2010-04-08 | virtio: console makes incorrect assumption about virtio API | Rusty Russell | 1 | -7/+3 |
2010-04-08 | virtio: console: Fix early_put_chars usage | François Diakhaté | 1 | -3/+3 |
2010-03-30 | include cleanup: Update gfp.h and slab.h includes to prepare for breaking imp... | Tejun Heo | 1 | -0/+1 |
2010-03-22 | virtio: console: Check if port is valid in resize_console | Amit Shah | 1 | -0/+4 |
2010-03-22 | virtio: console: Generate a kobject CHANGE event on adding 'name' attribute | Amit Shah | 1 | -2/+9 |
2010-03-04 | virtio: console: Use better variable names for fill_queue operation | Amit Shah | 1 | -12/+15 |
2010-03-04 | virtio: console: Fix type of 'len' as unsigned int | Amit Shah | 1 | -1/+1 |
2010-02-24 | virtio: console: Fill ports' entire in_vq with buffers | Amit Shah | 1 | -21/+32 |
2010-02-24 | virtio: console: Error out if we can't allocate buffers for control queue | Amit Shah | 1 | -6/+21 |
2010-02-24 | virtio: console: Add ability to remove module | Amit Shah | 1 | -0/+41 |
2010-02-24 | virtio: console: Ensure no memleaks in case of unused buffers | Amit Shah | 1 | -3/+8 |
2010-02-24 | virtio: console: show error message if hvc_alloc fails for console ports | Amit Shah | 1 | -0/+2 |
2010-02-24 | virtio: console: Add debugfs files for each port to expose debug info | Amit Shah | 1 | -0/+71 |
2010-02-24 | virtio: console: Add ability to hot-unplug ports | Amit Shah | 1 | -2/+63 |
2010-02-24 | virtio: console: Handle port hot-plug | Amit Shah | 1 | -6/+72 |
2010-02-24 | virtio: console: Remove cached data on port close | Amit Shah | 1 | -0/+40 |
2010-02-24 | virtio: console: Register with sysfs and create a 'name' attribute for ports | Amit Shah | 1 | -0/+57 |
2010-02-24 | virtio: console: Ensure only one process can have a port open at a time | Amit Shah | 1 | -1/+17 |
2010-02-24 | virtio: console: Add file operations to ports for open/read/write/poll | Amit Shah | 1 | -1/+163 |
2010-02-24 | virtio: console: Associate each port with a char device | Amit Shah | 1 | -7/+74 |
2010-02-24 | virtio: console: Prepare for writing to userspace buffers | Amit Shah | 1 | -6/+14 |
2010-02-24 | virtio: console: Add a new MULTIPORT feature, support for generic ports | Amit Shah | 1 | -56/+336 |
2010-02-24 | virtio: console: Introduce a send_buf function for a common path for sending ... | Amit Shah | 1 | -17/+33 |
2010-02-24 | virtio: console: Introduce function to hand off data from host to readers | Amit Shah | 1 | -36/+106 |
2010-02-24 | virtio: console: Separate out find_vqs operation into a different function | Amit Shah | 1 | -12/+86 |
2010-02-24 | virtio: console: Separate out console init into a new function | Amit Shah | 1 | -22/+39 |
2010-02-24 | virtio: console: Separate out console-specific data into a separate struct | Amit Shah | 1 | -20/+37 |
2010-02-24 | virtio: console: ensure console size is updated on hvc open | Amit Shah | 1 | -16/+17 |
2010-02-24 | virtio: console: struct ports for multiple ports per device. | Amit Shah | 1 | -63/+89 |
2010-02-24 | virtio: console: remove global var | Rusty Russell | 1 | -21/+46 |
2010-02-24 | virtio: console: don't assume a single console port. | Amit Shah | 1 | -9/+65 |
2010-02-24 | virtio: console: use vdev->priv to avoid accessing global var. | Rusty Russell | 1 | -2/+8 |
2010-02-24 | virtio: console: introduce a get_inbuf helper to fetch bufs from in_vq | Amit Shah | 1 | -4/+17 |