(m *mount.Mount)
| 109 | } |
| 110 | |
| 111 | func ensureBindOptions(m *mount.Mount) *mount.BindOptions { |
| 112 | if m.BindOptions == nil { |
| 113 | m.BindOptions = &mount.BindOptions{} |
| 114 | } |
| 115 | return m.BindOptions |
| 116 | } |
| 117 | |
| 118 | func ensureTmpfsOptions(m *mount.Mount) *mount.TmpfsOptions { |
| 119 | if m.TmpfsOptions == nil { |
no outgoing calls
no test coverage detected
searching dependent graphs…