taglinefilesource code
lp_table35drivers/char/lp.cstruct lp_struct lp_table[] = {
lp_table153drivers/char/lp.cstruct lp_struct *lp = &lp_table[0];
lp_table156drivers/char/lp.cif (++lp >= &lp_table[LP_NO])
lp_table168drivers/char/lp.cstruct lp_struct *lp = &lp_table[minor];
lp_table180drivers/char/lp.clp_table[minor].runchars++;
lp_table183drivers/char/lp.cif (lp_table[minor].runchars > LP_STAT(minor).maxrun)
lp_table184drivers/char/lp.cLP_STAT(minor).maxrun = lp_table[minor].runchars;
lp_table209drivers/char/lp.clp_table[minor].runchars=0;
lp_table245drivers/char/lp.clp_table[minor].runchars++;
lp_table247drivers/char/lp.cif (lp_table[minor].runchars > LP_STAT(minor).maxrun)
lp_table248drivers/char/lp.cLP_STAT(minor).maxrun = lp_table[minor].runchars;
lp_table287drivers/char/lp.cminor,lp_table[minor].runchars, LP_TIME(minor));
lp_table289drivers/char/lp.clp_table[minor].runchars=0;
lp_table302drivers/char/lp.cif (jiffies-lp_table[minor].lastcall > LP_TIME(minor))
lp_table303drivers/char/lp.clp_table[minor].runchars = 0;
lp_table304drivers/char/lp.clp_table[minor].lastcall = jiffies;
lp_table356drivers/char/lp.clp_table[minor].lp_buffer = (char *) kmalloc(LP_BUFFER_SIZE, GFP_KERNEL);
lp_table357drivers/char/lp.cif (!lp_table[minor].lp_buffer) {
lp_table364drivers/char/lp.ckfree_s(lp_table[minor].lp_buffer, LP_BUFFER_SIZE);
lp_table365drivers/char/lp.clp_table[minor].lp_buffer = NULL;
lp_table383drivers/char/lp.ckfree_s(lp_table[minor].lp_buffer, LP_BUFFER_SIZE);
lp_table384drivers/char/lp.clp_table[minor].lp_buffer = NULL;
lp_table436drivers/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 */