Displaying 20 results from an estimated 600 matches similar to: "Bug#684661: Xen panic on boot"
2012 Aug 17
2
Bug#684661: Xen BUG at pci_amd_iommu.c:33
Hi Wei,
A Debian user has hit this message and reported it in
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=684661
I think it is the BUG_ON in:
struct amd_iommu *find_iommu_for_device(int bdf)
{
BUG_ON ( bdf >= ivrs_bdf_entries );
return ivrs_mappings[bdf].iommu;
}
It looks like ivrs_bdf_entries comes from ACPI. Unfortunately the bug
report
2012 Aug 17
2
Bug#684661: Xen BUG at pci_amd_iommu.c:33
Hi Wei,
A Debian user has hit this message and reported it in
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=684661
I think it is the BUG_ON in:
struct amd_iommu *find_iommu_for_device(int bdf)
{
BUG_ON ( bdf >= ivrs_bdf_entries );
return ivrs_mappings[bdf].iommu;
}
It looks like ivrs_bdf_entries comes from ACPI. Unfortunately the bug
report
2013 Feb 11
25
Xen 4.2.1 boot failure with IOMMU enabled
Hi all
I already posted about this problem on xen-users some time ago
(http://markmail.org/message/sbgtyjqh6bzmqx4s) but I couldn''t
resolve my problem using help from people on xen-users, so I''m posting here .
I have a problem with enabling IOMMU on Xen 4.2.1. When I enable it in BIOS
and in grub.conf using iommu=1 kernel option, my machine cannot boot.
I get a following error
2011 Mar 25
2
[RFC PATCH 2/3] AMD IOMMU: Implement p2m sharing
--
Advanced Micro Devices GmbH
Sitz: Dornach, Gemeinde Aschheim,
Landkreis München Registergericht München,
HRB Nr. 43632
WEEE-Reg-Nr: DE 12919551
Geschäftsführer:
Alberto Bozzo, Andrew Bowd
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
2013 Jan 04
3
Xen 4.2.1 boot failure with IOMMU enabled
Hi all
I have a problem with enabling IOMMU on Xen 4.2.1. When I enable it in BIOS
and in grub.conf using iommu=1 kernel option, my machine cannot boot.
I get a following error on serial console:
(XEN) ****************************************
(XEN) Panic on CPU 0:
(XEN) Xen BUG at pci_amd_iommu.c:35
(XEN) ****************************************
(XEN)
(XEN) Reboot in five seconds...
Error says
2009 Jul 30
2
weight median by count for multiple records
Hello everyone,
I have a .csv file with the following format:
uniqueID SubjectID Distance_miles Tag
1 1001 5.5 3
2 1001 7 1
3 1001 6.5 1
4 1001 5 1
5 1002
2010 Feb 21
2
3.3.10 <-> AD 2008 R2 very slow
Hi again,
I changed from 3.4.5 to 3.3.10 after an AD upgrade to 2008R2 and prinitng
is working mor ore less but it is incredibly sloooow. My server has no
remarkable load so it is not due to hardware bottlenecks. Are there any
ways to 'tune' 3.3.10 or any tricks to make it faster ?
cheers
~christoph
--
/* Christoph Beyer | Office: Building 2b / 23 *\
* DESY
2013 Nov 17
1
order() function, decreasing=TRUE unexpected behaviour
There appears to be an issue with the decreasing=TRUE option on the order() function that indicates either a bug or perhaps a design flaw (potentially flawed because I would suggest the majority of users would expect different behaviour).
# demonstration of problem:
x <- c(2,1,3,4,5)
order(x)
order(x, decreasing=TRUE)
order(x) correctly reports the order as:
2 1 3 4 5
I expected the result
2012 Oct 24
5
[PATCH v3] IOMMU: keep disabled until iommu_setup() is called
The iommu is enabled by default when xen is booting and later disabled
in iommu_setup() when no iommu is present.
But under some circumstances iommu code can be called before
iommu_setup() is processed. If there is no iommu available xen crashes.
This can happen for example when panic(...) is called as introduced
with the patch "x86-64: detect processors subject to AMD erratum #121
and
2002 Sep 13
2
new feature in 2.2.6 ?
Hi Jerry et al,
will the 2.2.6 release show the printers in the 'add-new-printer-wizzard'
on the client like the WINDOWS server do ?
I'm not sure if you know what I mean, so here is a little illustration:
-----------------------------
| NTSERVER |
| \\ntserver\printer1 |
| \\ntserver\printer2 |
| \\ntserver\printer3 |
| SAMBASERVER |
2009 Jul 01
2
net ads join -> strong(er) authentication required
Hi,
my windows folks migrated to AD 2008 R2, resulting in the following error
message when trying to join the domain:
[HOST] /etc $ /opt/csw/bin/net ads join -U <USER>
Enter <USER>'s password:
[2009/07/01 11:51:28, 0] libads/sasl.c:ads_sasl_spnego_bind(819)
kinit succeeded but ads_sasl_spnego_krb5_bind failed: Strong(er)
authentication required
Failed to join domain: failed
2010 May 07
1
3.5.2 connecting to nmb alias without password
Hi there,
I use 3.5.2 with netbios aliases in security mode ADS. When I connect to
the primary netbios name from a windows host I get the samba machine right
away.
Connecting to the netbios alias (which is on a differen IP address) I have
to type name and pwd to get the connection.
DNS entries are OK.
Is there any way to get rid of the pwd question, I had the same setup with
3.0.20 for a
2007 Aug 22
2
Need a variant of rbind for datasets with different numbers of columns
Hello. I am looking for a function that will allow me to paste rows
together without regard for the numbers of columns in the datasets to
be joined. The only columns where it matters if they are aligned
correctly are at the beginning - the rest of the columns represent
differing numbers of ICD9 (disease) codes reported by each
person(record) at a health visit. They are in no particular order.
2006 Aug 28
2
S4 classes and objects -- fixed structure? No...
Hello.
Suppose you define a new S4-class, say
> setClass("track", representation(x="numeric", y="numeric"))
Don't worry if you have a deja vu, it's from the help page.
Your new class is said to have a fixed structure: two slots, x, and y,
and that should apply to all objects you construct as members of that class.
> tr <- new( "track" )
2010 Feb 18
3
AD 2008 R2 vs. samba 3.4.5
Hi there,
I almot exlusively use samba for printing in a semi large scale (>2.000
windows hosts & >500 printers). I have been running 3.0.20 for a long time
and was quite happy with it.
Unfortunately my windows fellows have now updated to AD 2008 R2 and I
experienced some immediate problems with encryptions types so I updated to
3.4.5 which is not really working for me.
I see a
2006 Jul 19
30
I am a newbie and I would like some help deciding what operating system
I would like first to introduce my self to the community. I am Steve
Beyer and I am interested in learning Ruby, ROR, and how to set up a
production server. I am going to use OSX for my client/developement
system but I would like to get some advice on what operating system
you would recommend for a production server. I want to use Mongrel
to start and then move up the ladder as my
2012 Jan 05
9
[PATCHv2 0 of 2] Deal with IOMMU faults in softirq context.
Hello everyone,
Reposting with after having applied the (minor) fixes suggested by Wei
and Jan.
Allen, if you can tell us what you think about this, or suggest someone
else to ask some feedback to, if you''re no longer involved with VT-d,
that would be great! :-)
--
As already discussed here [1], dealing with IOMMU faults in interrupt
context may cause nasty things to happen, up to
2005 Oct 25
3
error from make: gcc -shared -L/usr/local/lib64 ... relocation R_X86_64_32...
I hope someone can point me, a newcomer to building R as well as 64-bit R, in
a useful direction. I have a dual Opteron 275 box running RedHat EL4. I ran
configure successfully, and, then, get the following error while running make:
make[4]: Entering directory `/tmp/R-2.2.0/src/modules/lapack'
g77 -fPIC -g -O2 -ffloat-store -c dlamc.f -o dlamc.lo
g77 -fPIC -g -O2 -c dlapack0.f -o
2012 Jun 14
0
xen_4.1.3~rc1+hg-20120614.a9c0a89c08f2-1_amd64.changes ACCEPTED into unstable
Accepted:
libxen-4.1_4.1.3~rc1+hg-20120614.a9c0a89c08f2-1_amd64.deb
to main/x/xen/libxen-4.1_4.1.3~rc1+hg-20120614.a9c0a89c08f2-1_amd64.deb
libxen-dev_4.1.3~rc1+hg-20120614.a9c0a89c08f2-1_amd64.deb
to main/x/xen/libxen-dev_4.1.3~rc1+hg-20120614.a9c0a89c08f2-1_amd64.deb
libxen-ocaml-dev_4.1.3~rc1+hg-20120614.a9c0a89c08f2-1_amd64.deb
to
2009 Jun 23
1
3.3.5 not compiling on solaris 10 (libtalloc.so.1)
Hi,
I found some hints but no solution that worked for me actually, I try to
compile 3.3.5 on Solaris 10 and it does not find libtalloc:
Linking shared library bin/libtalloc.so.1
/usr/ccs/bin/ld: cannot open linker script file
/scratch/samba-3.3.5/source/exports/libtalloc.so.1: No such file or
directory
gmake: *** [bin/libtalloc.so.1] Error 1
Obviously because it's not there :( :