2015-08-16 20:27:07 +00:00
|
|
|
// +build !openbsd
|
2015-08-17 17:40:34 +00:00
|
|
|
// +build !windows
|
2015-08-16 20:27:07 +00:00
|
|
|
|
2015-07-19 14:39:17 +00:00
|
|
|
package fuse
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/binary"
|
|
|
|
|
|
|
|
"github.com/restic/restic/backend"
|
|
|
|
)
|
|
|
|
|
|
|
|
// inodeFromBackendId returns a unique uint64 from a backend id.
|
|
|
|
// Endianness has no specific meaning, it is just the simplest way to
|
|
|
|
// transform a []byte to an uint64
|
|
|
|
func inodeFromBackendId(id backend.ID) uint64 {
|
|
|
|
return binary.BigEndian.Uint64(id[:8])
|
|
|
|
}
|