@@ -1814,6 +1814,19 @@ ath5k_tasklet_rx(unsigned long data)
}
if (unlikely(rs.rs_more)) {
+ /*
+ * The jumbo flag is supposed to indicate the packet
+ * is larger than the buffer size. However, we have a
+ * buffer size of 2500 so that shouldn't happen for
+ * standard frames.
+ *
+ * The relevant frames really are all > 2500 bytes
+ * (including roundup for cache line). unmap and
+ * hexdump reveals that they have no 802.11 headers or
+ * anything of the sort.
+ *
+ * XXX just drop the warning?
+ */
ATH5K_WARN(sc, "unsupported jumbo\n");
goto next;
}