search for: isconfig

Displaying 5 results from an estimated 5 matches for "isconfig".

Did you mean: ifconfig
2007 Jan 05
10
[PATCH 1/7] Fix pygrub path on Solaris
Fix for pygrub path on Solaris. Signed-off-by: John Levon <john.levon@sun.com> diff --git a/tools/python/xen/xend/XendDomainInfo.py b/tools/python/xen/xend/XendDomainInfo.py --- a/tools/python/xen/xend/XendDomainInfo.py +++ b/tools/python/xen/xend/XendDomainInfo.py @@ -37,7 +37,7 @@ from xen.util.blkif import blkdev_uname_ from xen.util.blkif import blkdev_uname_to_file from xen.util
2012 Jul 19
2
[PATCH] pygrub: add syslog support to pygrub
...1:59:53 ovs030 [2012-07-19 11:59:53,508 7112] ERROR (pygrub:892) Unable to find partition containing kernel ''7112'' is the pygrub PID, so we can distinguish each process. Also in this patch: 1). Fix indentation for some lines. 2). Removed some trailing spaces. 3). Mark ''isconfig'' a duplicate option of ''debug'' and remove the currently broken code: if isconfig: chosencfg = run_grub(file, entry, fs, incfg["args"]) ''fs'' is not defined yet here, so it will raise an exception. Signed-off-by: Zhigang Wa...
2007 Nov 08
0
pygrub fails to load sometimes?? memory leak??
...load consistently. When I start a domU, I sometimes get this. Error: Boot loader didn''t return any data! ... and nothing else. When I look in the xend-debug.log log, I see this. Traceback (most recent call last): File "/usr/bin/pygrub", line 481, in ? g = Grub(file, isconfig) File "/usr/bin/pygrub", line 151, in __init__ self.read_config(file, isconfig) File "/usr/bin/pygrub", line 330, in read_config raise RuntimeError, "we couldn''t find grub config file in the image provided." RuntimeError: we couldn''t find...
2012 Oct 19
3
[PATCH] pygrub: Add option to list grub entries
..., "help", "output=", "output-format=", "output-directory=", "entry=", "kernel=", "ramdisk=", "args=", "isconfig", "debug"]) @@ -753,6 +763,7 @@ if __name__ == "__main__": output = None entry = None interactive = True + list_entries = False isconfig = False debug = False not_really = False @@ -771,6 +782,8 @@ if __name__ == "__main__":...
2020 Jul 17
0
[PATCH V2 5/6] ifcvf: replace irq_request/free with vDPA helpers
...->vdpa; > int vector, i, ret, irq; > > ret = pci_alloc_irq_vectors(pdev, IFCVF_MAX_INTR, > @@ -73,6 +75,10 @@ static int ifcvf_request_irq(struct ifcvf_adapter *adapter) > pci_name(pdev)); > vector = 0; > irq = pci_irq_vector(pdev, vector); > + /* This isconfig interrupt, config accesses all go Missing a blank between is and config. Thanks > + * through userspace, so no need to setup > + * config interrupt offloading. > + */ > ret = devm_request_irq(&pdev->dev, irq, > ifcvf_config_changed, 0, > v...