tag | line | file | source code |
STL_TXBUFSIZE | 605 | drivers/char/stallion.c | kfree_s(stl_tmpwritebuf, STL_TXBUFSIZE); |
STL_TXBUFSIZE | 618 | drivers/char/stallion.c | kfree_s(portp->tx.buf, STL_TXBUFSIZE); |
STL_TXBUFSIZE | 709 | drivers/char/stallion.c | portp->tx.buf = (char *) stl_memalloc(STL_TXBUFSIZE); |
STL_TXBUFSIZE | 886 | drivers/char/stallion.c | kfree_s(portp->tx.buf, STL_TXBUFSIZE); |
STL_TXBUFSIZE | 967 | drivers/char/stallion.c | len = (head >= tail) ? (STL_TXBUFSIZE - (head - tail) - 1) : |
STL_TXBUFSIZE | 983 | drivers/char/stallion.c | len = STL_TXBUFSIZE - (head - tail) - 1; |
STL_TXBUFSIZE | 984 | drivers/char/stallion.c | stlen = STL_TXBUFSIZE - (head - portp->tx.buf); |
STL_TXBUFSIZE | 999 | drivers/char/stallion.c | if (head >= (portp->tx.buf + STL_TXBUFSIZE)) { |
STL_TXBUFSIZE | 1035 | drivers/char/stallion.c | len = (head >= tail) ? (STL_TXBUFSIZE - (head - tail)) : (tail - head); |
STL_TXBUFSIZE | 1040 | drivers/char/stallion.c | if (head >= (portp->tx.buf + STL_TXBUFSIZE)) |
STL_TXBUFSIZE | 1098 | drivers/char/stallion.c | return((head >= tail) ? (STL_TXBUFSIZE - (head - tail) - 1) : (tail - head - 1)); |
STL_TXBUFSIZE | 1132 | drivers/char/stallion.c | size = (head >= tail) ? (head - tail) : (STL_TXBUFSIZE - (tail - head)); |
STL_TXBUFSIZE | 1500 | drivers/char/stallion.c | kfree_s(portp->tx.buf, STL_TXBUFSIZE); |
STL_TXBUFSIZE | 1633 | drivers/char/stallion.c | len = (head >= tail) ? (head - tail) : (STL_TXBUFSIZE - (tail - head)); |
STL_TXBUFSIZE | 1652 | drivers/char/stallion.c | stlen = MIN(len, ((portp->tx.buf + STL_TXBUFSIZE) - tail)); |
STL_TXBUFSIZE | 1657 | drivers/char/stallion.c | if (tail >= (portp->tx.buf + STL_TXBUFSIZE)) |
STL_TXBUFSIZE | 3052 | drivers/char/stallion.c | portp->stats.txbuffered = ((head >= tail) ? (head - tail) : (STL_TXBUFSIZE - (tail - head))); |
STL_TXBUFSIZE | 3141 | drivers/char/stallion.c | stl_tmpwritebuf = (char *) stl_memalloc(STL_TXBUFSIZE); |
STL_TXBUFSIZE | 3143 | drivers/char/stallion.c | printk("STALLION: failed to allocate memory (size=%d)\n", STL_TXBUFSIZE); |