Project

General

Profile

ActionsLike0

Bug #9558

closed

Bus Error on Sparc in r45155 due to __attribute__((packed))

Added by ngoto (Naohisa Goto) about 11 years ago. Updated about 11 years ago.

Status:
Closed
Assignee:
-
Target version:
-
ruby -v:
ruby 2.2.0dev (2014-02-23) [sparc64-solaris2.10]
[ruby-core:61049]

Description

Since r45155, the following error occurs on Sparc Solaris.

$ ./ruby --disable-gems -e 'p Time.now.utc'
-e:1: [BUG] Bus Error at 0xffffffff7fffe775
ruby 2.2.0dev (2014-02-23) [sparc64-solaris2.10]

-- Control frame information -----------------------------------------------
c:0003 p:---- s:0008 e:000007 CFUNC :utc
c:0002 p:0014 s:0005 E:001fb8 EVAL -e:1 [FINISH]
c:0001 p:0000 s:0002 E:0006e8 TOP [FINISH]

-- Ruby level backtrace information ----------------------------------------
-e:1:in <main>' -e:1:in utc'

-- Other runtime information -----------------------------------------------

  • Loaded script: -e

  • Loaded features:

    0 enumerator.so

[NOTE]
You may have encountered a bug in the Ruby interpreter or extension libraries.
Bug reports are welcome.
For details: http://www.ruby-lang.org/bugreport.html

Abort

This is due to attribute((packed)) added in r45155.
SPARC (and many other CPUs) can not access to unaligned memory address.

Please revert r45155.

Added by Eric Wong about 11 years ago

Revision 131e4bec

time: only use packed struct on x86*

  • configure.in: define PACKED_STRUCT_UNALIGNED for x86*
  • timev.h (struct vtm): use PACKED_STRUCT_UNALIGNED
  • time.c (struct time_object): ditto
    [Bug #9558] non-x86 cannot safely access unaligned addresses

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45165 b2dd03c8-39d4-4d8f-98ff-823fe69b080e

ActionsLike0

Also available in: Atom PDF