diff options
author | David Sterba <dsterba@suse.cz> | 2008-07-28 10:53:32 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-28 11:28:03 -0400 |
commit | a01386924874c4d6d67f8a34e66f04452c2abb69 (patch) | |
tree | c412347f001f7d84c23ffc8d88f14479d999dfd4 /drivers/char/pcmcia/ipwireless/hardware.c | |
parent | 0f38c47a545d36da4038fec0708e6e3fbdb160b1 (diff) |
ipwireless: Preallocate received packet buffers with MRU size
ipwireless: Preallocate received packet buffers with MRU size
Packets are assembled from link size (~300 bytes) up to PPP MRU
(1500 by default). Try to preallocate full size rather than
repeatedly advance buffer size by 256 bytes.
Signed-off-by: David Sterba <dsterba@suse.cz>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/char/pcmcia/ipwireless/hardware.c')
-rw-r--r-- | drivers/char/pcmcia/ipwireless/hardware.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/char/pcmcia/ipwireless/hardware.c b/drivers/char/pcmcia/ipwireless/hardware.c index d1e69de19156..7d500f82195a 100644 --- a/drivers/char/pcmcia/ipwireless/hardware.c +++ b/drivers/char/pcmcia/ipwireless/hardware.c | |||
@@ -567,7 +567,8 @@ static struct ipw_rx_packet *pool_allocate(struct ipw_hardware *hw, | |||
567 | spin_unlock_irqrestore(&hw->lock, flags); | 567 | spin_unlock_irqrestore(&hw->lock, flags); |
568 | list_del(&packet->queue); | 568 | list_del(&packet->queue); |
569 | } else { | 569 | } else { |
570 | static int min_capacity = 256; | 570 | const int min_capacity = |
571 | ipwireless_ppp_mru(hw->network + 2); | ||
571 | int new_capacity; | 572 | int new_capacity; |
572 | 573 | ||
573 | spin_unlock_irqrestore(&hw->lock, flags); | 574 | spin_unlock_irqrestore(&hw->lock, flags); |