On Thu, 2010-06-24 at 10:30 -0700, Richard Farina wrote: > There were two compat-wireless releases for 2.6.35_rc2 because Luis had > asked me to test and then he changed it for the official release. I'll > use the official 2.6.35_rc2 release for the current testing so if there > are any patches you wish to toss my way please base them on that. The > other option is you tell me what to do, I can run any kernel, any git > snapshot, whatever you say. Like I said, all I have to do is download > something or transfer something large so it is pretty easily > reproducible here so I'll test whatever you like. Could you please try out this patch? It is based on the latest linux-2.6 so should apply cleanly to your latest 2.6.35 stable compat. diff --git a/drivers/net/wireless/iwlwifi/iwl-agn-lib.c b/drivers/net/wireless/iwlwifi/iwl-agn-lib.c index 0f292a2..028db74 100644 --- a/drivers/net/wireless/iwlwifi/iwl-agn-lib.c +++ b/drivers/net/wireless/iwlwifi/iwl-agn-lib.c @@ -613,7 +613,7 @@ void iwlagn_rx_allocate(struct iwl_priv *priv, gfp_t priority) } spin_unlock_irqrestore(&rxq->lock, flags); - if (rxq->free_count > RX_LOW_WATERMARK) + if (rxq->free_count > 8) gfp_mask |= __GFP_NOWARN; if (priv->hw_params.rx_page_order > 0) diff --git a/drivers/net/wireless/iwlwifi/iwl-fh.h b/drivers/net/wireless/iwlwifi/iwl-fh.h index 113c366..396a16c 100644 --- a/drivers/net/wireless/iwlwifi/iwl-fh.h +++ b/drivers/net/wireless/iwlwifi/iwl-fh.h @@ -426,7 +426,7 @@ * RX related structures and functions */ #define RX_FREE_BUFFERS 64 -#define RX_LOW_WATERMARK 8 +#define RX_LOW_WATERMARK 64 /* Size of one Rx buffer in host DRAM */ #define IWL_RX_BUF_SIZE_3K (3 * 1000) /* 3945 only */ -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html