[Bug 1541014] [NEW] 'go vet' falls over on expressions like C.f(*p(**q))

2016-02-02 Thread John Lenton
Public bug reported:

This file is enough to cause it: http://pastebin.ubuntu.com/14858123/
And this is the result:

panic: runtime error: invalid memory address or nil pointer dereference
[signal 0xb code=0x1 addr=0x28 pc=0x40b5a3]

goroutine 1 [running]:
main.cgoBaseType(0xc8200cc000, 0x7f5b327dec58, 0xc8200c63e0, 0x0, 0x0)
/usr/lib/go/src/cmd/vet/cgo.go:75 +0x2d3
main.checkCgoCall(0xc8200cc000, 0x7f5b327de930, 0xc820013300)
/usr/lib/go/src/cmd/vet/cgo.go:42 +0x1ad
main.(*File).Visit(0xc8200cc000, 0x7f5b327de930, 0xc820013300, 0x0, 0x0)
/usr/lib/go/src/cmd/vet/main.go:485 +0x1ba
go/ast.Walk(0x7f5b327defd0, 0xc8200cc000, 0x7f5b327de930, 0xc820013300)
/usr/lib/go/src/go/ast/walk.go:52 +0x56
go/ast.walkExprList(0x7f5b327defd0, 0xc8200cc000, 0xc8200c4380, 0x1, 0x1)
/usr/lib/go/src/go/ast/walk.go:26 +0xd5
go/ast.Walk(0x7f5b327defd0, 0xc8200cc000, 0x7f5b327df028, 0xc8200c3a90)
/usr/lib/go/src/go/ast/walk.go:308 +0xf63
go/ast.Walk(0x7f5b327defd0, 0xc8200cc000, 0x7f5b327dea50, 0xc820013340)
/usr/lib/go/src/go/ast/walk.go:331 +0x1f7d
go/ast.walkDeclList(0x7f5b327defd0, 0xc8200cc000, 0xc8200c43b0, 0x1, 0x1)
/usr/lib/go/src/go/ast/walk.go:38 +0xd5
go/ast.Walk(0x7f5b327defd0, 0xc8200cc000, 0x7f5b327ded70, 0xc820018600)
/usr/lib/go/src/go/ast/walk.go:353 +0x29b9
main.(*File).walkFile(0xc8200cc000, 0x7ffc85f63ec0, 0x9, 0xc820018600)
/usr/lib/go/src/cmd/vet/main.go:454 +0x1f5
main.doPackage(0x7a0178, 0x1, 0xc82000a490, 0x1, 0x1, 0x0)
/usr/lib/go/src/cmd/vet/main.go:353 +0xd97
main.main()
/usr/lib/go/src/cmd/vet/main.go:243 +0x420
exit status 2


adding parentheses to that, i.e. C.f((*p(**q))), is enough to make go vet happy 
again.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: golang-go 2:1.6~beta2-0ubuntu1
ProcVersionSignature: Ubuntu 4.3.0-5.16-generic 4.3.3
Uname: Linux 4.3.0-5-generic x86_64
ApportVersion: 2.19.4-0ubuntu1
Architecture: amd64
Date: Tue Feb  2 16:38:20 2016
InstallationDate: Installed on 2014-04-27 (645 days ago)
InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Release amd64 (20140417)
SourcePackage: golang
SystemImageInfo: Error: command ['system-image-cli', '-i'] failed with exit 
code 2:
UpgradeStatus: Upgraded to xenial on 2015-06-18 (228 days ago)

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


** Tags: amd64 apport-bug xenial

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

Title:
  'go vet' falls over on expressions like C.f(*p(**q))

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/golang/+bug/1541014/+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 1501651] Re: ARM chroot issues: fatal error: rt_sigaction failure

2015-10-01 Thread John Lenton
It's a long-standing qemu bug. See
https://groups.google.com/forum/#!topic/golang-nuts/MqKTX_XIOKE for
example.

** Also affects: qemu (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  ARM chroot issues: fatal error: rt_sigaction failure

To manage notifications about this bug go to:
https://bugs.launchpad.net/snapcraft/+bug/1501651/+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 1496503] [NEW] can't go build with -race

2015-09-16 Thread John Lenton
Public bug reported:

john@fogey:/tmp$ cat example.go 
package main

func main() {
println("hi")
}
john@fogey:/tmp$ go build -o example example.go
john@fogey:/tmp$ go build -race -o example example.go
# command-line-arguments
runtime.raceinit: __tsan_init: not defined
runtime.raceinit: __tsan_map_shadow: not defined
runtime.racefini: __tsan_fini: not defined
runtime.racemapshadow: __tsan_map_shadow: not defined
runtime.racemalloc: __tsan_malloc: not defined
runtime.racegostart: __tsan_go_start: not defined
runtime.racegoend: __tsan_go_end: not defined
runtime.raceacquireg: __tsan_acquire: not defined
runtime.racereleaseg: __tsan_release: not defined
runtime.racereleasemergeg: __tsan_release_merge: not defined
runtime.racefingo: __tsan_finalizer_goroutine: not defined
runtime.raceread: __tsan_read: not defined
runtime.racereadpc: __tsan_read_pc: not defined
runtime.racewrite: __tsan_write: not defined
runtime.racewritepc: __tsan_write_pc: not defined
runtime.racereadrangepc1: __tsan_read_range: not defined
runtime.racewriterangepc1: __tsan_write_range: not defined
runtime.racefuncenter: __tsan_func_enter: not defined
runtime.racefuncexit: __tsan_func_exit: not defined
runtime.raceinit: undefined: __tsan_init
runtime.raceinit: undefined: __tsan_map_shadow
/usr/lib/go/pkg/tool/linux_amd64/link: too many errors

ProblemType: Bug
DistroRelease: Ubuntu 15.10
Package: golang-go 2:1.5-0ubuntu1
ProcVersionSignature: Ubuntu 4.2.0-10.11-generic 4.2.0
Uname: Linux 4.2.0-10-generic x86_64
ApportVersion: 2.18.1-0ubuntu1
Architecture: amd64
Date: Wed Sep 16 17:56:02 2015
InstallationDate: Installed on 2014-04-27 (506 days ago)
InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Release amd64 (20140417)
SourcePackage: golang
SystemImageInfo: Error: command ['system-image-cli', '-i'] failed with exit 
code 2:
UpgradeStatus: Upgraded to wily on 2015-06-18 (89 days ago)

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


** Tags: amd64 apport-bug wily

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

Title:
  can't go build with -race

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/golang/+bug/1496503/+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 1004373] Re: Please sync rabbitmq-server 2.8.2 from Debian

2012-05-31 Thread John Lenton
2.8.2-2, to be precise.

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

Title:
  Please sync rabbitmq-server 2.8.2 from Debian

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/rabbitmq-server/+bug/1004373/+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 1004373] Re: Please sync rabbitmq-server 2.8.2 from Debian

2012-05-31 Thread John Lenton
We're using 2.8 from debian in a ppa (by using backportpackage) in both
lucid and precise, and it passes all our tests. A sync seems to be what
we want.

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

Title:
  Please sync rabbitmq-server 2.8.2 from Debian

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/rabbitmq-server/+bug/1004373/+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


Re: [Bug 408857] Re: ssh-agent hangs

2009-10-13 Thread John Lenton
On Mon, Oct 12, 2009 at 10:22:56PM -, Chuck Short wrote:
> Thank you for taking the time to report this bug and helping to make Ubuntu 
> better. Please answer these questions:
> 1. Is this reproducible?

Not AFAICT, no. Sorry :(
It hasn't happened to me in a while, but I know other people were
affected since the last time it happened to me.

-- 
ssh-agent hangs
https://bugs.launchpad.net/bugs/408857
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in ubuntu.

-- 
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 408857] [NEW] ssh-agent hangs

2009-08-04 Thread John Lenton
Public bug reported:

The ssh-agent is taking a long time to show the dialog, so much so that
ssh gives up.

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


** Tags: apport-collected

-- 
ssh-agent hangs
https://bugs.launchpad.net/bugs/408857
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in ubuntu.

-- 
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 408857] apport-collect data

2009-08-04 Thread John Lenton
Architecture: i386
DistroRelease: Ubuntu 9.10
NonfreeKernelModules: nvidia
Package: openssh (not installed)
ProcEnviron:
 SHELL=/bin/bash
 PATH=(custom, user)
 LANG=en_GB.UTF-8
 LANGUAGE=en_GB.UTF-8
ProcVersionSignature: Ubuntu 2.6.31-5.24-generic
Uname: Linux 2.6.31-5-generic i686
UserGroups: adm admin cdrom couchdb dialout dip kvm lpadmin plugdev pulse-rt 
sambashare


** Tags added: apport-collected

-- 
ssh-agent hangs
https://bugs.launchpad.net/bugs/408857
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in ubuntu.

-- 
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 408857]

2009-08-04 Thread John Lenton
That sounds terribly lame, as bug reports go. How can I un-lame it?

-- 
ssh-agent hangs
https://bugs.launchpad.net/bugs/408857
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in ubuntu.

-- 
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 352154] [NEW] ssh-agent stops responding

2009-03-30 Thread John Lenton
Public bug reported:

I (and everybody on my team) have a list of 36 bzr repositories we pull
in as source deps of our project. As updating them all is very slow,
mostly due to network latency, we update them in parallel, 10 at a time,
using xargs. Something like

$ xargs -n1 -P10 ./update-repo.sh < sourcedeps.txt

where update-repo.sh does cd $1 && bzr pull, and bzr uses ssh-agent to
get the ssh keys, and this is where you come in :) because since we
moved to jaunty, we're killing ssh-agent every single time we do this.
Not actually killing it; it simply stops responding: suddenly we get
these bzrs asking for the passphrase (and failing, obviously). And,

$ ssh-add
Could not open a connection to your authentication agent.

but ssh-agent is still there,

$ ps -C ssh-agent www
  PID TTY  STAT   TIME COMMAND
 3208 ?Ss 0:00 /usr/bin/ssh-agent /usr/bin/gpg-agent --daemon 
--sh --write-env-file=/home/john/.gnupg/gpg-agent-info-watermeal 
/usr/bin/dbus-launch --exit-with-session /usr/bin/pulse-session 
/usr/bin/seahorse-agent --execute x-session-manager

Thanks,

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

-- 
ssh-agent stops responding
https://bugs.launchpad.net/bugs/352154
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in ubuntu.

-- 
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