Lines Matching defs:log
127 struct b43legacy_txstatus_log *log = &dev->dfsentry->txstatlog;
133 spin_lock_irqsave(&log->lock, flags);
134 if (log->end < 0) {
142 i = log->end + 1;
147 stat = &(log->log[i]);
162 if (i == log->end)
167 spin_unlock_irqrestore(&log->lock, flags);
361 struct b43legacy_txstatus_log *log;
371 log = &e->txstatlog;
372 log->log = kcalloc(B43legacy_NR_LOGGED_TXSTATUS,
374 if (!log->log) {
379 log->end = -1;
380 spin_lock_init(&log->lock);
417 kfree(e->txstatlog.log);
425 struct b43legacy_txstatus_log *log;
431 log = &e->txstatlog;
433 spin_lock(&log->lock);
434 i = log->end + 1;
437 log->end = i;
438 cur = &(log->log[i]);
440 spin_unlock(&log->lock);