search for: tranmission

Displaying 16 results from an estimated 16 matches for "tranmission".

Did you mean: transmission
2018 Sep 25
1
How to troubleshoot admin auth values in url format http://admin:password@icecast.org:1234
...k_pass_http it appears it calls a method util_base64_decode, so it appears it is trying to decode it. but sometimes this works from a web browser request when username:password is typed in plaintext (not base64encoded) does the browser automatically encode it behind the scenes before the network tranmission? 2. is there anyway to enable a more detailed logging level which would be able to echo the values submitted, to validate if they are being changed by the web browser during transmission? in same code file, I see WARN1("Base64 decode of Authorization header \"%s\" failed", he...
2017 Apr 02
1
[PATCH net-next 2/3] virtio-net: transmit napi
...ing using TCP small queues and increases single stream throughput. The virtio-net driver currently cleans tx descriptors on transmission of new packets in ndo_start_xmit. Latency depends on new traffic, so is unbounded. To avoid deadlock when a socket reaches its snd limit, packets are orphaned on tranmission. This breaks socket backpressure, including TSQ. Napi increases the number of interrupts generated compared to the current model, which keeps interrupts disabled as long as the ring has enough free descriptors. Keep tx napi optional for now. Follow-on patches will reduce the interrupt cost. Signe...
2018 Mar 15
0
failing with I/O error when loading Linux kernel
I found the issue and worked around it. I had been using rsync to populate the filesystem. Switching to good old dump&restore made it work. Why, when every other variable was kept the same, the tranmission method makes a difference I cannot say. All the permissions, attributes, and checksums of the kernel file matched on the sender and receiver. I even retried some of the combinations that had previously failed and got them working when I used dump+restore. Something about how rsync is putting the...
2018 Mar 14
2
failing with I/O error when loading Linux kernel
I'm trying to use syslinux 6.03 to boot a QEMU VM. The config file is very simple: DEFAULT foo PROMPT 1 UI menu.c32 LABEL foo LINUX /boot/vmlinuz INITRD /boot/initrd APPEND root=LABEL=ROOT ro Syslinux starts right and finds the config file (it knows what the label foo is), but then fails to load the kernel: "Loading /boot/vmlinuz... failed: I/O error" I get the same error
2008 Jul 18
1
Question regarding dependencies for Wine 1.1.1
...2/download), add the correct Debian repository as suggested there and 'reload' in Synaptic. Then I search for 'libldap2', find it and mark it for installation, but it tells me that some packages will be removed. those are not a few packages, it is about to remove Amarok, OpenOffice, tranmission, Samba... Half my system will be removed! Needles to say, I did not install 'libldap2'... Bit what should I do to et Wine1.1.1 on? DreamLinux is actually based on Debian Lenny (the next release) and 'libldap2' is from Etch (current one). Could this be the issue? Any ideas here?...
2017 Apr 20
0
[PATCH net-next v2 2/5] virtio-net: transmit napi
...d increases single stream > throughput. > > The virtio-net driver currently cleans tx descriptors on transmission > of new packets in ndo_start_xmit. Latency depends on new traffic, so > is unbounded. To avoid deadlock when a socket reaches its snd limit, > packets are orphaned on tranmission. This breaks socket backpressure, > including TSQ. > > Napi increases the number of interrupts generated compared to the > current model, which keeps interrupts disabled as long as the ring > has enough free descriptors. Keep tx napi optional and disabled for > now. Follow-on patc...
2000 Aug 15
1
Ogg Vorbis Framing
Hi all, Here are some thoughts on Vorbis framing, which may make it easier to stream Vorbis in real time. The suggested changes also move more audio data closer to the beginning of each page. A note in the Vorbis framing spec suggests a simple 'bandwidth limited' mode whereby important information is placed at the front of each page and the end of each page is discarded. When operating
2017 Apr 03
0
[PATCH net-next 2/3] virtio-net: transmit napi
...increases single stream > throughput. > > The virtio-net driver currently cleans tx descriptors on transmission > of new packets in ndo_start_xmit. Latency depends on new traffic, so > is unbounded. To avoid deadlock when a socket reaches its snd limit, > packets are orphaned on tranmission. This breaks socket backpressure, > including TSQ. > > Napi increases the number of interrupts generated compared to the > current model, which keeps interrupts disabled as long as the ring > has enough free descriptors. Keep tx napi optional for now. Follow-on > patches will red...
2017 Apr 24
0
[PATCH net-next v3 2/5] virtio-net: transmit napi
...ing using TCP small queues and increases single stream throughput. The virtio-net driver currently cleans tx descriptors on transmission of new packets in ndo_start_xmit. Latency depends on new traffic, so is unbounded. To avoid deadlock when a socket reaches its snd limit, packets are orphaned on tranmission. This breaks socket backpressure, including TSQ. Napi increases the number of interrupts generated compared to the current model, which keeps interrupts disabled as long as the ring has enough free descriptors. Keep tx napi optional and disabled for now. Follow-on patches will reduce the interrupt...
2017 Apr 02
5
[PATCH net-next 0/3] virtio-net tx napi
From: Willem de Bruijn <willemb at google.com> Add napi for virtio-net transmit completion processing. Based on previous patchsets by Jason Wang: [RFC V7 PATCH 0/7] enable tx interrupts for virtio-net http://lkml.iu.edu/hypermail/linux/kernel/1505.3/00245.html Changes: RFC -> v1: - dropped vhost interrupt moderation patch: not needed and likely expensive at light
2017 Apr 02
5
[PATCH net-next 0/3] virtio-net tx napi
From: Willem de Bruijn <willemb at google.com> Add napi for virtio-net transmit completion processing. Based on previous patchsets by Jason Wang: [RFC V7 PATCH 0/7] enable tx interrupts for virtio-net http://lkml.iu.edu/hypermail/linux/kernel/1505.3/00245.html Changes: RFC -> v1: - dropped vhost interrupt moderation patch: not needed and likely expensive at light
2017 Apr 18
2
[PATCH net-next v2 2/5] virtio-net: transmit napi
...ing using TCP small queues and increases single stream throughput. The virtio-net driver currently cleans tx descriptors on transmission of new packets in ndo_start_xmit. Latency depends on new traffic, so is unbounded. To avoid deadlock when a socket reaches its snd limit, packets are orphaned on tranmission. This breaks socket backpressure, including TSQ. Napi increases the number of interrupts generated compared to the current model, which keeps interrupts disabled as long as the ring has enough free descriptors. Keep tx napi optional and disabled for now. Follow-on patches will reduce the interrupt...
2017 Apr 18
8
[PATCH net-next v2 0/5] virtio-net tx napi
From: Willem de Bruijn <willemb at google.com> Add napi for virtio-net transmit completion processing. Changes: v1 -> v2: - disable by default - disable unless affinity_hint_set because cache misses add up to a third higher cycle cost, e.g., in TCP_RR tests. This is not limited to the patch that enables tx completion cleaning in rx napi. - use trylock to
2017 Apr 18
8
[PATCH net-next v2 0/5] virtio-net tx napi
From: Willem de Bruijn <willemb at google.com> Add napi for virtio-net transmit completion processing. Changes: v1 -> v2: - disable by default - disable unless affinity_hint_set because cache misses add up to a third higher cycle cost, e.g., in TCP_RR tests. This is not limited to the patch that enables tx completion cleaning in rx napi. - use trylock to
2017 Apr 24
8
[PATCH net-next v3 0/5] virtio-net tx napi
From: Willem de Bruijn <willemb at google.com> Add napi for virtio-net transmit completion processing. Changes: v2 -> v3: - convert __netif_tx_trylock to __netif_tx_lock on tx napi poll ensure that the handler always cleans, to avoid deadlock - unconditionally clean in start_xmit avoid adding an unnecessary "if (use_napi)" branch - remove
2017 Apr 24
8
[PATCH net-next v3 0/5] virtio-net tx napi
From: Willem de Bruijn <willemb at google.com> Add napi for virtio-net transmit completion processing. Changes: v2 -> v3: - convert __netif_tx_trylock to __netif_tx_lock on tx napi poll ensure that the handler always cleans, to avoid deadlock - unconditionally clean in start_xmit avoid adding an unnecessary "if (use_napi)" branch - remove