* grub-core/net/tftp.c: Decrease stall to 50 packets.
This commit is contained in:
parent
c7564b8e13
commit
bd407d6e5e
2 changed files with 6 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
|||
2012-06-22 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
* grub-core/net/tftp.c: Decrease stall to 50 packets.
|
||||
|
||||
2012-06-22 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
* grub-core/net/net.c (grub_net_fs_open): Free resources on failed open.
|
||||
|
|
|
@ -224,7 +224,7 @@ tftp_receive (grub_net_udp_socket_t sock __attribute__ ((unused)),
|
|||
|
||||
grub_priority_queue_pop (data->pq);
|
||||
|
||||
if (file->device->net->packs.count < 200)
|
||||
if (file->device->net->packs.count < 50)
|
||||
err = ack (data, tftph->u.data.block);
|
||||
else
|
||||
{
|
||||
|
@ -451,7 +451,7 @@ static grub_err_t
|
|||
tftp_packets_pulled (struct grub_file *file)
|
||||
{
|
||||
tftp_data_t data = file->data;
|
||||
if (file->device->net->packs.count >= 200)
|
||||
if (file->device->net->packs.count >= 50)
|
||||
return 0;
|
||||
|
||||
if (!file->device->net->eof)
|
||||
|
|
Loading…
Reference in a new issue