search for: 930,8

Displaying 9 results from an estimated 9 matches for "930,8".

2012 Apr 05
1
issue with base:::namespaceImportMethods
...I am just misreading the code, but the following patch seems to fix things: Index: src/library/base/R/namespace.R =================================================================== --- src/library/base/R/namespace.R (revision 58917) +++ src/library/base/R/namespace.R (working copy) @@ -930,8 +930,10 @@ namespaceImportMethods <- function(self, ns, vars) { allVars <- character() + generics <- character() + packages <- character() allFuns <- methods:::.getGenerics(ns) # all the methods tables in ns - packages <- attr(allFuns, "package") +...
2007 Apr 18
4
[RFC, PATCH 2/24] i386 Vmi config
...kernel/power/Kconfig source "drivers/acpi/Kconfig" menu "APM (Advanced Power Management) BIOS Support" -depends on PM && !X86_VISWS +depends on PM && !(X86_VISWS || X86_VMI) config APM tristate "APM (Advanced Power Management) BIOS support" @@ -930,8 +958,9 @@ config PCI choice prompt "PCI access mode" - depends on PCI && !X86_VISWS + depends on PCI && !(X86_VISWS || X86_VMI) default PCI_GOANY + ---help--- On PCI systems, the BIOS can be used to detect the PCI devices and determine their configuratio...
2007 Apr 18
4
[RFC, PATCH 2/24] i386 Vmi config
...kernel/power/Kconfig source "drivers/acpi/Kconfig" menu "APM (Advanced Power Management) BIOS Support" -depends on PM && !X86_VISWS +depends on PM && !(X86_VISWS || X86_VMI) config APM tristate "APM (Advanced Power Management) BIOS support" @@ -930,8 +958,9 @@ config PCI choice prompt "PCI access mode" - depends on PCI && !X86_VISWS + depends on PCI && !(X86_VISWS || X86_VMI) default PCI_GOANY + ---help--- On PCI systems, the BIOS can be used to detect the PCI devices and determine their configuratio...
2020 Aug 10
0
[PATCH AUTOSEL 4.14 08/22] drm/nouveau: fix multiple instances of reference count leaks
...et_sync(dev->dev); - if (ret < 0 && ret != -EACCES) + if (ret < 0 && ret != -EACCES) { + pm_runtime_put_autosuspend(dev->dev); return ret; + } get_task_comm(tmpname, current); snprintf(name, sizeof(name), "%s[%d]", tmpname, pid_nr(fpriv->pid)); @@ -930,8 +932,10 @@ nouveau_drm_ioctl(struct file *file, unsigned int cmd, unsigned long arg) long ret; ret = pm_runtime_get_sync(dev->dev); - if (ret < 0 && ret != -EACCES) + if (ret < 0 && ret != -EACCES) { + pm_runtime_put_autosuspend(dev->dev); return ret; + }...
2019 May 07
0
[PATCH v2 1/4] drm: don't set the pci power state if the pci subsystem handles the ACPI bits
...(drm_dev, true); pci_save_state(pdev); pci_disable_device(pdev); pci_ignore_hotplug(pdev); - pci_set_power_state(pdev, PCI_D3cold); + if (drm->runpm_dsm) + pci_set_power_state(pdev, PCI_D3cold); + drm_dev->switch_power_state = DRM_SWITCH_POWER_DYNAMIC_OFF; return ret; } @@ -925,7 +930,8 @@ nouveau_pmops_runtime_resume(struct device *dev) { struct pci_dev *pdev = to_pci_dev(dev); struct drm_device *drm_dev = pci_get_drvdata(pdev); - struct nvif_device *device = &nouveau_drm(drm_dev)->client.device; + struct nouveau_drm *drm = nouveau_drm(drm_dev); + struct nvif_device...
2019 May 07
8
[PATCH v2 0/4] Potential fix for runpm issues on various laptops
CCing linux-pci and Bjorn Helgaas. Maybe we could get better insights on how a reasonable fix would look like. Anyway, to me this entire issue looks like something which has to be fixed on a PCI level instead of inside a driver, so it makes sense to ask the pci folks if they have any better suggestions. Original cover letter: While investigating the runpm issues on my GP107 I noticed that
2018 Jan 13
0
[PATCH] drmmode: update logic for dynamic connectors, paths, and tiles
..., - koutput->prop_values[i]); - } - drmModeFreeProperty(props); - } + drmmode_output->edid_blob = + koutput_get_prop_blob(drmmode->fd, koutput, "EDID"); if (drmmode_output->edid_blob) { ddc_mon = xf86InterpretEDID(output->scrn->scrnIndex, @@ -880,6 +930,8 @@ drmmode_output_get_modes(xf86OutputPtr output) } xf86OutputSetEDID(output, ddc_mon); + drmmode_output_attach_tile(output); + /* modes should already be available */ for (i = 0; i < koutput->count_modes; i++) { Mode = xnfalloc(sizeof(DisplayModeRec)); @@ -900,6 +952,8 @@ drmm...
2007 Jan 23
2
Re: [nut-commits] svn commit r731
...'\n" > + "is deprecated. Use 'LISTEN <address> [<port>]' in 'upsd.conf' instead.\n" > + "See 'man 8 upsd.conf' for more information."); > case 'r': > chroot_path = optarg; > break; > @@ -930,8 +1012,22 @@ > if (argc != 0) > help(progname); > > + /* read data from config files - upsd.conf, ups.conf, upsd.users */ > + conf_load(); > + > setupsignals(); > - setuptcp(); > + > + /* default behaviour if no LISTEN addres has been specified */ > + if (...
2011 Dec 09
10
[PATCH 0/3] Btrfs: add IO error device stats
The goal is to detect when drives start to get an increased error rate, when drives should be replaced soon. Therefore statistic counters are added that count IO errors (read, write and flush). Additionally, the software detected errors like checksum errors and corrupted blocks are counted. An ioctl interface is added to get the device statistic counters. A second ioctl is added to atomically get