Bug#700445: libvirt has an wrong/inconsistend view on cpus

2013-02-12 Thread Philipp Schmidt
Package: libvirt-bin
Version: 0.9.12-6~bpo60+1
Severity: important

KVM-Hosts only use the first 6 of the available 12 cores on my machine 
(HP ProLiant DL385 G7), but i can use taskset to manually pin the qemu-kvm 
to the remaining cores.

root@saiga:/home/phils# virsh nodeinfo
CPU model:   x86_64
CPU(s):  12
CPU frequency:   2300 MHz
CPU socket(s):   1
Core(s) per socket:  6
Thread(s) per core:  1
NUMA cell(s):1
Memory size: 33017248 KiB

root@saiga:/home/phils# cat /proc/cpuinfo | grep processor | wc -l
12

root@saiga:/home/phils# virsh vcpupin somehost --vcpu 0 6-11 
error: Physical CPU 6 doesn't exist.

-- System Information:
Debian Release: 6.0.6
  APT prefers stable
  APT policy: (600, 'stable'), (100, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-5-amd64 (SMP w/12 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages libvirt-bin depends on:
ii  adduser3.112+nmu2add and remove users and groups
ii  gettext-base   0.18.1.1-3GNU Internationalization utilities
ii  libavahi-client3   0.6.27-2+squeeze1 Avahi client library
ii  libavahi-common3   0.6.27-2+squeeze1 Avahi common library
ii  libblkid1  2.17.2-9  block device id library
ii  libc6  2.11.3-4  Embedded GNU C Library: Shared lib
ii  libcap-ng0 0.6.4-1   An alternate posix capabilities li
ii  libdbus-1-31.2.24-4+squeeze1 simple interprocess messaging syst
ii  libdevmapper1.02.1 2:1.02.48-5   The Linux Kernel Device Mapper use
ii  libgcrypt111.4.5-2   LGPL Crypto library - runtime libr
ii  libgnutls262.12.20-4 GNU TLS library - runtime library
ii  libnl1 1.1-6 library for dealing with netlink s
ii  libnuma1   2.0.8-1   Libraries for controlling NUMA pol
ii  libparted0debian1  2.3-5 The GNU Parted disk partitioning s
ii  libpcap0.8 1.1.1-2+squeeze1  system interface for user-level pa
ii  libpciaccess0  0.12.0-1  Generic PCI access library for X
ii  libreadline6   6.1-3 GNU readline and history libraries
ii  libsasl2-2 2.1.23.dfsg1-7Cyrus SASL - authentication abstra
ii  libudev0   164-3 libudev shared library
ii  libuuid1   2.17.2-9  Universally Unique ID library
ii  libvirt0   0.9.12-6~bpo60+1  library for interfacing with diffe
ii  libxenstore3.0 4.0.1-5.5 Xenstore communications library fo
ii  libxml22.7.8.dfsg-2+squeeze6 GNOME XML library
ii  libyajl1   1.0.12-2  Yet Another JSON Library
ii  logrotate  3.7.8-6   Log rotation utility

Versions of packages libvirt-bin recommends:
ii  bridge-utils1.4-5Utilities for configuring the Linu
ii  dmidecode   2.9-1.2  Dump Desktop Management Interface 
pn  dnsmasq-basenone   (no description available)
pn  ebtablesnone   (no description available)
ii  gawk1:3.1.7.dfsg-5   GNU awk, a pattern scanning and pr
ii  iproute 20100519-3   networking and traffic control too
ii  iptables1.4.8-3  administration tools for packet fi
pn  libxml2-utils   none   (no description available)
ii  netcat-openbsd  1.89-4   TCP/IP swiss army knife
ii  parted  2.3-5The GNU Parted disk partition resi
ii  qemu1.1.2+dfsg-2~bpo60+1 fast processor emulator
ii  qemu-kvm1.1.2+dfsg-5~bpo60+1 Full virtualization on x86 hardwar

Versions of packages libvirt-bin suggests:
pn  policykit-1   none (no description available)
pn  radvd none (no description available)

-- no debconf information


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#630130: kpartx creates wrong partition mappings for gpt with sector size != 512bytes

2011-06-11 Thread Philipp Schmidt
Package: kpartx
Version: 0.4.8+git0.761c66f
Severity: important
Tags: upstream

Hello,

kpartx creates wrong partiton mappings for gpt partition tables when the
sector size ist not 512 bytes (e.g. 4k exported by an fcal array). This
may lead to data corruption when trying to write to the created devices.

I have attached a patch fixing the problem.

--- gpt.c.orig  2009-08-04 23:34:22.0 +0200
+++ gpt.c   2011-06-11 12:09:29.0 +0200
@@ -619,6 +619,7 @@
uint32_t i;
int n = 0;
int last_used_index=-1;
+   int sector_size_mul = get_sector_size(fd)/512;
 
if (!find_valid_gpt (fd, gpt, ptes) || !gpt || !ptes) {
if (gpt)
@@ -634,9 +635,9 @@
sp[n].size = 0;
n++;
} else {
-   sp[n].start = __le64_to_cpu(ptes[i].starting_lba);
-   sp[n].size  = __le64_to_cpu(ptes[i].ending_lba) -
-   __le64_to_cpu(ptes[i].starting_lba) + 1;
+   sp[n].start = 
__le64_to_cpu(ptes[i].starting_lba)*sector_size_mul;
+   sp[n].size  = (__le64_to_cpu(ptes[i].ending_lba) -
+   __le64_to_cpu(ptes[i].starting_lba) + 
1)*sector_size_mul;
 last_used_index=n;
n++;
}



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#560084: libnet-ldap-perl: Process crashing when trying to issue more then one query over an gssapi/ldap connection

2009-12-08 Thread Philipp Schmidt
Package: libnet-ldap-perl
Version: 1:0.36-1
Severity: important

Hello,

I have an adduser-script for ldap and kerberos, which works fine with 
libnet-ldap-perl 1:0.34-1, but not with any newer version.
The script uses SASL/GSSAPI authentication to bind to the ldap server.

After some debugging, I found out that the process crshes with SIGPIPE
when i issue more then one ldap query over the same connection.

-- System Information:
Debian Release: 5.0.3
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.18
Locale: LANG=C, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages libnet-ldap-perl depends on:
ii  libconvert-asn1-perl 0.21-1  Perl module for encoding and decod
ii  libwww-perl  5.813-1 WWW client/server library for Perl
ii  perl [libmime-base64-per 5.10.0-19lenny2 Larry Wall's Practical Extraction 

libnet-ldap-perl recommends no packages.

Versions of packages libnet-ldap-perl suggests:
ii  libauthen-sasl-perl  1:0.39-1A Client interface to LDAP servers
un  libio-socket-ssl-perlnone  (no description available)
ii  liburi-perl  1.35.dfsg.1-1   Manipulates and accesses URI strin
ii  libxml-parser-perl   2.36-1.1+b1 Perl module for parsing XML files
pn  libxml-sax-perl  none  (no description available)
ii  perl [libdigest-md5-perl 5.10.0-19lenny2 Larry Wall's Practical Extraction 

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#514014: sysutils: Split package names and their description incocnsistent

2009-02-03 Thread Philipp Schmidt
Package: sysutils
Version: 2.0.1
Severity: minor

The package description says: 

  * tofromdos - Converts DOS - Unix text files via fromdos/dos2unix /
  todos/unix2dos, aka tofrodos

plase ether change package name tofrodos to tofromdos or fix it here...
It's all abount one m ;-)

-- System Information:
Debian Release: 5.0
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-1-686 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages sysutils depends on:
ii  libncurses5   5.7+20081213-1 shared libraries for terminal hand

sysutils recommends no packages.

sysutils suggests no packages.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#499161: libapache2-svn: HTTP-access via SVN-client stops working after upgrade from etch

2008-09-16 Thread Philipp Schmidt
Package: libapache2-svn
Version: 1.5.1dfsg1-1
Severity: important

After upgrade from etch to lenny, libapache2-svn stops to provide access
for SVN-clients. Updates/checkouts are denied with the following message:

svn: PROPFIND request failed on '/~philipp/svn/xxx'
svn: PROPFIND of '/~philipp/svn/xxx': 403 Forbidden (https://xxx)

DAV-access via web-browser is still possible!

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-1-686 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages libapache2-svn depends on:
ii  apache2.2-common2.2.9-7  Apache HTTP Server common files
ii  libc6   2.7-13   GNU C Library: Shared libraries
ii  libsvn1 1.5.1dfsg1-1 Shared libraries used by Subversio

libapache2-svn recommends no packages.

Versions of packages libapache2-svn suggests:
pn  db4.6-utilnone (no description available)

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#414450: Seems to be an IPv6-Problem

2007-03-12 Thread Philipp Schmidt
The Problem only occurs if both (Proxy/Backend) have IPv6 enabled, and
Patch in #409521 fixes the problem.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#414450: Allow and Deny From use the untranslated IP-Adress

2007-03-11 Thread Philipp Schmidt
Package: libapache2-mod-rpaf
Version: 0.5-2.1
Severity: normal

The translation X-Forwarded-For to REMOTE-HOST works (e.g. for
CGI-Scripts, logs, etc) but does not influence access control via
Allow From or Deny From Directives, which ist a slightly 
inconsistent behavioure.

The bug is also described here:
http://www.apsis.ch/pound/pound_list/archive/2007/2007-01/1169244573000/index_html?fullMode=1#1169947453000



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#392028: redhat-cluster: Package unuseable without built tree

2006-10-09 Thread Philipp Schmidt
Package: redhat-cluster
Version: 1.02.00-8
Severity: grave
Justification: renders package unusable

The ccs-binaries built with this package search the required
magma-plugins in the original built directory. The binary packages are
unuseable because of this problem. If the built directory is removed
after building from source package, the package stops working.

This bus ist identical to #381434 and #374541 and renders the package
unuseable in production envirements.

-- System Information:
Debian Release: Sid
Architecture: amd64
Kernel: Linux 2.6.18-1-xen-amd64
Locale: LANG=C, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]