Lines Matching defs:memory
8 /* * dedicated to the memory of Graham Gordon 1971-1998 * */
106 locations in (bus) memory. They are of the "full means the same as
208 There is a DMA memory hole at E0000000-E00000FF (groan).
402 /********** check memory areas for use by Ambassador **********/
1126 PRINTK (KERN_ERR, "out of memory!");
1330 // allocate memory for fragments
1500 void * memory;
1512 memory = kmalloc (total, GFP_KERNEL);
1513 if (!memory) {
1517 if (check_area (memory, total)) {
1519 kfree (memory);
1523 limit = memory + total;
1524 PRINTD (DBG_INIT, "queues from %p to %p", memory, limit);
1526 PRINTD (DBG_CMD, "command queue at %p", memory);
1529 command * cmd = memory;
1541 memory = cq->ptrs.limit;
1544 PRINTD (DBG_TX, "TX queue pair at %p", memory);
1547 tx_in * in = memory;
1560 memory = txq->in.limit;
1561 out = memory;
1567 memory = txq->out.limit;
1570 PRINTD (DBG_RX, "RX queue pairs at %p", memory);
1573 rx_in * in = memory;
1589 memory = rxq->in.limit;
1590 out = memory;
1596 memory = rxq->out.limit;
1599 if (memory == limit) {
1602 PRINTK (KERN_ERR, "bad queue alloc %p != %p (tell maintainer)", memory, limit);
1613 void * memory = dev->cq.ptrs.start;
1618 PRINTD (DBG_INIT, "freeing queues at %p", memory);
1619 kfree (memory);
1797 /* loader: write memory data blocks */
1812 /* loader: verify memory data blocks */
2101 PRINTK (KERN_ERR, "failed to get memory for queues");
2214 PRINTK (KERN_ERR, "out of memory!");