cregit-Linux how code gets into the kernel

Release 4.14 arch/um/drivers/line.c

Directory: arch/um/drivers
/*
 * Copyright (C) 2001 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
 * Licensed under the GPL
 */

#include <linux/irqreturn.h>
#include <linux/kd.h>
#include <linux/sched/signal.h>
#include <linux/slab.h>

#include "chan.h"
#include <irq_kern.h>
#include <irq_user.h>
#include <kern_util.h>
#include <os.h>


#define LINE_BUFSIZE 4096


static irqreturn_t line_interrupt(int irq, void *data) { struct chan *chan = data; struct line *line = chan->line; if (line) chan_interrupt(line, irq); return IRQ_HANDLED; }

Contributors

PersonTokensPropCommitsCommitProp
Jeff Dike3172.09%250.00%
Gerd Knorr716.28%125.00%
Paolo 'Blaisorblade' Giarrusso511.63%125.00%
Total43100.00%4100.00%

/* * Returns the free space inside the ring buffer of this line. * * Should be called while holding line->lock (this does not modify data). */
static int write_room(struct line *line) { int n; if (line->buffer == NULL) return LINE_BUFSIZE - 1; /* This is for the case where the buffer is wrapped! */ n = line->head - line->tail; if (n <= 0) n += LINE_BUFSIZE; /* The other case */ return n - 1; }

Contributors

PersonTokensPropCommitsCommitProp
Paolo 'Blaisorblade' Giarrusso5398.15%266.67%
Jeff Dike11.85%133.33%
Total54100.00%3100.00%


int line_write_room(struct tty_struct *tty) { struct line *line = tty->driver_data; unsigned long flags; int room; spin_lock_irqsave(&line->lock, flags); room = write_room(line); spin_unlock_irqrestore(&line->lock, flags); return room; }

Contributors

PersonTokensPropCommitsCommitProp
Paolo 'Blaisorblade' Giarrusso56100.00%1100.00%
Total56100.00%1100.00%


int line_chars_in_buffer(struct tty_struct *tty) { struct line *line = tty->driver_data; unsigned long flags; int ret; spin_lock_irqsave(&line->lock, flags); /* write_room subtracts 1 for the needed NULL, so we readd it.*/ ret = LINE_BUFSIZE - (write_room(line) + 1); spin_unlock_irqrestore(&line->lock, flags); return ret; }

Contributors

PersonTokensPropCommitsCommitProp
Paolo 'Blaisorblade' Giarrusso6298.41%266.67%
Jeff Dike11.59%133.33%
Total63100.00%3100.00%

/* * This copies the content of buf into the circular buffer associated with * this line. * The return value is the number of characters actually copied, i.e. the ones * for which there was space: this function is not supposed to ever flush out * the circular buffer. * * Must be called while holding line->lock! */
static int buffer_data(struct line *line, const char *buf, int len) { int end, room; if (line->buffer == NULL) { line->buffer = kmalloc(LINE_BUFSIZE, GFP_ATOMIC); if (line->buffer == NULL) { printk(KERN_ERR "buffer_data - atomic allocation " "failed\n"); return 0; } line->head = line->buffer; line->tail = line->buffer; } room = write_room(line); len = (len > room) ? room : len; end = line->buffer + LINE_BUFSIZE - line->tail; if (len < end) { memcpy(line->tail, buf, len); line->tail += len; } else { /* The circular buffer is wrapping */ memcpy(line->tail, buf, end); buf += end; memcpy(line->buffer, buf, len - end); line->tail = line->buffer + len - end; } return len; }

Contributors

PersonTokensPropCommitsCommitProp
Jeff Dike15584.24%466.67%
Paolo 'Blaisorblade' Giarrusso2915.76%233.33%
Total184100.00%6100.00%

/* * Flushes the ring buffer to the output channels. That is, write_chan is * called, passing it line->head as buffer, and an appropriate count. * * On exit, returns 1 when the buffer is empty, * 0 when the buffer is not empty on exit, * and -errno when an error occurred. * * Must be called while holding line->lock!*/
static int flush_buffer(struct line *line) { int n, count; if ((line->buffer == NULL) || (line->head == line->tail)) return 1; if (line->tail < line->head) { /* line->buffer + LINE_BUFSIZE is the end of the buffer! */ count = line->buffer + LINE_BUFSIZE - line->head; n = write_chan(line->chan_out, line->head, count, line->driver->write_irq); if (n < 0) return n; if (n == count) { /* * We have flushed from ->head to buffer end, now we * must flush only from the beginning to ->tail. */ line->head = line->buffer; } else { line->head += n; return 0; } } count = line->tail - line->head; n = write_chan(line->chan_out, line->head, count, line->driver->write_irq); if (n < 0) return n; line->head += n; return line->head == line->tail; }

Contributors

PersonTokensPropCommitsCommitProp
Jeff Dike17397.19%250.00%
Paolo 'Blaisorblade' Giarrusso31.69%125.00%
Al Viro21.12%125.00%
Total178100.00%4100.00%


void line_flush_buffer(struct tty_struct *tty) { struct line *line = tty->driver_data; unsigned long flags; spin_lock_irqsave(&line->lock, flags); flush_buffer(line); spin_unlock_irqrestore(&line->lock, flags); }

Contributors

PersonTokensPropCommitsCommitProp
Paolo 'Blaisorblade' Giarrusso48100.00%1100.00%
Total48100.00%1100.00%

/* * We map both ->flush_chars and ->put_char (which go in pair) onto * ->flush_buffer and ->write. Hope it's not that bad. */
void line_flush_chars(struct tty_struct *tty) { line_flush_buffer(tty); }

Contributors

PersonTokensPropCommitsCommitProp
Paolo 'Blaisorblade' Giarrusso15100.00%1100.00%
Total15100.00%1100.00%


int line_put_char(struct tty_struct *tty, unsigned char ch) { return line_write(tty, &ch, sizeof(ch)); }

Contributors

PersonTokensPropCommitsCommitProp
Paolo 'Blaisorblade' Giarrusso2589.29%150.00%
Américo Wang310.71%150.00%
Total28100.00%2100.00%


int line_write(struct tty_struct *tty, const unsigned char *buf, int len) { struct line *line = tty->driver_data; unsigned long flags; int n, ret = 0; spin_lock_irqsave(&line->lock, flags); if (line->head != line->tail) ret = buffer_data(line, buf, len); else { n = write_chan(line->chan_out, buf, len, line->driver->write_irq); if (n < 0) { ret = n; goto out_up; } len -= n; ret += n; if (len > 0) ret += buffer_data(line, buf + n, len); } out_up: spin_unlock_irqrestore(&line->lock, flags); return ret; }

Contributors

PersonTokensPropCommitsCommitProp
Jeff Dike11476.51%233.33%
Paolo 'Blaisorblade' Giarrusso2818.79%233.33%
Gerd Knorr64.03%116.67%
Al Viro10.67%116.67%
Total149100.00%6100.00%


void line_set_termios(struct tty_struct *tty, struct ktermios * old) { /* nothing */ }

Contributors

PersonTokensPropCommitsCommitProp
Gerd Knorr1593.75%150.00%
Alan Cox16.25%150.00%
Total16100.00%2100.00%


void line_throttle(struct tty_struct *tty) { struct line *line = tty->driver_data; deactivate_chan(line->chan_in, line->driver->read_irq); line->throttled = 1; }

Contributors

PersonTokensPropCommitsCommitProp
Jeff Dike3797.37%150.00%
Al Viro12.63%150.00%
Total38100.00%2100.00%


void line_unthrottle(struct tty_struct *tty) { struct line *line = tty->driver_data; line->throttled = 0; chan_interrupt(line, line->driver->read_irq); /* * Maybe there is enough stuff pending that calling the interrupt * throttles us again. In this case, line->throttled will be 1 * again and we shouldn't turn the interrupt back on. */ if (!line->throttled) reactivate_chan(line->chan_in, line->driver->read_irq); }

Contributors

PersonTokensPropCommitsCommitProp
Jeff Dike5698.25%266.67%
Al Viro11.75%133.33%
Total57100.00%3100.00%


static irqreturn_t line_write_interrupt(int irq, void *data) { struct chan *chan = data; struct line *line = chan->line; int err; /* * Interrupts are disabled here because genirq keep irqs disabled when * calling the action handler. */ spin_lock(&line->lock); err = flush_buffer(line); if (err == 0) { spin_unlock(&line->lock); return IRQ_NONE; } else if (err < 0) { line->head = line->buffer; line->tail = line->buffer; } spin_unlock(&line->lock); tty_port_tty_wakeup(&line->port); return IRQ_HANDLED; }

Contributors

PersonTokensPropCommitsCommitProp
Jeff Dike6356.76%220.00%
Paolo 'Blaisorblade' Giarrusso2421.62%330.00%
Al Viro87.21%110.00%
Jiri Slaby87.21%220.00%
Gerd Knorr76.31%110.00%
Yong Zhang10.90%110.00%
Total111100.00%10100.00%


int line_setup_irq(int fd, int input, int output, struct line *line, void *data) { const struct line_driver *driver = line->driver; int err = 0; if (input) err = um_request_irq(driver->read_irq, fd, IRQ_READ, line_interrupt, IRQF_SHARED, driver->read_irq_name, data); if (err) return err; if (output) err = um_request_irq(driver->write_irq, fd, IRQ_WRITE, line_write_interrupt, IRQF_SHARED, driver->write_irq_name, data); return err; }

Contributors

PersonTokensPropCommitsCommitProp
Jeff Dike9997.06%360.00%
Theodore Y. Ts'o21.96%120.00%
Gerd Knorr10.98%120.00%
Total102100.00%5100.00%


static int line_activate(struct tty_port *port, struct tty_struct *tty) { int ret; struct line *line = tty->driver_data; ret = enable_chan(line); if (ret) return ret; if (!line->sigio) { chan_enable_winch(line->chan_out, port); line->sigio = 1; } chan_window_size(line, &tty->winsize.ws_row, &tty->winsize.ws_col); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Jeff Dike7180.68%450.00%
Richard Weinberger1517.05%225.00%
Al Viro11.14%112.50%
Gerd Knorr11.14%112.50%
Total88100.00%8100.00%

static void unregister_winch(struct tty_struct *tty);
static void line_destruct(struct tty_port *port) { struct tty_struct *tty = tty_port_tty_get(port); struct line *line = tty->driver_data; if (line->sigio) { unregister_winch(tty); line->sigio = 0; } }

Contributors

PersonTokensPropCommitsCommitProp
Richard Weinberger49100.00%1100.00%
Total49100.00%1100.00%

static const struct tty_port_operations line_port_ops = { .activate = line_activate, .destruct = line_destruct, };
int line_open(struct tty_struct *tty, struct file *filp) { struct line *line = tty->driver_data; return tty_port_open(&line->port, tty, filp); }

Contributors

PersonTokensPropCommitsCommitProp
Jeff Dike1745.95%350.00%
Richard Weinberger1129.73%116.67%
Gerd Knorr718.92%116.67%
Paolo 'Blaisorblade' Giarrusso25.41%116.67%
Total37100.00%6100.00%


int line_install(struct tty_driver *driver, struct tty_struct *tty, struct line *line) { int ret; ret = tty_standard_install(driver, tty); if (ret) return ret; tty->driver_data = line; return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Richard Weinberger3675.00%116.67%
Jeff Dike918.75%350.00%
Al Viro24.17%116.67%
Gerd Knorr12.08%116.67%
Total48100.00%6100.00%


void line_close(struct tty_struct *tty, struct file * filp) { struct line *line = tty->driver_data; tty_port_close(&line->port, tty, filp); }

Contributors

PersonTokensPropCommitsCommitProp
Richard Weinberger2569.44%116.67%
Jiri Slaby513.89%116.67%
Jeff Dike513.89%350.00%
Al Viro12.78%116.67%
Total36100.00%6100.00%


void line_hangup(struct tty_struct *tty) { struct line *line = tty->driver_data; tty_port_hangup(&line->port); }

Contributors

PersonTokensPropCommitsCommitProp
Richard Weinberger1659.26%116.67%
Jeff Dike1037.04%466.67%
Gerd Knorr13.70%116.67%
Total27100.00%6100.00%


void close_lines(struct line *lines, int nlines) { int i; for(i = 0; i < nlines; i++) close_chan(&lines[i]); }

Contributors

PersonTokensPropCommitsCommitProp
Jeff Dike38100.00%1100.00%
Total38100.00%1100.00%


int setup_one_line(struct line *lines, int n, char *init, const struct chan_opts *opts, char **error_out) { struct line *line = &lines[n]; struct tty_driver *driver = line->driver->driver; int err = -EINVAL; if (line->port.count) { *error_out = "Device is already open"; goto out; } if (!strcmp(init, "none")) { if (line->valid) { line->valid = 0; kfree(line->init_str); tty_unregister_device(driver, n); parse_chan_pair(NULL, line, n, opts, error_out); err = 0; } } else { char *new = kstrdup(init, GFP_KERNEL); if (!new) { *error_out = "Failed to allocate memory"; return -ENOMEM; } if (line->valid) { tty_unregister_device(driver, n); kfree(line->init_str); } line->init_str = new; line->valid = 1; err = parse_chan_pair(new, line, n, opts, error_out); if (!err) { struct device *d = tty_port_register_device(&line->port, driver, n, NULL); if (IS_ERR(d)) { *error_out = "Failed to register device"; err = PTR_ERR(d); parse_chan_pair(NULL, line, n, opts, error_out); } } if (err) { line->init_str = NULL; line->valid = 0; kfree(new); } } out: return err; }

Contributors

PersonTokensPropCommitsCommitProp
Al Viro19866.44%450.00%
Jeff Dike9230.87%225.00%
Jiri Slaby82.68%225.00%
Total298100.00%8100.00%

/* * Common setup code for both startup command line and mconsole initialization. * @lines contains the array (of size @num) to modify; * @init is the setup string; * @error_out is an error string in the case of failure; */
int line_setup(char **conf, unsigned int num, char **def, char *init, char *name) { char *error; if (*init == '=') { /* * We said con=/ssl= instead of con#=, so we are configuring all * consoles at once. */ *def = init + 1; } else { char *end; unsigned n = simple_strtoul(init, &end, 0); if (*end != '=') { error = "Couldn't parse device number"; goto out; } if (n >= num) { error = "Device number out of range"; goto out; } conf[n] = end + 1; } return 0; out: printk(KERN_ERR "Failed to set up %s with " "configuration string \"%s\" : %s\n", name, init, error); return -EINVAL; }

Contributors

PersonTokensPropCommitsCommitProp
Jeff Dike8061.54%675.00%
Al Viro4635.38%112.50%
Paolo 'Blaisorblade' Giarrusso43.08%112.50%
Total130100.00%8100.00%


int line_config(struct line *lines, unsigned int num, char *str, const struct chan_opts *opts, char **error_out) { char *end; int n; if (*str == '=') { *error_out = "Can't configure all devices from mconsole"; return -EINVAL; } n = simple_strtoul(str, &end, 0); if (*end++ != '=') { *error_out = "Couldn't parse device number"; return -EINVAL; } if (n >= num) { *error_out = "Device number out of range"; return -EINVAL; } return setup_one_line(lines, n, end, opts, error_out); }

Contributors

PersonTokensPropCommitsCommitProp
Jeff Dike6051.72%666.67%
Al Viro5547.41%222.22%
Paolo 'Blaisorblade' Giarrusso10.86%111.11%
Total116100.00%9100.00%


int line_get_config(char *name, struct line *lines, unsigned int num, char *str, int size, char **error_out) { struct line *line; char *end; int dev, n = 0; dev = simple_strtoul(name, &end, 0); if ((*end != '\0') || (end == name)) { *error_out = "line_get_config failed to parse device number"; return 0; } if ((dev < 0) || (dev >= num)) { *error_out = "device number out of range"; return 0; } line = &lines[dev]; if (!line->valid) CONFIG_CHUNK(str, size, n, "none", 1); else { struct tty_struct *tty = tty_port_tty_get(&line->port); if (tty == NULL) { CONFIG_CHUNK(str, size, n, line->init_str, 1); } else { n = chan_config_string(line, str, size, error_out); tty_kref_put(tty); } } return n; }

Contributors

PersonTokensPropCommitsCommitProp
Jeff Dike17387.37%240.00%
Jiri Slaby2211.11%120.00%
Paolo 'Blaisorblade' Giarrusso31.52%240.00%
Total198100.00%5100.00%


int line_id(char **str, int *start_out, int *end_out) { char *end; int n; n = simple_strtoul(*str, &end, 0); if ((*end != '\0') || (end == *str)) return -1; *str = end; *start_out = n; *end_out = n; return n; }

Contributors

PersonTokensPropCommitsCommitProp
Jeff Dike76100.00%1100.00%
Total76100.00%1100.00%


int line_remove(struct line *lines, unsigned int num, int n, char **error_out) { if (n >= num) { *error_out = "Device number out of range"; return -EINVAL; } return setup_one_line(lines, n, "none", NULL, error_out); }

Contributors

PersonTokensPropCommitsCommitProp
Jeff Dike2852.83%450.00%
Al Viro2241.51%225.00%
Paolo 'Blaisorblade' Giarrusso35.66%225.00%
Total53100.00%8100.00%


int register_lines(struct line_driver *line_driver, const struct tty_operations *ops, struct line *lines, int nlines) { struct tty_driver *driver = alloc_tty_driver(nlines); int err; int i; if (!driver) return -ENOMEM; driver->driver_name = line_driver->name; driver->name = line_driver->device_name; driver->major = line_driver->major; driver->minor_start = line_driver->minor_start; driver->type = line_driver->type; driver->subtype = line_driver->subtype; driver->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV; driver->init_termios = tty_std_termios; for (i = 0; i < nlines; i++) { tty_port_init(&lines[i].port); lines[i].port.ops = &line_port_ops; spin_lock_init(&lines[i].lock); lines[i].driver = line_driver; INIT_LIST_HEAD(&lines[i].chan_list); } tty_set_operations(driver, ops); err = tty_register_driver(driver); if (err) { printk(KERN_ERR "register_lines : can't register %s driver\n", line_driver->name); put_tty_driver(driver); for (i = 0; i < nlines; i++) tty_port_destroy(&lines[i].port); return err; } line_driver->driver = driver; mconsole_register_dev(&line_driver->mc); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Al Viro10540.54%323.08%
Jeff Dike9837.84%538.46%
Jiri Slaby2610.04%215.38%
Gerd Knorr145.41%17.69%
Richard Weinberger124.63%17.69%
Paolo 'Blaisorblade' Giarrusso41.54%17.69%
Total259100.00%13100.00%

static DEFINE_SPINLOCK(winch_handler_lock); static LIST_HEAD(winch_handlers); struct winch { struct list_head list; int fd; int tty_fd; int pid; struct tty_port *port; unsigned long stack; struct work_struct work; };
static void __free_winch(struct work_struct *work) { struct winch *winch = container_of(work, struct winch, work); um_free_irq(WINCH_IRQ, winch); if (winch->pid != -1) os_kill_process(winch->pid, 1); if (winch->stack != 0) free_stack(winch->stack, 0); kfree(winch); }

Contributors

PersonTokensPropCommitsCommitProp
Jeff Dike5271.23%120.00%
Al Viro1621.92%240.00%
Will Newton45.48%120.00%
Richard Weinberger11.37%120.00%
Total73100.00%5100.00%


static void free_winch(struct winch *winch) { int fd = winch->fd; winch->fd = -1; if (fd != -1) os_close_file(fd); list_del(&winch->list); __free_winch(&winch->work); }

Contributors

PersonTokensPropCommitsCommitProp
Al Viro53100.00%1100.00%
Total53100.00%1100.00%


static irqreturn_t winch_interrupt(int irq, void *data) { struct winch *winch = data; struct tty_struct *tty; struct line *line; int fd = winch->fd; int err; char c; struct pid *pgrp; if (fd != -1) { err = generic_read(fd, &c, NULL); if (err < 0) { if (err != -EAGAIN) { winch->fd = -1; list_del(&winch->list); os_close_file(fd); printk(KERN_ERR "winch_interrupt : " "read failed, errno = %d\n", -err); printk(KERN_ERR "fd %d is losing SIGWINCH " "support\n", winch->tty_fd); INIT_WORK(&winch->work, __free_winch); schedule_work(&winch->work); return IRQ_HANDLED; } goto out; } } tty = tty_port_tty_get(winch->port); if (tty != NULL) { line = tty->driver_data; if (line != NULL) { chan_window_size(line, &tty->winsize.ws_row, &tty->winsize.ws_col); pgrp = tty_get_pgrp(tty); if (pgrp) kill_pgrp(pgrp, SIGWINCH, 1); put_pid(pgrp); } tty_kref_put(tty); } out: if (winch->fd != -1) reactivate_fd(winch->fd, WINCH_IRQ); return IRQ_HANDLED; }

Contributors

PersonTokensPropCommitsCommitProp
Jeff Dike14657.48%436.36%
Al Viro4015.75%19.09%
Paolo 'Blaisorblade' Giarrusso2610.24%218.18%
Peter Hurley218.27%19.09%
Richard Weinberger93.54%19.09%
Frank Sorenson62.36%19.09%
Gerd Knorr62.36%19.09%
Total254100.00%11100.00%


void register_winch_irq(int fd, int tty_fd, int pid, struct tty_port *port, unsigned long stack) { struct winch *winch; winch = kmalloc(sizeof(*winch), GFP_KERNEL); if (winch == NULL) { printk(KERN_ERR "register_winch_irq - kmalloc failed\n"); goto cleanup; } *winch = ((struct winch) { .list = LIST_HEAD_INIT(winch->list), .fd = fd, .tty_fd = tty_fd, .pid = pid, .port = port, .stack = stack }); if (um_request_irq(WINCH_IRQ, fd, IRQ_READ, winch_interrupt, IRQF_SHARED, "winch", winch) < 0) { printk(KERN_ERR "register_winch_irq - failed to register " "IRQ\n"); goto out_free; } spin_lock(&winch_handler_lock); list_add(&winch->list, &winch_handlers); spin_unlock(&winch_handler_lock); return; out_free: kfree(winch); cleanup: os_kill_process(pid, 1); os_close_file(fd); if (stack != 0) free_stack(stack, 0); }

Contributors

PersonTokensPropCommitsCommitProp
Jeff Dike18996.92%562.50%
Richard Weinberger42.05%112.50%
Gerd Knorr10.51%112.50%
Thomas Gleixner10.51%112.50%
Total195100.00%8100.00%


static void unregister_winch(struct tty_struct *tty) { struct list_head *ele, *next; struct winch *winch; struct tty_struct *wtty; spin_lock(&winch_handler_lock); list_for_each_safe(ele, next, &winch_handlers) { winch = list_entry(ele, struct winch, list); wtty = tty_port_tty_get(winch->port); if (wtty == tty) { free_winch(winch); break; } tty_kref_put(wtty); } spin_unlock(&winch_handler_lock); }

Contributors

PersonTokensPropCommitsCommitProp
Jeff Dike6167.03%240.00%
Richard Weinberger2021.98%120.00%
Will Newton66.59%120.00%
Paolo 'Blaisorblade' Giarrusso44.40%120.00%
Total91100.00%5100.00%


static void winch_cleanup(void) { struct list_head *ele, *next; struct winch *winch; spin_lock(&winch_handler_lock); list_for_each_safe(ele, next, &winch_handlers) { winch = list_entry(ele, struct winch, list); free_winch(winch); } spin_unlock(&winch_handler_lock); }

Contributors

PersonTokensPropCommitsCommitProp
Jeff Dike5795.00%266.67%
Paolo 'Blaisorblade' Giarrusso35.00%133.33%
Total60100.00%3100.00%

__uml_exitcall(winch_cleanup);
char *add_xterm_umid(char *base) { char *umid, *title; int len; umid = get_umid(); if (*umid == '\0') return base; len = strlen(base) + strlen(" ()") + strlen(umid) + 1; title = kmalloc(len, GFP_KERNEL); if (title == NULL) { printk(KERN_ERR "Failed to allocate buffer for xterm title\n"); return base; } snprintf(title, len, "%s (%s)", base, umid); return title; }

Contributors

PersonTokensPropCommitsCommitProp
Jeff Dike9396.88%375.00%
Benjamin Collins33.12%125.00%
Total96100.00%4100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Jeff Dike214160.65%2738.03%
Al Viro56415.98%1521.13%
Paolo 'Blaisorblade' Giarrusso40711.53%57.04%
Richard Weinberger2266.40%45.63%
Gerd Knorr691.95%11.41%
Jiri Slaby691.95%57.04%
Peter Hurley210.59%11.41%
Will Newton100.28%22.82%
Frank Sorenson60.17%11.41%
Américo Wang30.08%11.41%
Benjamin Collins30.08%11.41%
Theodore Y. Ts'o20.06%11.41%
Alexey Dobriyan20.06%11.41%
Jan Kiszka20.06%11.41%
Ingo Molnar10.03%11.41%
Yong Zhang10.03%11.41%
Simon Arlott10.03%11.41%
Alan Cox10.03%11.41%
Thomas Gleixner10.03%11.41%
Total3530100.00%71100.00%
Directory: arch/um/drivers
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.