Skip to content

Commit 4c27331

Browse files
committed
Fix unaligned load error on 32-bit architectures
On some 32-bit architectures, 64-bit atomic operations panic when the value is not aligned properly. In this package, this causes netConn operations to panic when compiling with GOARCH=386, since netConn does atomic operations with int64 values in the netConn struct (namely, with readExpired and writeExpired). This commit fixes this by moving readExpired and writeExpired to the beginning of the struct, which makes them properly aligned.
1 parent e3a2d32 commit 4c27331

File tree

1 file changed

+14
-13
lines changed

1 file changed

+14
-13
lines changed

netconn.go

+14-13
Original file line numberDiff line numberDiff line change
@@ -94,22 +94,23 @@ func NetConn(ctx context.Context, c *Conn, msgType MessageType) net.Conn {
9494
}
9595

9696
type netConn struct {
97+
readExpired int64
98+
writeExpired int64
99+
97100
c *Conn
98101
msgType MessageType
99102

100-
writeTimer *time.Timer
101-
writeMu *mu
102-
writeExpired int64
103-
writeCtx context.Context
104-
writeCancel context.CancelFunc
105-
106-
readTimer *time.Timer
107-
readMu *mu
108-
readExpired int64
109-
readCtx context.Context
110-
readCancel context.CancelFunc
111-
readEOFed bool
112-
reader io.Reader
103+
writeTimer *time.Timer
104+
writeMu *mu
105+
writeCtx context.Context
106+
writeCancel context.CancelFunc
107+
108+
readTimer *time.Timer
109+
readMu *mu
110+
readCtx context.Context
111+
readCancel context.CancelFunc
112+
readEOFed bool
113+
reader io.Reader
113114
}
114115

115116
var _ net.Conn = &netConn{}

0 commit comments

Comments
 (0)