Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

runtime: crash while deleting all keys in map while ranging over it with Go 1.1.2 #6216

Closed
alberts opened this issue Aug 22, 2013 · 2 comments

Comments

@alberts
Copy link
Contributor

alberts commented Aug 22, 2013

What steps will reproduce the problem?

don't have code to reliably reproduce this yet.

we have a map of the form

map[uint32]*someStruct

the map is usually quite small. the map instances usually live in an array
[30]map[uint32]*someStruct in our program.

we sometimes range over the map and delete all its keys. unnecessary, but anyway. this
crashes.

there's no concurrency in this code, so I don't think this is a data race.

What do you see instead?

two crashes:

unexpected fault address 0x9001001c
fatal error: fault
[signal 0xb code=0x1 addr=0x9001001c pc=0x410e5e]
goroutine 1 [running]:
[fp=0x7f2e698674a0] runtime.throw(0x17c4337)
/build/go/go/src/pkg/runtime/panic.c:473 +0x67
[fp=0x7f2e698674b8] runtime.sigpanic()
/build/go/go/src/pkg/runtime/os_linux.c:239 +0xe7
[fp=0x7f2e698674d8] hash_iter_init(0xcbb3a0, 0x90010010, 0x7f2e69867580)
/build/go/go/src/pkg/runtime/hashmap.c:779 +0x2e
[fp=0x7f2e69867500] runtime.mapiterinit(0xcbb3a0, 0x90010010, 0x7f2e69867580)
/build/go/go/src/pkg/runtime/hashmap.c:1364 +0x4b

unexpected fault address 0x0
fatal error: fault
[signal 0xb code=0x80 addr=0x0 pc=0x410e5e]
goroutine 1 [running]:
[fp=0x7f666549d4a0] runtime.throw(0x17c4337)
/build/go/go/src/pkg/runtime/panic.c:473 +0x67
[fp=0x7f666549d4b8] runtime.sigpanic()
/build/go/go/src/pkg/runtime/os_linux.c:239 +0xe7
[fp=0x7f666549d4d8] hash_iter_init(0xcb7620, 0x210008b12050000, 0x7f666549d580)
/build/go/go/src/pkg/runtime/hashmap.c:779 +0x2e
[fp=0x7f666549d500] runtime.mapiterinit(0xcb7620, 0x210008b12050000, 0x7f666549d580)
/build/go/go/src/pkg/runtime/hashmap.c:1364 +0x4b

Which compiler are you using (5g, 6g, 8g, gccgo)?

6g

Which operating system are you using?

linux

Which version are you using?  (run 'go version')

go version go1.1.2 linux/amd64
@alberts
Copy link
Contributor Author

alberts commented Aug 22, 2013

Comment 1:

We might have been hitting this:
https://lkml.org/lkml/2013/8/5/586
so this could be a false alarm

@robpike
Copy link
Contributor

robpike commented Aug 24, 2013

Comment 2:

Retiring for now; please reopen if it's not the kernel issue.

Status changed to Retracted.

@golang golang locked and limited conversation to collaborators Jun 24, 2016
This issue was closed.
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

3 participants