Displaying 20 results from an estimated 528 matches for "60,7".
Did you mean:
40,7
2019 Jun 07
1
[PATCH trivial] mm/balloon_compaction: Grammar s/the its/its/
...oeven <geert+renesas at glider.be>
---
mm/balloon_compaction.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mm/balloon_compaction.c b/mm/balloon_compaction.c
index ba739b76e6c52e55..17ac81d8d26bcb50 100644
--- a/mm/balloon_compaction.c
+++ b/mm/balloon_compaction.c
@@ -60,7 +60,7 @@ EXPORT_SYMBOL_GPL(balloon_page_enqueue);
/*
* balloon_page_dequeue - removes a page from balloon's page list and returns
- * the its address to allow the driver release the page.
+ * its address to allow the driver to release the page.
* @b_dev_info: balloon device dec...
2019 Jun 07
1
[PATCH trivial] mm/balloon_compaction: Grammar s/the its/its/
...oeven <geert+renesas at glider.be>
---
mm/balloon_compaction.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mm/balloon_compaction.c b/mm/balloon_compaction.c
index ba739b76e6c52e55..17ac81d8d26bcb50 100644
--- a/mm/balloon_compaction.c
+++ b/mm/balloon_compaction.c
@@ -60,7 +60,7 @@ EXPORT_SYMBOL_GPL(balloon_page_enqueue);
/*
* balloon_page_dequeue - removes a page from balloon's page list and returns
- * the its address to allow the driver release the page.
+ * its address to allow the driver to release the page.
* @b_dev_info: balloon device dec...
2003 May 27
1
[RESEND] crc32 optimization
...optimization is possible by using the impl. in the linux 2.5 kernel, but
I don't know if it is worth it. Is crc32 common in samba? What would the typical
buffer len be?
Jocke
Patch against 2_2_8 CVS:
--- lib/crc32.c Sat Oct 20 23:23:35 2001
+++ lib/crc32.c.new Tue May 13 14:45:31 2003
@@ -60,7 +60,7 @@
uint32 crc=0xffffffff;
int i;
for(i=0;i<count;i++)
- crc = (crc>>8) ^ CRCTable[(buffer[i] ^ crc) & 0xff];
+ crc = CRCTable[(buffer[i] ^ crc) & 0xff] ^ (crc>>8);
crc^=0xffffffff;
DEBUG(10,("crc32_calc...
2010 Apr 18
1
tiny typo in ?prop.test: "if" for "is"
from revision 51769:
Index: prop.test.Rd
===================================================================
--- prop.test.Rd (revision 51769)
+++ prop.test.Rd (working copy)
@@ -60,7 +60,7 @@
If there is only one group, then the null tested is that the
underlying probability of success is \code{p}, or .5 if \code{p} is
- not given. The alternative is that the probability of success if less
+ not given. The alternative is that the probability of success is less
t...
2013 Apr 26
1
[PATCH] nouveau: Allow 3D accelerators with output ports
...c/nv_driver.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
NOTE: I might have sent this to the wrong ML, this is my first
time submitting a nouveau patch.
diff --git a/src/nv_driver.c b/src/nv_driver.c
index 2b74fc6..0dce0aa 100644
--- a/src/nv_driver.c
+++ b/src/nv_driver.c
@@ -60,7 +60,7 @@ static Bool NVUnmapMem(ScrnInfoPtr pScrn);
#define NOUVEAU_PCI_DEVICE(_vendor_id, _device_id) \
{ (_vendor_id), (_device_id), PCI_MATCH_ANY, PCI_MATCH_ANY, \
- 0x00030000, 0x00ffffff, 0 }
+ 0x00030000, 0x00fffdff, 0 }
static const struct...
2014 Sep 29
1
[PATCH] chroot: fix quoting in cp invocation
...to quote source and destination, to avoid failures when
dealing with paths with e.g. spaces, brackets, etc.
---
src/chroot.ml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/chroot.ml b/src/chroot.ml
index 63a5a79..d0ee4c3 100644
--- a/src/chroot.ml
+++ b/src/chroot.ml
@@ -60,7 +60,7 @@ let build_chroot debug files outputdir =
| S_REG | S_CHR | S_BLK | S_FIFO | S_SOCK ->
if debug >= 2 then printf "supermin: chroot: copy %s\n%!" opath;
- let cmd = sprintf "cp -p %s %s" path opath in
+ let cmd = sprintf &qu...
2014 Sep 27
2
[PATCH 1/2] Implement realpath()
...gt;
---
--- a/usr/include/stdlib.h
+++ b/usr/include/stdlib.h
@@ -92,4 +92,6 @@ static __inline__ int grantpt(int __fd)
return 0; /* devpts does this all for us! */
}
+__extern char *realpath(const char *, char *);
+
#endif /* _STDLIB_H */
--- a/usr/klibc/Kbuild
+++ b/usr/klibc/Kbuild
@@ -60,7 +60,7 @@ klib-y += vsnprintf.o snprintf.o vsprint
send.o recv.o \
access.o chmod.o chown.o dup2.o mknod.o poll.o rename.o stat.o \
lchown.o link.o rmdir.o unlink.o utimes.o lstat.o mkdir.o \
- readlink.o select.o symlink.o pipe.o \
+ readlink.o realpath.o select.o symlink.o pipe.o...
2019 Sep 13
1
[PATCH nbdkit] common/bitmap: Don't fail on realloc (ptr, 0)
...fv --filter=cow --filter=truncate memory size=512 round-up=4096
---
common/bitmap/bitmap.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/common/bitmap/bitmap.c b/common/bitmap/bitmap.c
index caac916..6bf04dc 100644
--- a/common/bitmap/bitmap.c
+++ b/common/bitmap/bitmap.c
@@ -60,7 +60,7 @@ bitmap_resize (struct bitmap *bm, uint64_t new_size)
new_bm_size = (size_t) new_bm_size_u64;
new_bitmap = realloc (bm->bitmap, new_bm_size);
- if (new_bitmap == NULL) {
+ if (new_bm_size && new_bitmap == NULL) {
nbdkit_error ("realloc: %m");
retur...
2017 Jan 31
3
[nbdkit PATCH 0/2] fix pod and other errors in recent patches
...rl/Makefile.am | 4 +++-
plugins/perl/perl.c | 9 +++++----
plugins/python/Makefile.am | 4 +++-
plugins/ruby/Makefile.am | 4 +++-
plugins/streaming/Makefile.am | 4 +++-
plugins/vddk/Makefile.am | 4 +++-
plugins/xz/Makefile.am | 4 +++-
20 files changed, 60 insertions(+), 31 deletions(-)
--
2.9.3
2011 Jun 18
0
[LLVMdev] Make dragonegg work with gcc-4.6
...nstitute of Information Science,
Academia Sinica, Taiwan (R.O.C.)
Tel:886-2-2788-3799 #1667
-------------- next part --------------
Index: src/Convert.cpp
===================================================================
--- src/Convert.cpp (revision 133342)
+++ src/Convert.cpp (working copy)
@@ -60,7 +60,7 @@
#include "tree-flow.h"
#include "tree-pass.h"
-extern int get_pointer_alignment (tree exp, unsigned int max_align);
+extern unsigned get_pointer_alignment (tree exp, unsigned int max_align);
extern enum machine_mode reg_raw_mode[FIRST_PSEUDO_REGISTER];
}
@@ -1...
2019 Oct 09
0
[PATCH] drm/nouveau/core/client: make nvkm_uclient_sclass static
...c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/nouveau/nvkm/core/client.c b/drivers/gpu/drm/nouveau/nvkm/core/client.c
index ac671202919e..0c8c55c73b12 100644
--- a/drivers/gpu/drm/nouveau/nvkm/core/client.c
+++ b/drivers/gpu/drm/nouveau/nvkm/core/client.c
@@ -60,7 +60,7 @@ nvkm_uclient_new(const struct nvkm_oclass *oclass, void *argv, u32 argc,
return 0;
}
-const struct nvkm_sclass
+static const struct nvkm_sclass
nvkm_uclient_sclass = {
.oclass = NVIF_CLASS_CLIENT,
.minver = 0,
--
2.23.0
2019 Jun 11
0
[PATCH trivial] mm/balloon_compaction: Grammar s/the its/its/
...---
> mm/balloon_compaction.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/mm/balloon_compaction.c b/mm/balloon_compaction.c
> index ba739b76e6c52e55..17ac81d8d26bcb50 100644
> --- a/mm/balloon_compaction.c
> +++ b/mm/balloon_compaction.c
> @@ -60,7 +60,7 @@ EXPORT_SYMBOL_GPL(balloon_page_enqueue);
>
> /*
> * balloon_page_dequeue - removes a page from balloon's page list and returns
> - * the its address to allow the driver release the page.
> + * its address to allow the driver to release the page.
> * @...
2008 Aug 01
0
[PATCH] pcitest: fix compile warnings
...inux-3.71-6-gb4bf076/com32/modules/pcitest.c
===================================================================
--- syslinux-3.71-6-gb4bf076.orig/com32/modules/pcitest.c 2008-08-01 21:33:01.000000000 +0200
+++ syslinux-3.71-6-gb4bf076/com32/modules/pcitest.c 2008-08-01 21:35:03.000000000 +0200
@@ -60,7 +60,7 @@
} while (0);
void display_pci_devices(struct pci_device_list *pci_device_list) {
- int pci_dev;
+ unsigned int pci_dev;
for (pci_dev=0; pci_dev < pci_device_list->count; pci_dev++) {
struct pci_device *pci_device = &pci_device_list->pci_device[pci_dev];...
2017 Jan 13
0
[PATCH 4/4] When using libtool, use LTLIBICONV instead.
...ise -Wl,--as-needed could fail.
---
src/flac/Makefile.am | 2 +-
src/metaflac/Makefile.am | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/flac/Makefile.am b/src/flac/Makefile.am
index bf3bf468..fe6fa489 100644
--- a/src/flac/Makefile.am
+++ b/src/flac/Makefile.am
@@ -60,7 +60,7 @@ flac_LDADD = \
$(top_builddir)/src/share/replaygain_synthesis/libreplaygain_synthesis.la \
$(top_builddir)/src/libFLAC/libFLAC.la \
$(win_utf8_lib) \
- @LIBICONV@ \
+ @LTLIBICONV@ \
-lm
CLEANFILES = flac.exe
diff --git a/src/metaflac/Makefile.am b/src/metaflac/Makefile.am
inde...
2004 Aug 04
1
pxelinux (2.08 or later) on VMware
...later) waits forever after "boot:" prompt
on vmware (4.52). pxelinux(2.07) works.
After I comment out DO_IDLE in ui.inc (2.08 or later),
it works. but I'm not sure why... (vmware bug?)
Thanks,
Kaz
--- ui.inc.orig Wed Aug 4 00:58:38 2004
+++ ui.inc Wed Aug 4 01:07:39 2004
@@ -60,7 +60,7 @@
cmp dx,ax ; Has the timer advanced?
je tick_loop
pop cx
- DO_IDLE
+ ;DO_IDLE
loop time_loop ; If so, decrement counter
; Timeout!!!!
1999 Nov 22
1
[PATCH] A couple of small fixes for 1.2pre14.
Hi,
This patch fixes a couple of small items in 1.2.pre14:
1. It's ssh-askpass, not scp that was moved to $(libexecdir)/ssh.
2. Make sure that $(libexecdir) exists.
--- openssh-1.2pre14/ChangeLog~ Mon Nov 22 08:11:23 1999
+++ openssh-1.2pre14/ChangeLog Mon Nov 22 09:48:15 1999
@@ -60,7 +60,7 @@
- EGD uses a socket, not a named pipe. Duh.
- Fix includes in fingerprint.c
- Fix scp progress bar bug again.
- - Move scp from ${libdir}/ssh to ${libexecdir}/ssh at request of
+ - Move ssh-askpass from ${libdir}/ssh to ${libexecdir}/ssh at request of
David Rankin <drankin...
2006 Feb 20
1
r40 - trunk/debian
...ev, libjpeg-dev, bzip2, hotplug, bcc, dpatch
+Build-Depends: tetex-bin, tetex-extra, gs-common, debhelper (>= 4), libcurl3-dev | libcurl-dev, dh-kpatches, python-dev, python (>= 2.2), transfig, libsdl1.2-dev, libvncserver-dev, libjpeg-dev, bzip2, bcc, dpatch
Package: xen
Section: misc
@@ -60,7 +60,7 @@
Package: xen-utils
Section: misc
Architecture: i386 amd64
-Depends: xen-hypervisor | xen-hypervisor-pae, python-twisted, python, libxen-python, iproute, hotplug | udev (>= 0.059), ${shlibs:Depends}
+Depends: xen-hypervisor | xen-hypervisor-pae, python-twisted, python, libxen-python...
2013 May 03
0
[PATCH V2] nouveau: Allow 3D accelerators with output ports
...le changed, 1 insertion(+), 1 deletion(-)
V2: Use 0x00ff0000 PCI device mask instead of 0x00fffdff to align
the code with the nouveau kernel driver as requested by Ben.
diff --git a/src/nv_driver.c b/src/nv_driver.c
index 2b74fc6..d504d3c 100644
--- a/src/nv_driver.c
+++ b/src/nv_driver.c
@@ -60,7 +60,7 @@ static Bool NVUnmapMem(ScrnInfoPtr pScrn);
#define NOUVEAU_PCI_DEVICE(_vendor_id, _device_id) \
{ (_vendor_id), (_device_id), PCI_MATCH_ANY, PCI_MATCH_ANY, \
- 0x00030000, 0x00ffffff, 0 }
+ 0x00030000, 0x00ff0000, 0 }
static const struct...
2014 Sep 29
0
[PATCH v2 1/2] Implement realpath()
...ernel.
--- a/usr/include/stdlib.h
+++ b/usr/include/stdlib.h
@@ -92,4 +92,6 @@ static __inline__ int grantpt(int __fd)
return 0; /* devpts does this all for us! */
}
+__extern char *realpath(const char *, char *);
+
#endif /* _STDLIB_H */
--- a/usr/klibc/Kbuild
+++ b/usr/klibc/Kbuild
@@ -60,7 +60,7 @@ klib-y += vsnprintf.o snprintf.o vsprint
send.o recv.o \
access.o chmod.o chown.o dup2.o mknod.o poll.o rename.o stat.o \
lchown.o link.o rmdir.o unlink.o utimes.o lstat.o mkdir.o \
- readlink.o select.o symlink.o pipe.o \
+ readlink.o realpath.o select.o symlink.o pipe.o...
2015 Mar 01
3
[PATCH 0/2] virtio_blk header fixes
Now that QEmu reuses linux virtio headers, we noticed
a typo in the exported virtio block header. Fix it up.
I'd like these merged for 4.0 so that Qemu 2.3 can
alredy get it right.
Michael S. Tsirkin (2):
virtio_blk: typo fix
virtio_blk: fix comment for virtio 1.0
include/uapi/linux/virtio_blk.h | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
--
MST