mirror of
https://github.com/containers/podman.git
synced 2025-08-06 11:32:07 +08:00
Fix build for mips architecture follow-up
Follow-up to commit (1ad796677e1c). The build on mips is still failing because SIGWINCH was not defined in the signal pkg. Also stat_t.Rdev is unit32 on mips so we need to typecast. Signed-off-by: Paul Holzinger <paul.holzinger@web.de>
This commit is contained in:
@ -19,6 +19,8 @@ import (
|
||||
const (
|
||||
sigrtmin = 34
|
||||
sigrtmax = 127
|
||||
|
||||
SIGWINCH = syscall.SIGWINCH
|
||||
)
|
||||
|
||||
// signalMap is a map of Linux signals.
|
||||
|
@ -282,8 +282,8 @@ func finishThrottleDevices(s *specgen.SpecGenerator) error {
|
||||
if err := unix.Stat(k, &statT); err != nil {
|
||||
return err
|
||||
}
|
||||
v.Major = (int64(unix.Major(statT.Rdev)))
|
||||
v.Minor = (int64(unix.Minor(statT.Rdev)))
|
||||
v.Major = (int64(unix.Major(uint64(statT.Rdev))))
|
||||
v.Minor = (int64(unix.Minor(uint64(statT.Rdev))))
|
||||
s.ResourceLimits.BlockIO.ThrottleReadBpsDevice = append(s.ResourceLimits.BlockIO.ThrottleReadBpsDevice, v)
|
||||
}
|
||||
}
|
||||
@ -293,8 +293,8 @@ func finishThrottleDevices(s *specgen.SpecGenerator) error {
|
||||
if err := unix.Stat(k, &statT); err != nil {
|
||||
return err
|
||||
}
|
||||
v.Major = (int64(unix.Major(statT.Rdev)))
|
||||
v.Minor = (int64(unix.Minor(statT.Rdev)))
|
||||
v.Major = (int64(unix.Major(uint64(statT.Rdev))))
|
||||
v.Minor = (int64(unix.Minor(uint64(statT.Rdev))))
|
||||
s.ResourceLimits.BlockIO.ThrottleWriteBpsDevice = append(s.ResourceLimits.BlockIO.ThrottleWriteBpsDevice, v)
|
||||
}
|
||||
}
|
||||
@ -304,8 +304,8 @@ func finishThrottleDevices(s *specgen.SpecGenerator) error {
|
||||
if err := unix.Stat(k, &statT); err != nil {
|
||||
return err
|
||||
}
|
||||
v.Major = (int64(unix.Major(statT.Rdev)))
|
||||
v.Minor = (int64(unix.Minor(statT.Rdev)))
|
||||
v.Major = (int64(unix.Major(uint64(statT.Rdev))))
|
||||
v.Minor = (int64(unix.Minor(uint64(statT.Rdev))))
|
||||
s.ResourceLimits.BlockIO.ThrottleReadIOPSDevice = append(s.ResourceLimits.BlockIO.ThrottleReadIOPSDevice, v)
|
||||
}
|
||||
}
|
||||
@ -315,8 +315,8 @@ func finishThrottleDevices(s *specgen.SpecGenerator) error {
|
||||
if err := unix.Stat(k, &statT); err != nil {
|
||||
return err
|
||||
}
|
||||
v.Major = (int64(unix.Major(statT.Rdev)))
|
||||
v.Minor = (int64(unix.Minor(statT.Rdev)))
|
||||
v.Major = (int64(unix.Major(uint64(statT.Rdev))))
|
||||
v.Minor = (int64(unix.Minor(uint64(statT.Rdev))))
|
||||
s.ResourceLimits.BlockIO.ThrottleWriteIOPSDevice = append(s.ResourceLimits.BlockIO.ThrottleWriteIOPSDevice, v)
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user