rt2x00: Store queue idx and entry idx in data_ring and data_entry
Store the queue idx inside structure data_ring Store the entry idx inside structure data_entry This saves us a few calls to ARRAY_INDEX() which is now unused. Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:

committed by
David S. Miller

parent
3867705bb7
commit
042671040d
@@ -120,12 +120,8 @@ void rt2x00debug_dump_frame(struct rt2x00_dev *rt2x00dev,
|
||||
struct sk_buff *skbcopy;
|
||||
struct rt2x00dump_hdr *dump_hdr;
|
||||
struct timeval timestamp;
|
||||
unsigned int ring_index;
|
||||
unsigned int entry_index;
|
||||
|
||||
do_gettimeofday(×tamp);
|
||||
ring_index = ARRAY_INDEX(desc->ring, rt2x00dev->rx);
|
||||
entry_index = ARRAY_INDEX(desc->entry, desc->ring->entry);
|
||||
|
||||
if (!test_bit(FRAME_DUMP_FILE_OPEN, &intf->frame_dump_flags))
|
||||
return;
|
||||
@@ -151,8 +147,8 @@ void rt2x00debug_dump_frame(struct rt2x00_dev *rt2x00dev,
|
||||
dump_hdr->chip_rf = cpu_to_le16(rt2x00dev->chip.rf);
|
||||
dump_hdr->chip_rev = cpu_to_le32(rt2x00dev->chip.rev);
|
||||
dump_hdr->type = cpu_to_le16(desc->frame_type);
|
||||
dump_hdr->ring_index = ring_index;
|
||||
dump_hdr->entry_index = entry_index;
|
||||
dump_hdr->ring_index = desc->ring->queue_idx;
|
||||
dump_hdr->entry_index = desc->entry->entry_idx;
|
||||
dump_hdr->timestamp_sec = cpu_to_le32(timestamp.tv_sec);
|
||||
dump_hdr->timestamp_usec = cpu_to_le32(timestamp.tv_usec);
|
||||
|
||||
|
Reference in New Issue
Block a user