 3611efdcef
			
		
	
	3611efdcef
	
	
	
		
			
			This includes an update of the selinux package and the ability in the CRI configuration to set the upper bounds for the selinux category labels that are generated. Signed-off-by: Michael Crosby <michael@thepasture.io>
		
			
				
	
	
		
			10 lines
		
	
	
		
			132 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			132 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // +build go1.9
 | |
| 
 | |
| package bitset
 | |
| 
 | |
| import "math/bits"
 | |
| 
 | |
| func trailingZeroes64(v uint64) uint {
 | |
| 	return uint(bits.TrailingZeros64(v))
 | |
| }
 |