search for: 270,7

Displaying 20 results from an estimated 171 matches for "270,7".

Did you mean: 27,7
2005 Aug 04
0
[PATCH 5/11] Fix bug where watch messages didn''t go out to domains, causing them to get stuck.
...reflect xenbus behaviour to exhibit bug. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> diff -r d4ab9ac93104 -r ba5d5bd28edf tools/xenstore/xenstored_core.c --- a/tools/xenstore/xenstored_core.c Thu Aug 4 10:34:26 2005 +++ b/tools/xenstore/xenstored_core.c Thu Aug 4 10:43:03 2005 @@ -270,7 +270,7 @@ out->used = 0; /* Second write might block if non-zero. */ - if (out->hdr.msg.len) + if (out->hdr.msg.len && !conn->domain) return true; } diff -r d4ab9ac93104 -r ba5d5bd28edf tools/xenstore/xs_test.c --- a/tools/xenstore/xs_test.c Thu Aug 4 10:34:...
2012 Mar 23
3
[PATCH 0/3] Prepare nouveau for other switcheroo handlers
While working on a vga_switcheroo handler for Apple's Macbook Pros I stumbled upon a few bugs regarding the usage of nouveau with other switcheroo handlers and module unloading, here are my fixes for them. Andreas Heider (3): drm/nouveau: Initialize has_optimus drm/nouveau: Check dsm on switcheroo unregister drm/nouveau: Unregister switcheroo client on exit
2020 Aug 20
0
[klibc:master] klcc: Treat CC, LD, STRIP as multiple words
...gcc, '--end-group'); } else { - $rv = mysystem($LD, @LDFLAGS, @staticopt, @ldopt, @outopt, @objs, + $rv = mysystem(@LD, @LDFLAGS, @staticopt, @ldopt, @outopt, @objs, @libs, @stdlibpath, '--start-group', @staticlib, $libgcc, '--end-group'); } @@ -270,7 +270,7 @@ if ( $operation ne '' ) { unlink(@rmobjs); if ( $strip && !$rv ) { - $rv = mysystem($STRIP, @STRIPFLAGS, $output); + $rv = mysystem(@STRIP, @STRIPFLAGS, $output); } } diff --git a/klcc/makeklcc.pl b/klcc/makeklcc.pl index 5945eb16..41c5cf46 100644 ---...
2009 Jul 16
1
[PATCH node-image] Removes the explicit setting of the emulator for testing.
...lets libvirt determine which emulator to use. Signed-off-by: Darryl L. Pierce <dpierce at redhat.com> --- autotest.sh | 6 ++---- 1 files changed, 2 insertions(+), 4 deletions(-) diff --git a/autotest.sh b/autotest.sh index c9f8a2d..96a15b5 100755 --- a/autotest.sh +++ b/autotest.sh @@ -270,7 +270,6 @@ define_node () { # flexible options # define defaults, then allow the caller to override them as needed local arch=$(uname -i) - local emulator=$(which qemu-kvm) local serial="true" local vncport="-1" local bootdev='hd' @@ -28...
2020 Apr 23
1
[PATCH 1/1] drm/nouveau: Use generic helper to check _PR3 presence
...ruct pci_dev *parent_pdev; + + *has_pr3 = false; + parent_pdev = pci_upstream_bridge(pdev); + if (parent_pdev) { + if (parent_pdev->bridge_d3) + *has_pr3 = pci_pr3_present(parent_pdev); + else + pci_d3cold_disable(pdev); + } dhandle = ACPI_HANDLE(&pdev->dev); if (!dhandle) @@ -270,7 +249,6 @@ static void nouveau_dsm_pci_probe(struct pci_dev *pdev, acpi_handle *dhandle_out *has_mux = supports_mux; *has_opt = !!optimus_funcs; *has_opt_flags = optimus_funcs & (1 << NOUVEAU_DSM_OPTIMUS_FLAGS); - *has_pr3 = false; if (optimus_funcs) { uint32_t result; @@ -2...
2019 Dec 18
1
[PATCH] docs: exclude dummy.c sources
...,6 @@ common/visit/visit.h common/windows/windows.c common/windows/windows.h customize/crypt-c.c -customize/dummy.c customize/perl_edit-c.c daemon/9p.c daemon/acl.c @@ -202,7 +194,6 @@ df/df.c df/main.c df/output.c df/virt-df.h -dib/dummy.c diff/diff.c edit/edit.c erlang/actions-0.c @@ -270,7 +261,6 @@ fuse/guestunmount.c fuse/test-fuse.c fuse/test-guestmount-fd.c fuse/test-guestunmount-fd.c -get-kernel/dummy.c inspector/inspector.c java/actions-0.c java/actions-1.c @@ -370,7 +360,6 @@ rescue/escape.c rescue/rescue.c rescue/rescue.h rescue/suggest.c -resize/dummy.c ruby/ext/...
2004 Apr 15
0
Multiple compare-dest args
...le ((access(fname, 0) != 0) && compare_dest[i] != NULL) { + pathjoin(fnamecmpdest, sizeof fnamecmpdest, + compare_dest[i], fname); + fname = fnamecmpdest; + i++; } file_checksum(fname,sum,st->st_size); return memcmp(sum, file->u.sum, protocol_version < 21 ? 2 @@ -270,7 +270,7 @@ int statret; char *fnamecmp; char fnamecmpbuf[MAXPATHLEN]; - extern char *compare_dest; + extern char *compare_dest[]; extern int list_only; extern int only_existing; extern int orig_umask; @@ -408,11 +408,15 @@ fnamecmp = fname; - if (statret == -1 && compare_...
2007 Apr 18
4
[RFC, PATCH 2/24] i386 Vmi config
...he kernel to run with a hypervisor present. + The kernel will panic if booted on native hardware. + +config VMI_DEBUG + bool "VMI debugging" + default n + help + Provides extra debugging output and testing of VMI interfaces. + +endmenu + config ACPI_SRAT bool default y @@ -270,7 +295,7 @@ config X86_VISWS_APIC config X86_MCE bool "Machine Check Exception" - depends on !X86_VOYAGER + depends on !(X86_VOYAGER) ---help--- Machine Check Exception support allows the processor to notify the kernel if it detects a problem (e.g. overheating, component fa...
2007 Apr 18
4
[RFC, PATCH 2/24] i386 Vmi config
...he kernel to run with a hypervisor present. + The kernel will panic if booted on native hardware. + +config VMI_DEBUG + bool "VMI debugging" + default n + help + Provides extra debugging output and testing of VMI interfaces. + +endmenu + config ACPI_SRAT bool default y @@ -270,7 +295,7 @@ config X86_VISWS_APIC config X86_MCE bool "Machine Check Exception" - depends on !X86_VOYAGER + depends on !(X86_VOYAGER) ---help--- Machine Check Exception support allows the processor to notify the kernel if it detects a problem (e.g. overheating, component fa...
2020 Sep 22
1
[PATCH] SYSCALLS.def: Add finit_module() system call
...escriptors. Signed-off-by: Nikita Ermakov <sh1r4s3 at mail.si-head.nl> --- usr/klibc/SYSCALLS.def | 1 + 1 file changed, 1 insertion(+) diff --git a/usr/klibc/SYSCALLS.def b/usr/klibc/SYSCALLS.def index c8ac9e0d..7a67b01f 100644 --- a/usr/klibc/SYSCALLS.def +++ b/usr/klibc/SYSCALLS.def @@ -270,6 +270,7 @@ int uname(struct utsname *); int setdomainname(const char *, size_t); int sethostname(const char *, size_t); long init_module(void *, unsigned long, const char *); +long finit_module(int, const char *, int); long delete_module(const char *, unsigned int); int reboot::__reboot(int,...
2002 Feb 11
0
RSYNC 2.5.2 type mismatches in batch.c
...write_char_bufs(fptr[i]->sum); + write_char_bufs((char *)fptr[i]->sum); } } @@ -184,7 +185,7 @@ close(fdb); } -struct file_list *create_flist_from_batch() +struct file_list *create_flist_from_batch(void) { unsigned char flags; @@ -270,7 +271,7 @@ return bytes_read; } -unsigned char read_batch_flags() +unsigned char read_batch_flags(void) { int flags; @@ -348,7 +349,7 @@ if (int_str_len > 0) { read_batch_flist_file(buff, int_str_len); buff[int_str_len] = '\...
2007 Aug 24
0
2 commits - configure.ac vivified/core
...don't call AM_PROG_AS conditionally diff --git a/configure.ac b/configure.ac index f01272d..5210c30 100644 --- a/configure.ac +++ b/configure.ac @@ -52,6 +52,7 @@ dnl (This must come after AM_INIT_AUTOMA AC_PROG_CC AM_PROG_CC_STDC AM_PROG_CC_C_O +AM_PROG_AS AC_HEADER_STDC([]) @@ -270,7 +271,6 @@ AC_ARG_ENABLE(vivified, enable_vivi=$enableval, enable_vivi="no") if test "$enable_vivi" = "yes"; then - AM_PROG_AS MING_REQUIRED=0.4.0.beta5 VIVI_GTK_REQUIRED=2.11.6 PKG_CHECK_MODULES(VIVI, libming >= $MING_REQUIRED gmodule-export-2.0 gtk+-2....
2006 Nov 30
2
[PATCH] ARCH_HAS_DEV_MEM_MMAP_MEM fix
...parse/drivers/char/mem.c Thu Nov 30 15:28:14 2006 -0700 @@ -249,6 +249,7 @@ static pgprot_t phys_mem_access_prot(str } #endif +#ifndef ARCH_HAS_DEV_MEM_MMAP_MEM static int mmap_mem(struct file * file, struct vm_area_struct * vma) { size_t size = vma->vm_end - vma->vm_start; @@ -269,6 +270,7 @@ static int mmap_mem(struct file * file, return -EAGAIN; return 0; } +#endif static int mmap_kmem(struct file * file, struct vm_area_struct * vma) { _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-...
2008 Jul 22
2
[PATCH 1/3] Fix loading of *.lkrn images from gPXE
Attempts to load *.lkrn images were failing with "Not enough memory to load specified image". These images have the su_ramdisk_max header field set to zero, and the code in core/runkernel.inc was limiting MyHighMemSize too early (before the load_high call used to load the main part of the kernel). Signed-off-by: Sergey Vlasov <vsu at altlinux.ru> --- core/runkernel.inc | 13
2004 Sep 28
1
[Patch] rsync-2.6.2: Allow 'port = N' in rsyncd.conf
...rsync-2.6.2/loadparm.c rsync-dmn/loadparm.c --- rsync-2.6.2/loadparm.c Wed Feb 4 02:31:29 2004 +++ rsync-dmn/loadparm.c Tue Sep 28 12:56:51 2004 @@ -104,6 +104,7 @@ char *socket_options; int syslog_facility; int max_verbosity; + int rsync_port; } global; static global Globals; @@ -269,6 +270,7 @@ {"log file", P_STRING, P_GLOBAL, &Globals.log_file, NULL, 0}, {"pid file", P_STRING, P_GLOBAL, &Globals.pid_file, NULL, 0}, {"max verbosity", P_INTEGER, P_GLOBAL, &Globals.max_verbosity, NULL, 0}, + {"po...
2000 Dec 08
2
ext3-0.0.5c released
Hi all, ext3-0.0.5c is now up at: ftp.uk.linux.org:/pub/linux/sct/fs/jfs/ and ftp.*.kernel.org:/pub/linux/kernel/people/sct/ext3/ The most important part of this release is the e2fsprogs: e2fsck now supports the journal changes for metadata-only journaling. Ted, I've changed around the use of jfs* include files in e2fsprogs quite heavily here. In each build directory --- the lib/ext2fs
2011 Nov 06
0
[PATCH] drm/nouveau: add nouveau.vram_limit module option
...ize); + if (tmp != dev_priv->vram_size) { + NV_INFO(dev, "limiting size of VRAM to %d MiB (from %d MiB)\n", + (int)(tmp >> 20), (int)(dev_priv->vram_size >> 20)); + dev_priv->vram_size = tmp; + } +} + int nouveau_mem_detect(struct drm_device *dev) { @@ -255,6 +270,7 @@ nouveau_mem_detect(struct drm_device *dev) dev_priv->vram_size = nv_rd32(dev, NV04_PFB_FIFO_DATA); dev_priv->vram_size &= NV10_PFB_FIFO_DATA_RAM_AMOUNT_MB_MASK; } + nouveau_limit_vram(dev); if (dev_priv->vram_size) return 0; diff --git a/drivers/gpu/drm/nouveau/nv5...
2007 Apr 18
2
[PATCH 1/4] Prep for paravirt: move pagetable includes.
Move header includes for the nopud / nopmd types to the location of the actual pte / pgd type definitions. This allows generic 4-level page type code to be written before the split 2/3 level page table headers are included. Signed-off-by: Zachary Amsden <zach@vmware.com> Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2007 Apr 18
2
[PATCH 1/4] Prep for paravirt: move pagetable includes.
Move header includes for the nopud / nopmd types to the location of the actual pte / pgd type definitions. This allows generic 4-level page type code to be written before the split 2/3 level page table headers are included. Signed-off-by: Zachary Amsden <zach@vmware.com> Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2014 Nov 12
3
[PATCH v2] virtio_balloon: Convert "vballon" kthread into a workqueue
...static void stats_request(struct virtqueue *vq) { struct virtio_balloon *vb = vq->vdev->priv; vb->need_stats_update = 1; - wake_up(&vb->config_change); + queue_work(vb->wq, &vb->wq_work); } static void stats_handle_request(struct virtio_balloon *vb) @@ -265,7 +270,7 @@ static void virtballoon_changed(struct virtio_device *vdev) { struct virtio_balloon *vb = vdev->priv; - wake_up(&vb->config_change); + queue_work(vb->wq, &vb->wq_work); } static inline s64 towards_target(struct virtio_balloon *vb) @@ -287,35 +292,22 @@ static void...