()
| 1154 | } |
| 1155 | |
| 1156 | func (p linux) SetupSharedMemory() error { |
| 1157 | for _, mnt := range []string{"/dev/shm", "/run/shm"} { |
| 1158 | err := p.remountWithSecurityFlags(mnt) |
| 1159 | if err != nil { |
| 1160 | return err |
| 1161 | } |
| 1162 | } |
| 1163 | |
| 1164 | return nil |
| 1165 | } |
| 1166 | |
| 1167 | func (p linux) remountWithSecurityFlags(mountPt string) error { |
| 1168 | mounter := p.diskManager.GetMounter() |
nothing calls this directly
no test coverage detected