* grub-core/net/tftp.c: Decrease stall to 50 packets.

This commit is contained in:
Vladimir 'phcoder' Serbinenko 2012-06-22 22:04:16 +02:00
parent c7564b8e13
commit bd407d6e5e
2 changed files with 6 additions and 2 deletions

View file

@ -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.

View file

@ -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)