[Bug 1162555] Re: repeatable system crash related to bttv kernel module

2013-04-20 Thread Michael Williamson
This may be unrelated, but on the same computer, using a industrial
firewire camera and a firewire PCI board instead of the bttv device,
there is also something wrong.

Displaying video from the camera using the program coriander, the frames
from the camera are sometimes out of order, as if the video buffers are
not refreshed properly, and the frame rate gets progressively slower
during operation. The coriander program pops-up a window after a minute
that says Could not get a camera bandwidth usage. Bus usage might be
inaccurate. While the coriander is running, top reports CPU ~50% idle.

Is my computer motherboard just bad?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1162555

Title:
  repeatable system crash related to bttv kernel module

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1162555/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1162555] Re: repeatable system crash related to bttv kernel module

2013-04-04 Thread Michael Williamson
I intend to perform another test, since I believe that the version that I 
installed from CD was 32-bit.
I will download and install Ubuntu 12.04 64-bit (kernel 3.2.0-39).

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1162555

Title:
  repeatable system crash related to bttv kernel module

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1162555/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1162555] Re: repeatable system crash related to bttv kernel module

2013-04-04 Thread Michael Williamson
I was correct that I had inadvertently installed a 32-bit version. I did not 
know that it was possible to
install a 32-bit version on a 64-bit computer. 

Anyway, using a 64-bit version of ubuntu 12.04, the bug exists in the
newer kernel (3.5.0-23) too.

# uname -a
Linux michael-MS-7596 3.5.0-23-generic #35~precise1-Ubuntu SMP Fri Jan 25 
17:13:26 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux

And after the system crash, the relevant lines are:

# grep test1 /var/log/syslog
Apr  4 17:50:33 michael-MS-7596 kernel: [ 1664.381910] test1: Corrupted page 
table at address 7f44ec76f000
Apr  4 17:50:33 michael-MS-7596 kernel: [ 1664.383402] Pid: 3448, comm: test1 
Not tainted 3.5.0-23-generic #35~precise1-Ubuntu MICRO-STAR INTERNATIONAL 
CO.,LTD MS-7596/760GM-E51(MS-7596)
Apr  4 17:50:33 michael-MS-7596 kernel: [ 1664.384897] Process test1 (pid: 
3448, threadinfo 8800c29a8000, task 8800c2c31700)

I should add that although the program xawtv runs and does not crash the 
computer, the displayed video is partially
corrupted.

An excerpt of the program test1.c is below:

   ...

   // open /dev/mem
   fd_mem = open (/dev/mem, O_RDWR | O_SYNC);
   if (fd_mem  0) {
  fprintf (stderr, failed opening \/dev/mem\ (must run as root)\n);
  exit (-1);
   }


   //- initialize all Bt878 video inputs
   n_bt = 0;
   for (i = 0; i  1; i++) {
  //- read BT878 PCI configuration space (I/O space)
  sprintf (s, /sys/class/video4linux/video%d/device/config, i);
  fp = fopen (s, r);
  if (fp == NULL) continue;

  fseek (fp, 0x00, SEEK_SET);   // Vendor ID/Device ID
  fread (j, 1, 4, fp);
  if (j != 0x036E109E) {// not Bt878
 fclose (fp);
 continue;
  }

  fseek (fp, 0x10, SEEK_SET);   // Base Address Register 0 (memory 
space registers)
  fread (j, 1, 4, fp);
  j = 0xF000;  // The low BAR bits have special 
functions!
  fclose (fp);

  // mmap memory space registers
  addr = (off_t) j; // The low BAR bits have special 
functions!
  memsize = 4096;
  mem = mmap (0, memsize, PROT_READ | PROT_WRITE, MAP_SHARED, fd_mem, addr);
  if (mem == MAP_FAILED) {
 perror (mmap);
 continue;
  }

//-- The computer crashes at the following memcpy line.

  memcpy (c, mem, 1);  // DSTATUS
  if ((0x80  c) == 0) {
 fprintf (stderr, No video signal \/dev/video%d\\n, i);
  }

  //--- open /dev/videoi
  sprintf (s1, /dev/video%d, i);
  fd = open (s1, O_RDWR);
  if (fd  0) {
 fprintf (stderr, open video failed);
 munmap (mem, memsize);
 continue;
  }
   ...

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1162555

Title:
  repeatable system crash related to bttv kernel module

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1162555/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1162555] Re: repeatable system crash related to bttv kernel module

2013-04-03 Thread Michael Williamson
Tentatively, the system crash does not occur after installing Ubuntu
12.04 from a CD on the original system that exhibited the crashing.

After installing from a CD, it shows:

 # uname -a
Linux michael-MS-7596 3.2.0-39-generic-pae #62-Ubuntu SMP Wed Feb 27 22:25:11 
UTC 2013 i686 athlon i386 GNU/Linux

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1162555

Title:
  repeatable system crash related to bttv kernel module

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1162555/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1162555] Re: repeatable system crash related to bttv kernel module

2013-04-02 Thread Michael Williamson
Well on second look, the two Ubuntu versions are almost the same kernel, I 
guess. 
Is it possible that this bug got fixed between versions 3.2.0-33 and 3.2.0-36?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1162555

Title:
  repeatable system crash related to bttv kernel module

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1162555/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1162555] Re: repeatable system crash related to bttv kernel module

2013-04-01 Thread Michael Williamson
The crashing is resolved upon moving the video PCI card to a different
computer (32-bit rather than 64-bit) running the same Ubuntu.

# uname -a
Linux sparky 3.2.0-36-generic-pae #57-Ubuntu SMP Tue Jan 8 22:01:06 UTC 2013 
i686 i686 i386 GNU/Linux

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1162555

Title:
  repeatable system crash related to bttv kernel module

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1162555/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1162555] [NEW] repeatable system crash related to bttv kernel module

2013-03-31 Thread Michael Williamson
Public bug reported:

Hi, I have a C program using a bttv video PCI card that consistently
crashes my computer with the following syslog messages:

# grep test1 /var/log/syslog

Mar 31 12:43:31 michael-MS-7596 kernel: [ 1287.254153] test1: Corrupted page 
table at address 7f86cf93d000
Mar 31 12:43:31 michael-MS-7596 kernel: [ 1287.256004] Pid: 2197, comm: test1 
Not tainted 3.2.0-33-generic #52-Ubuntu MICRO-STAR INTERNATIONAL CO.,LTD 
MS-7596/760GM-E51(MS-7596)
Mar 31 12:52:10 michael-MS-7596 kernel: [  467.417529] test1: Corrupted page 
table at address 7f99f92f4000
Mar 31 12:52:10 michael-MS-7596 kernel: [  467.419395] Pid: 2111, comm: test1 
Not tainted 3.2.0-33-generic #52-Ubuntu MICRO-STAR INTERNATIONAL CO.,LTD 
MS-7596/760GM-E51(MS-7596)


# uname -a

Linux michael-MS-7596 3.2.0-33-generic #52-Ubuntu SMP Thu Oct 18
16:29:15 UTC 2012 x86_64 x86_64 x86_64 GNU/Linux

Running the video display program 'xawtv' does not crash the computer
using the same device.

I can provide more information, including the program source code and
crash location, if needed.

Thanks,
-Mike

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: linux-image-3.2.0-33-generic 3.2.0-33.52
ProcVersionSignature: Ubuntu 3.2.0-33.52-generic 3.2.31
Uname: Linux 3.2.0-33-generic x86_64
AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24.
ApportVersion: 2.0.1-0ubuntu15
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC1:  michael1602 F pulseaudio
 /dev/snd/controlC0:  michael1602 F pulseaudio
CRDA: Error: command ['iw', 'reg', 'get'] failed with exit code 1: nl80211 not 
found.
Card0.Amixer.info:
 Card hw:0 'SB'/'HDA ATI SB at 0xfe7f irq 16'
   Mixer name   : 'Realtek ALC889'
   Components   : 'HDA:10ec0889,14627596,0014'
   Controls  : 46
   Simple ctrls  : 22
Card1.Amixer.info:
 Card hw:1 'HDMI'/'HDA ATI HDMI at 0xfe9e8000 irq 19'
   Mixer name   : 'ATI RS690/780 HDMI'
   Components   : 'HDA:1002791a,00791a00,0010'
   Controls  : 4
   Simple ctrls  : 1
Card1.Amixer.values:
 Simple mixer control 'IEC958',0
   Capabilities: pswitch pswitch-joined penum
   Playback channels: Mono
   Mono: Playback [on]
CurrentDmesg:
 [   13.131613] r8169 :02:00.0: eth0: link up
 [   13.132150] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
 [   23.392080] eth0: no IPv6 routers present
Date: Sun Mar 31 13:35:33 2013
HibernationDevice: RESUME=UUID=0714836c-1057-457e-b50a-323bb93b7db4
InstallationMedia: Ubuntu 12.04.1 LTS Precise Pangolin - Release amd64 
(20120823.1)
IwConfig:
 lono wireless extensions.
 
 eth0  no wireless extensions.
MachineType: MICRO-STAR INTERNATIONAL CO.,LTD MS-7596
MarkForUpload: True
ProcEnviron:
 TERM=xterm
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcFB: 0 radeondrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.2.0-33-generic 
root=UUID=9f75f797-f438-42ba-85a3-fef3203ce77b ro quiet splash vt.handoff=7
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
RelatedPackageVersions:
 linux-restricted-modules-3.2.0-33-generic N/A
 linux-backports-modules-3.2.0-33-generic  N/A
 linux-firmware1.79.1
RfKill:
 
SourcePackage: linux
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 08/08/2012
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: V3.5
dmi.board.asset.tag: To Be Filled By O.E.M.
dmi.board.name: 760GM-E51(MS-7596)
dmi.board.vendor: MICRO-STAR INTERNATIONAL CO.,LTD
dmi.board.version: 1.0
dmi.chassis.asset.tag: To Be Filled By O.E.M.
dmi.chassis.type: 3
dmi.chassis.vendor: MICRO-STAR INTERNATIONAL CO.,LTD
dmi.chassis.version: 1.0
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrV3.5:bd08/08/2012:svnMICRO-STARINTERNATIONALCO.,LTD:pnMS-7596:pvr1.0:rvnMICRO-STARINTERNATIONALCO.,LTD:rn760GM-E51(MS-7596):rvr1.0:cvnMICRO-STARINTERNATIONALCO.,LTD:ct3:cvr1.0:
dmi.product.name: MS-7596
dmi.product.version: 1.0
dmi.sys.vendor: MICRO-STAR INTERNATIONAL CO.,LTD

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: Confirmed


** Tags: amd64 apport-bug precise

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1162555

Title:
  repeatable system crash related to bttv kernel module

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1162555/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1018285] Re: Redirects incorrectly set Location header in response when Host header is set in request

2012-07-04 Thread Michael Williamson
I tried adding the line UseCanonicalPhysicalPort off to both
apache2.conf and to the site configuration (inside the virtualhost
declaration), but the port is still included in the Location header.
Just to be sure, I also tried UseCanonicalName off, but it didn't make
any difference.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to apache2 in Ubuntu.
https://bugs.launchpad.net/bugs/1018285

Title:
  Redirects incorrectly set Location header in response when Host header
  is set in request

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apache2/+bug/1018285/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1018285] Re: Redirects incorrectly set Location header in response when Host header is set in request

2012-07-04 Thread Michael Williamson
I tried adding the line UseCanonicalPhysicalPort off to both
apache2.conf and to the site configuration (inside the virtualhost
declaration), but the port is still included in the Location header.
Just to be sure, I also tried UseCanonicalName off, but it didn't make
any difference.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1018285

Title:
  Redirects incorrectly set Location header in response when Host header
  is set in request

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apache2/+bug/1018285/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1018285] [NEW] Redirects incorrectly set Location header in response when Host header is set in request

2012-06-27 Thread Michael Williamson
Public bug reported:

When Apache sends a 301 redirect and the Host header in the request has
an implicit port, it incorrectly uses the Host header of the request and
the port that Apache is running on to set the Location header.

Steps to reproduce:
  * Get Apache to serve up a directory with a sub-directory blah on a 
particular port, say, 8080.
  * Access the URL http://localhost:8080/blah; (note no trailing slash) with 
the Host header Host: example.com.
  * Note that the Location header in the response is Location: 
http://example.com:8080/blah/; rather than Location http://example.com/blah/; 
as it should be.

Expected behaviour:
  * A location header that uses the Host header only, rather than combining the 
Host header and the port Apache is running on.

If the Host header has a port explicitly set, Apache behaves correctly
e.g. if the Host header is Host: example.com:8090, then the Location
header in the response is Location: http://example.com:8090/blah/;.

$ apt-cache policy apache2
apache2:
  Installed: 2.2.22-1ubuntu1
  Candidate: 2.2.22-1ubuntu1
  Version table:
 *** 2.2.22-1ubuntu1 0
500 http://gb.archive.ubuntu.com/ubuntu/ precise/main amd64 Packages
100 /var/lib/dpkg/status


$ lsb_release -rd
Description:Ubuntu 12.04 LTS
Release:12.04

** Affects: apache2 (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to apache2 in Ubuntu.
https://bugs.launchpad.net/bugs/1018285

Title:
  Redirects incorrectly set Location header in response when Host header
  is set in request

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apache2/+bug/1018285/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1018285] Re: Redirects incorrectly set Location header in response when Host header is set in request

2012-06-27 Thread Michael Williamson
It looks like this has been fixed in a later version of Apache -- I've
just compiled 2.4.2 from source and it doesn't appear to have the
problem.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to apache2 in Ubuntu.
https://bugs.launchpad.net/bugs/1018285

Title:
  Redirects incorrectly set Location header in response when Host header
  is set in request

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apache2/+bug/1018285/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1018285] Re: Redirects incorrectly set Location header in response when Host header is set in request

2012-06-27 Thread Michael Williamson
 Is this really a bug, or a new feature in a future Apache version?

 Traditionally, Apache used to issue redirects based on its own knowledge of
 its own name (and presumably port), rather than using the Host header, didn't
 it?

If that's the case, then surely Apache should ignore the Host header
entirely, rather than using the hostname from the Host header, and the
port Apache is running on? The fact that it works correctly when the
port is explicitly set in the Host header makes me pretty sure this is a
bug -- when the port in the Host header isn't explicitly set, it should
mean there's an implicit port i.e. port 80 for HTTP, so the behaviour
should be consistent whether the port is explicit or implicit in the
Host header.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to apache2 in Ubuntu.
https://bugs.launchpad.net/bugs/1018285

Title:
  Redirects incorrectly set Location header in response when Host header
  is set in request

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apache2/+bug/1018285/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1018285] Re: Redirects incorrectly set Location header in response when Host header is set in request

2012-06-27 Thread Michael Williamson
I've just compiled httpd 2.2.22 from source, and it does not appear to
have this bug.

** Changed in: apache2 (Ubuntu)
   Status: Incomplete = New

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to apache2 in Ubuntu.
https://bugs.launchpad.net/bugs/1018285

Title:
  Redirects incorrectly set Location header in response when Host header
  is set in request

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apache2/+bug/1018285/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1018285] [NEW] Redirects incorrectly set Location header in response when Host header is set in request

2012-06-27 Thread Michael Williamson
Public bug reported:

When Apache sends a 301 redirect and the Host header in the request has
an implicit port, it incorrectly uses the Host header of the request and
the port that Apache is running on to set the Location header.

Steps to reproduce:
  * Get Apache to serve up a directory with a sub-directory blah on a 
particular port, say, 8080.
  * Access the URL http://localhost:8080/blah; (note no trailing slash) with 
the Host header Host: example.com.
  * Note that the Location header in the response is Location: 
http://example.com:8080/blah/; rather than Location http://example.com/blah/; 
as it should be.

Expected behaviour:
  * A location header that uses the Host header only, rather than combining the 
Host header and the port Apache is running on.

If the Host header has a port explicitly set, Apache behaves correctly
e.g. if the Host header is Host: example.com:8090, then the Location
header in the response is Location: http://example.com:8090/blah/;.

$ apt-cache policy apache2
apache2:
  Installed: 2.2.22-1ubuntu1
  Candidate: 2.2.22-1ubuntu1
  Version table:
 *** 2.2.22-1ubuntu1 0
500 http://gb.archive.ubuntu.com/ubuntu/ precise/main amd64 Packages
100 /var/lib/dpkg/status


$ lsb_release -rd
Description:Ubuntu 12.04 LTS
Release:12.04

** Affects: apache2 (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1018285

Title:
  Redirects incorrectly set Location header in response when Host header
  is set in request

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apache2/+bug/1018285/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1018285] Re: Redirects incorrectly set Location header in response when Host header is set in request

2012-06-27 Thread Michael Williamson
It looks like this has been fixed in a later version of Apache -- I've
just compiled 2.4.2 from source and it doesn't appear to have the
problem.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1018285

Title:
  Redirects incorrectly set Location header in response when Host header
  is set in request

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apache2/+bug/1018285/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1018285] Re: Redirects incorrectly set Location header in response when Host header is set in request

2012-06-27 Thread Michael Williamson
 Is this really a bug, or a new feature in a future Apache version?

 Traditionally, Apache used to issue redirects based on its own knowledge of
 its own name (and presumably port), rather than using the Host header, didn't
 it?

If that's the case, then surely Apache should ignore the Host header
entirely, rather than using the hostname from the Host header, and the
port Apache is running on? The fact that it works correctly when the
port is explicitly set in the Host header makes me pretty sure this is a
bug -- when the port in the Host header isn't explicitly set, it should
mean there's an implicit port i.e. port 80 for HTTP, so the behaviour
should be consistent whether the port is explicit or implicit in the
Host header.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1018285

Title:
  Redirects incorrectly set Location header in response when Host header
  is set in request

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apache2/+bug/1018285/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1018285] Re: Redirects incorrectly set Location header in response when Host header is set in request

2012-06-27 Thread Michael Williamson
I've just compiled httpd 2.2.22 from source, and it does not appear to
have this bug.

** Changed in: apache2 (Ubuntu)
   Status: Incomplete = New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1018285

Title:
  Redirects incorrectly set Location header in response when Host header
  is set in request

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apache2/+bug/1018285/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1000778] [NEW] virtualenv fails with long paths

2012-05-17 Thread Michael Williamson
Public bug reported:

Trying to run virtualenv inside a directory with a long path causes
virtualenv to fail to install pip:

~/a1234567890/b1234567890/c1234567890/d1234567890/e1234567890/f1234567890/g1234567890/h1234567890$
 virtualenv _virtualenv
New python executable in _virtualenv/bin/python
Installing 
distribute.done.
Installing pip...
  Error [Errno 13] Permission denied while executing command 
/home/mwilliamson/a1...env/bin/easy_install 
/usr/share/python-virtualenv/pip-1.1.tar.gz
...Installing pip...done.
Traceback (most recent call last):
  File /usr/bin/virtualenv, line 3, in module
virtualenv.main()
  File /usr/lib/python2.7/dist-packages/virtualenv.py, line 938, in main
never_download=options.never_download)
  File /usr/lib/python2.7/dist-packages/virtualenv.py, line 1054, in 
create_environment
install_pip(py_executable, search_dirs=search_dirs, 
never_download=never_download)
  File /usr/lib/python2.7/dist-packages/virtualenv.py, line 643, in 
install_pip
filter_stdout=_filter_setup)
  File /usr/lib/python2.7/dist-packages/virtualenv.py, line 976, in 
call_subprocess
cwd=cwd, env=env)
  File /usr/lib/python2.7/subprocess.py, line 679, in __init__
errread, errwrite)
  File /usr/lib/python2.7/subprocess.py, line 1249, in _execute_child
raise child_exception
OSError: [Errno 13] Permission denied

** Affects: python-virtualenv (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1000778

Title:
  virtualenv fails with long paths

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-virtualenv/+bug/1000778/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 229694] Re: Wacom graphire4 pad buttons: remap cause X-server restart

2008-05-25 Thread Michael Williamson
I'm using an intuos 3 and I get exactly the same result, xrestart
whenever a remapped expresskey is pressed on both a 32 bit and a 64 bit
system.

Both computers are running Hardy.

At the linux wacom site there was a mention that this is caused by the
specific combination of driver version and linux kernel version.

I built the wacom driver 0.8.0-3 from source which fixed this problem,
but then I had no pressure sensitivity in wine so have gone back to the
driver in the repository.

-- 
Wacom graphire4 pad buttons: remap cause X-server restart
https://bugs.launchpad.net/bugs/229694
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 147671] Auto update cannot update ubuntu-desktop

2007-10-01 Thread Michael Williamson
Public bug reported:

Did a fresh install of Gutsy Beta. updated all packages. Removed Gimp
package. Auto update the next day auto update could only do a partial
update and failed. here is the apt.log

Installing libopal-2.2 as dep of ekiga
Starting
Starting 2
Investigating libopal-2.2
Package libopal-2.2 has broken dep on libopal-2.2.0
  Considering libopal-2.2.0 -1 as a solution to libopal-2.2 0
  Added libopal-2.2.0 to the remove list
  Fixing libopal-2.2 via remove of libopal-2.2.0
Done
Installing gimp-python as dep of ubuntu-desktop
Setting NOT as auto-installed (direct dep of pkg in APT::Never-MarkAuto-Section)
Installing gimp as dep of gimp-python
Installing gimp-data as dep of gimp
Installing gimp-print as dep of ubuntu-desktop
Setting NOT as auto-installed (direct dep of pkg in APT::Never-MarkAuto-Section)
Installing openoffice.org-evolution as dep of ubuntu-desktop
Setting NOT as auto-installed (direct dep of pkg in APT::Never-MarkAuto-Section)
Starting
Starting 2
Investigating gimp
Package gimp has broken dep on gimp-data
Investigating gimp-python
Package gimp-python has broken dep on gimp
  Considering gimp 2 as a solution to gimp-python 1
  Holding Back gimp-python rather than change gimp
Investigating gimp-print
Package gimp-print has broken dep on gimp
  Considering gimp 2 as a solution to gimp-print -1
  Holding Back gimp-print rather than change gimp
Investigating ubuntu-desktop
Package ubuntu-desktop has broken dep on gimp-python
  Considering gimp-python 1 as a solution to ubuntu-desktop 
Reinst Failed early because of gimp-data
Reinst Failed because of gimp
Done
ERROR:root:failed to mark 'ubuntu-desktop' for install (E:Unable to correct 
problems, you have held broken packages.)
ERROR:root:Dist-upgrade failed: 'Can't upgrade required meta-packages'
Installing libopal-2.2 as dep of ekiga
Starting
Starting 2
Investigating libopal-2.2
Package libopal-2.2 has broken dep on libopal-2.2.0
  Considering libopal-2.2.0 -1 as a solution to libopal-2.2 0
  Added libopal-2.2.0 to the remove list
  Fixing libopal-2.2 via remove of libopal-2.2.0
Done
Installing gimp-python as dep of ubuntu-desktop
Setting NOT as auto-installed (direct dep of pkg in APT::Never-MarkAuto-Section)
Installing gimp as dep of gimp-python
Installing gimp-data as dep of gimp
Installing gimp-print as dep of ubuntu-desktop
Setting NOT as auto-installed (direct dep of pkg in APT::Never-MarkAuto-Section)
Installing openoffice.org-evolution as dep of ubuntu-desktop
Setting NOT as auto-installed (direct dep of pkg in APT::Never-MarkAuto-Section)
Starting
Starting 2
Investigating gimp
Package gimp has broken dep on gimp-data
Investigating gimp-python
Package gimp-python has broken dep on gimp
  Considering gimp 2 as a solution to gimp-python 1
  Holding Back gimp-python rather than change gimp
Investigating gimp-print
Package gimp-print has broken dep on gimp
  Considering gimp 2 as a solution to gimp-print -1
  Holding Back gimp-print rather than change gimp
Investigating ubuntu-desktop
Package ubuntu-desktop has broken dep on gimp-python
  Considering gimp-python 1 as a solution to ubuntu-desktop 
Reinst Failed early because of gimp-data
Reinst Failed because of gimp
Done
ERROR:root:failed to mark 'ubuntu-desktop' for install (E:Unable to correct 
problems, you have held broken packages.)
ERROR:root:Dist-upgrade failed: 'Can't upgrade required meta-packages'
Installing libopal-2.2 as dep of ekiga
Starting
Starting 2
Investigating libopal-2.2
Package libopal-2.2 has broken dep on libopal-2.2.0
  Considering libopal-2.2.0 -1 as a solution to libopal-2.2 0
  Added libopal-2.2.0 to the remove list
  Fixing libopal-2.2 via remove of libopal-2.2.0
Done
Installing gimp-python as dep of ubuntu-desktop
Setting NOT as auto-installed (direct dep of pkg in APT::Never-MarkAuto-Section)
Installing gimp as dep of gimp-python
Installing gimp-data as dep of gimp
Installing gimp-print as dep of ubuntu-desktop
Setting NOT as auto-installed (direct dep of pkg in APT::Never-MarkAuto-Section)
Installing openoffice.org-evolution as dep of ubuntu-desktop
Setting NOT as auto-installed (direct dep of pkg in APT::Never-MarkAuto-Section)
Starting
Starting 2
Investigating gimp
Package gimp has broken dep on gimp-data
Investigating gimp-python
Package gimp-python has broken dep on gimp
  Considering gimp 2 as a solution to gimp-python 1
  Holding Back gimp-python rather than change gimp
Investigating gimp-print
Package gimp-print has broken dep on gimp
  Considering gimp 2 as a solution to gimp-print -1
  Holding Back gimp-print rather than change gimp
Investigating ubuntu-desktop
Package ubuntu-desktop has broken dep on gimp-python
  Considering gimp-python 1 as a solution to ubuntu-desktop 
Reinst Failed early because of gimp-data
Reinst Failed because of gimp
Done
ERROR:root:failed to mark 'ubuntu-desktop' for install (E:Unable to correct 
problems, you have held broken packages.)

** Affects: ubuntu
 Importance: 

[Bug 147664] Gimp 2.4 RC3 requires gimp data to match... Gimp data is RC2

2007-10-01 Thread Michael Williamson
Public bug reported:

getting gimp rc3 from synaptic can't satisfy dependency require gimp
data=rc3

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
Gimp 2.4 RC3 requires gimp data to match... Gimp data is RC2
https://bugs.launchpad.net/bugs/147664
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs