rt2x00queue.c (85eb018fec29eae60d20f6d04af854308ffb3a05) rt2x00queue.c (2ceb813798e1fd33e71a574771828c0f298e077b)
1/*
2 Copyright (C) 2010 Willow Garage <http://www.willowgarage.com>
3 Copyright (C) 2004 - 2010 Ivo van Doorn <IvDoorn@gmail.com>
4 Copyright (C) 2004 - 2009 Gertjan van Wingerde <gwingerde@gmail.com>
5 <http://rt2x00.serialmonkey.com>
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by

--- 530 unchanged lines hidden (view full) ---

539 struct data_queue *queue = entry->queue;
540
541 queue->rt2x00dev->ops->lib->write_tx_desc(entry, txdesc);
542
543 /*
544 * All processing on the frame has been completed, this means
545 * it is now ready to be dumped to userspace through debugfs.
546 */
1/*
2 Copyright (C) 2010 Willow Garage <http://www.willowgarage.com>
3 Copyright (C) 2004 - 2010 Ivo van Doorn <IvDoorn@gmail.com>
4 Copyright (C) 2004 - 2009 Gertjan van Wingerde <gwingerde@gmail.com>
5 <http://rt2x00.serialmonkey.com>
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by

--- 530 unchanged lines hidden (view full) ---

539 struct data_queue *queue = entry->queue;
540
541 queue->rt2x00dev->ops->lib->write_tx_desc(entry, txdesc);
542
543 /*
544 * All processing on the frame has been completed, this means
545 * it is now ready to be dumped to userspace through debugfs.
546 */
547 rt2x00debug_dump_frame(queue->rt2x00dev, DUMP_FRAME_TX, entry->skb);
547 rt2x00debug_dump_frame(queue->rt2x00dev, DUMP_FRAME_TX, entry);
548}
549
550static void rt2x00queue_kick_tx_queue(struct data_queue *queue,
551 struct txentry_desc *txdesc)
552{
553 /*
554 * Check if we need to kick the queue, there are however a few rules
555 * 1) Don't kick unless this is the last in frame in a burst.

--- 735 unchanged lines hidden ---
548}
549
550static void rt2x00queue_kick_tx_queue(struct data_queue *queue,
551 struct txentry_desc *txdesc)
552{
553 /*
554 * Check if we need to kick the queue, there are however a few rules
555 * 1) Don't kick unless this is the last in frame in a burst.

--- 735 unchanged lines hidden ---