taglinefilesource code
lp_table34drivers/char/lp.cstruct lp_struct lp_table[] = {
lp_table152drivers/char/lp.cstruct lp_struct *lp = &lp_table[0];
lp_table155drivers/char/lp.cif (++lp >= &lp_table[LP_NO])
lp_table167drivers/char/lp.cstruct lp_struct *lp = &lp_table[minor];
lp_table179drivers/char/lp.clp_table[minor].runchars++;
lp_table182drivers/char/lp.cif (lp_table[minor].runchars > LP_STAT(minor).maxrun)
lp_table183drivers/char/lp.cLP_STAT(minor).maxrun = lp_table[minor].runchars;
lp_table208drivers/char/lp.clp_table[minor].runchars=0;
lp_table244drivers/char/lp.clp_table[minor].runchars++;
lp_table246drivers/char/lp.cif (lp_table[minor].runchars > LP_STAT(minor).maxrun)
lp_table247drivers/char/lp.cLP_STAT(minor).maxrun = lp_table[minor].runchars;
lp_table286drivers/char/lp.cminor,lp_table[minor].runchars, LP_TIME(minor));
lp_table288drivers/char/lp.clp_table[minor].runchars=0;
lp_table301drivers/char/lp.cif (jiffies-lp_table[minor].lastcall > LP_TIME(minor))
lp_table302drivers/char/lp.clp_table[minor].runchars = 0;
lp_table303drivers/char/lp.clp_table[minor].lastcall = jiffies;
lp_table355drivers/char/lp.clp_table[minor].lp_buffer = (char *) kmalloc(LP_BUFFER_SIZE, GFP_KERNEL);
lp_table356drivers/char/lp.cif (!lp_table[minor].lp_buffer) {
lp_table363drivers/char/lp.ckfree_s(lp_table[minor].lp_buffer, LP_BUFFER_SIZE);
lp_table364drivers/char/lp.clp_table[minor].lp_buffer = NULL;
lp_table382drivers/char/lp.ckfree_s(lp_table[minor].lp_buffer, LP_BUFFER_SIZE);
lp_table383drivers/char/lp.clp_table[minor].lp_buffer = NULL;
lp_table435drivers/char/lp.cstruct lp_struct *lp = &lp_table[minor];
lp_table81include/linux/lp.h#define LP_B(minor)  lp_table[(minor)].base    /* IO address */
lp_table82include/linux/lp.h#define LP_F(minor)  lp_table[(minor)].flags    /* flags for busy, etc. */
lp_table84include/linux/lp.h#define LP_C(minor)  (lp_table[(minor)].base + 2)  /* control port */
lp_table85include/linux/lp.h#define LP_CHAR(minor)  lp_table[(minor)].chars    /* busy timeout */
lp_table86include/linux/lp.h#define LP_TIME(minor)  lp_table[(minor)].time    /* wait time */
lp_table87include/linux/lp.h#define LP_WAIT(minor)  lp_table[(minor)].wait    /* strobe wait */
lp_table88include/linux/lp.h#define LP_IRQ(minor)  lp_table[(minor)].irq    /* interrupt # */
lp_table90include/linux/lp.h#define LP_STAT(minor)  lp_table[(minor)].stats    /* statistics area */