search for: 612,7

Displaying 20 results from an estimated 117 matches for "612,7".

2007 Aug 07
2
`*deleting' itemize output misaligned
...the patch below. Matt ------------- Index: log.c =================================================================== RCS file: /cvsroot/rsync/log.c,v retrieving revision 1.179 diff -u -r1.179 log.c --- log.c 10 Jul 2007 13:55:49 -0000 1.179 +++ log.c 7 Aug 2007 19:50:25 -0000 @@ -612,7 +612,7 @@ break; case 'i': if (iflags & ITEM_DELETED) { - n = "*deleting"; + n = "*deleting "; break;...
2000 Mar 24
0
typos in ssh.1 & sshd.8 man pages
...ne and in .Cm HostName Index: sshd.8 =================================================================== RCS file: /home/ncvs/src/crypto/openssh/sshd.8,v retrieving revision 1.5 retrieving revision 1.6 diff -u -u -r1.5 -r1.6 --- sshd.8 2000/03/13 00:17:43 1.5 +++ sshd.8 2000/03/24 02:26:54 1.6 @@ -612,7 +612,7 @@ and .Pa $HOME/.ssh/known_hosts files contain host public keys for all known hosts. The global file should -be prepared by the admistrator (optional), and the per-user file is +be prepared by the administrator (optional), and the per-user file is maintained automatically: whenever...
2020 Sep 27
4
[clang-tidy] where are "clang-diagnostic" checkers
Hi, all, I build clang-tidy by "ninja clang-tidy", but when I run below command, I get no checks. Where is the clang-diagnostic* checkers? Thanks in advance. > $ /Users/zyg/Documents/workspace/llvm-project/llvm/cmake-build-debug/bin/clang-tidy --checks="-*,clang-diagnostic-*" --list-checks No checks enabled.
2004 Aug 06
1
[PATCH] Re: Decoding .spx with 1.0 on ppc produces noise!
...+++ speex-1.0-works/src/speexdec.c Thu Apr 17 06:39:23 2003 @@ -136,7 +136,7 @@ exit(1); } - format=AFMT_S16_LE; + format=AFMT_S16_NE; if (ioctl(audio_fd, SNDCTL_DSP_SETFMT, &format)==-1) { perror("SNDCTL_DSP_SETFMT"); @@ -612,7 +612,7 @@ } /*Convert to short and save to output file*/ for (i=0;i<frame_size*channels;i++) - out[i]=(short)le_short((short)floor(.5+output[i])); + out[i]=(short)floor(.5+output[i]); #if defined...
2004 Aug 06
4
Decoding .spx with 1.0 on ppc produces noise!
Hi, I got my hands on the LCA 2003 CD today and I tried to listen to it on my powerbook running Linux. Instead of getting speech, I got an earfull of noise! Attempting the same experiment on an i386 with the same CD produced understandable speech. It seems that the output routine in speexdec converts the output data to little endian short format, which is incorrect on the ppc architecture. The
2016 Jul 27
2
[PATCH v2 repost 4/7] virtio-balloon: speed up inflate/deflate process
...if (diff > 0) > - diff -= fill_balloon(vb, diff); > + diff -= fill_balloon(vb, diff, use_bmap); > else if (diff < 0) > - diff += leak_balloon(vb, -diff); > + diff += leak_balloon(vb, -diff, use_bmap); > update_balloon_size(vb); > > if (diff) > @@ -489,7 +612,7 @@ static int virtballoon_migratepage(struct balloon_dev_info *vb_dev_info, > static int virtballoon_probe(struct virtio_device *vdev) > { > struct virtio_balloon *vb; > - int err; > + int err, hdr_len; > > if (!vdev->config->get) { > dev_err(&vdev-&gt...
2016 Jul 27
2
[PATCH v2 repost 4/7] virtio-balloon: speed up inflate/deflate process
...if (diff > 0) > - diff -= fill_balloon(vb, diff); > + diff -= fill_balloon(vb, diff, use_bmap); > else if (diff < 0) > - diff += leak_balloon(vb, -diff); > + diff += leak_balloon(vb, -diff, use_bmap); > update_balloon_size(vb); > > if (diff) > @@ -489,7 +612,7 @@ static int virtballoon_migratepage(struct balloon_dev_info *vb_dev_info, > static int virtballoon_probe(struct virtio_device *vdev) > { > struct virtio_balloon *vb; > - int err; > + int err, hdr_len; > > if (!vdev->config->get) { > dev_err(&vdev-&gt...
2020 Sep 08
0
[libnbd PATCH] hack for testing python closure leaks: NOT FOR COMMIT
...ue;\n"; + pr " atexit (dump_alloc_count);\n"; + pr " }\n"; + pr " alloc_count++;\n"; pr " struct user_data *data = calloc (1, sizeof *data);\n"; pr " if (data == NULL) {\n"; pr " PyErr_NoMemory ();\n"; @@ -594,6 +612,7 @@ let generate_python_methods_c () = pr "{\n"; pr " struct user_data *data = user_data;\n"; pr "\n"; + pr " alloc_count--;\n"; pr " if (data->fn != NULL)\n"; pr " Py_DECREF (data->fn);\n"; pr " if (d...
2008 Oct 22
1
[PATCH] virtio_net: hook up the set-tso ethtool op
...by: Mark McLoughlin <markmc at redhat.com> --- drivers/net/virtio_net.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c index cca6435..79b59cc 100644 --- a/drivers/net/virtio_net.c +++ b/drivers/net/virtio_net.c @@ -612,6 +612,7 @@ static int virtnet_set_tx_csum(struct net_device *dev, u32 data) static struct ethtool_ops virtnet_ethtool_ops = { .set_tx_csum = virtnet_set_tx_csum, .set_sg = ethtool_op_set_sg, + .set_tso = ethtool_op_set_tso, }; static int virtnet_probe(struct virtio_device *vdev) -- 1.6.0...
2008 Oct 22
1
[PATCH] virtio_net: hook up the set-tso ethtool op
...by: Mark McLoughlin <markmc at redhat.com> --- drivers/net/virtio_net.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c index cca6435..79b59cc 100644 --- a/drivers/net/virtio_net.c +++ b/drivers/net/virtio_net.c @@ -612,6 +612,7 @@ static int virtnet_set_tx_csum(struct net_device *dev, u32 data) static struct ethtool_ops virtnet_ethtool_ops = { .set_tx_csum = virtnet_set_tx_csum, .set_sg = ethtool_op_set_sg, + .set_tso = ethtool_op_set_tso, }; static int virtnet_probe(struct virtio_device *vdev) -- 1.6.0...
2016 Jul 28
0
[PATCH v2 repost 4/7] virtio-balloon: speed up inflate/deflate process
...; > > + hdr->reserved = cpu_to_virtio16(vb->vdev, 0); > > + hdr->req_id = cpu_to_virtio64(vb->vdev, 0); > > no need to swap 0, just fill it in. in fact you allocated all 0s so no need to touch > these fields at all. > Will change in v3. > > @@ -489,7 +612,7 @@ static int virtballoon_migratepage(struct > > balloon_dev_info *vb_dev_info, static int virtballoon_probe(struct > > virtio_device *vdev) { > > struct virtio_balloon *vb; > > - int err; > > + int err, hdr_len; > > > > if (!vdev->config->get...
2023 Apr 30
1
[RFC PATCH net 2/3] virtio-net: allow usage of vrings smaller than MAX_SKB_FRAGS + 2
...a broken device. */ - if (unlikely(len > MAX_SKB_FRAGS * PAGE_SIZE)) { + if (unlikely(vi->svring)) + max_frags = 1; + + if (unlikely(len > max_frags * PAGE_SIZE)) { net_dbg_ratelimited("%s: too much data\n", skb->dev->name); dev_kfree_skb(skb); return NULL; @@ -612,7 +624,7 @@ static void check_sq_full_and_disable(struct virtnet_info *vi, * Since most packets only take 1 or 2 ring slots, stopping the queue * early means 16 slots are typically wasted. */ - if (sq->vq->num_free < 2+MAX_SKB_FRAGS) { + if (sq->vq->num_free < vi->sing...
2016 Jul 28
1
[PATCH v2 repost 4/7] virtio-balloon: speed up inflate/deflate process
...io16(vb->vdev, 0); > > > + hdr->req_id = cpu_to_virtio64(vb->vdev, 0); > > > > no need to swap 0, just fill it in. in fact you allocated all 0s so no need to touch > > these fields at all. > > > > Will change in v3. > > > > @@ -489,7 +612,7 @@ static int virtballoon_migratepage(struct > > > balloon_dev_info *vb_dev_info, static int virtballoon_probe(struct > > > virtio_device *vdev) { > > > struct virtio_balloon *vb; > > > - int err; > > > + int err, hdr_len; > > > > >...
2016 Jul 28
1
[PATCH v2 repost 4/7] virtio-balloon: speed up inflate/deflate process
...io16(vb->vdev, 0); > > > + hdr->req_id = cpu_to_virtio64(vb->vdev, 0); > > > > no need to swap 0, just fill it in. in fact you allocated all 0s so no need to touch > > these fields at all. > > > > Will change in v3. > > > > @@ -489,7 +612,7 @@ static int virtballoon_migratepage(struct > > > balloon_dev_info *vb_dev_info, static int virtballoon_probe(struct > > > virtio_device *vdev) { > > > struct virtio_balloon *vb; > > > - int err; > > > + int err, hdr_len; > > > > >...
2019 Sep 11
0
[PATCH 1/4] mm/hmm: make full use of walk_page_range()
...es[value]; return 0; } @@ -584,7 +583,7 @@ static int hmm_vma_walk_pmd(pmd_t *pmdp, } return 0; } else if (!pmd_present(pmd)) - return hmm_pfns_bad(start, end, walk); + return hmm_pfns_fill(start, end, range, HMM_PFN_ERROR); if (pmd_devmap(pmd) || pmd_trans_huge(pmd)) { /* @@ -612,7 +611,7 @@ static int hmm_vma_walk_pmd(pmd_t *pmdp, * recover. */ if (pmd_bad(pmd)) - return hmm_pfns_bad(start, end, walk); + return hmm_pfns_fill(start, end, range, HMM_PFN_ERROR); ptep = pte_offset_map(pmdp, addr); i = (addr - range->start) >> PAGE_SHIFT; @@ -770,13 +76...
2003 Oct 08
2
2.5.6: a number of minor issues
...program is not running as the super-user, only groups that the receiver is a member of will be preserved (by group name, not group id -number)\&. +number, unless --numeric-ids is given)\&. .IP .IP "\fB-D, --devices\fP" This option causes rsync to transfer character and @@ -612,7 +612,7 @@ .IP .IP "\fB--existing\fP" This tells rsync not to create any new files - -only update files that already exist on the destination\&. +update only files that already exist on the destination\&. .IP .IP "\fB--ignore-existing\fP" This tells rsync not...
1999 Nov 13
0
patches for alpha
...Mon Aug 23 06:36:28 1999 +++ ./configure.in Sun Sep 12 17:38:27 1999 @@ -541,7 +541,9 @@ -bI:\$(R_HOME)/etc/R.exp -lc -lm" ;; alpha*osf*) + ldcmd="f77 -g -nofor_main -fpe3 " cpicflags= + shlibld=f77 shlibldflags=-shared ;; alpha*linux) @@ -612,7 +614,7 @@ : ${CPICFLAGS=${cpicflags}} if test -z "${CPICFLAGS}"; then AC_MSG_WARN([Could not determine CPICFLAGS.]) - AC_MSG_ERROR([See the file INSTALL for more information.]) +# AC_MSG_ERROR([See the file INSTALL for more information.]) fi : ${FPICFLAGS=${fpicflags}} : ${SHL...
2007 Apr 18
0
[PATCH 7/12] gdt-accessor
...cpu = get_cpu(); - save_desc_40 = per_cpu(cpu_gdt_table, cpu)[0x40 / 8]; - per_cpu(cpu_gdt_table, cpu)[0x40 / 8] = bad_bios_desc; + gdt = get_cpu_gdt_table(cpu); + save_desc_40 = gdt[desc_number(0x40)]; + gdt[desc_number(0x40)] = bad_bios_desc; local_save_flags(flags); APM_DO_CLI; @@ -610,7 +612,7 @@ apm_bios_call_asm(func, ebx_in, ecx_in, eax, ebx, ecx, edx, esi); APM_DO_RESTORE_SEGS; local_irq_restore(flags); - per_cpu(cpu_gdt_table, cpu)[0x40 / 8] = save_desc_40; + gdt[desc_number(0x40)] = save_desc_40; put_cpu(); apm_restore_cpus(cpus); @@ -639,13 +641,14 @@ cpumask_t c...
2007 Apr 18
0
[PATCH 7/12] gdt-accessor
...cpu = get_cpu(); - save_desc_40 = per_cpu(cpu_gdt_table, cpu)[0x40 / 8]; - per_cpu(cpu_gdt_table, cpu)[0x40 / 8] = bad_bios_desc; + gdt = get_cpu_gdt_table(cpu); + save_desc_40 = gdt[desc_number(0x40)]; + gdt[desc_number(0x40)] = bad_bios_desc; local_save_flags(flags); APM_DO_CLI; @@ -610,7 +612,7 @@ apm_bios_call_asm(func, ebx_in, ecx_in, eax, ebx, ecx, edx, esi); APM_DO_RESTORE_SEGS; local_irq_restore(flags); - per_cpu(cpu_gdt_table, cpu)[0x40 / 8] = save_desc_40; + gdt[desc_number(0x40)] = save_desc_40; put_cpu(); apm_restore_cpus(cpus); @@ -639,13 +641,14 @@ cpumask_t c...
2007 Apr 18
1
[PATCH 1/2] Transparent entry.S IRQ holdoff handling
...368,7 @@ syscall_trace_entry: syscall_exit_work: testb $(_TIF_SYSCALL_TRACE|_TIF_SYSCALL_AUDIT|_TIF_SINGLESTEP), %cl jz work_pending - sti # could let do_syscall_trace() call + STI # could let do_syscall_trace() call # schedule() instead movl %esp, %eax movl $1, %edx @@ -613,7 +612,7 @@ nmi_16bit_stack: call do_nmi RESTORE_REGS lss 12+4(%esp), %esp # back to 16bit stack -1: iret +1: IRET16 .section __ex_table,"a" .align 4 .long 1b,iret_exc Index: linux-2.6.13/include/asm-i386/mach-default/mach_asm.h =======================================================...