aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/containers/storage/drivers/btrfs
diff options
context:
space:
mode:
authorGiuseppe Scrivano <gscrivan@redhat.com>2018-07-28 09:14:59 +0200
committerAtomic Bot <atomic-devel@projectatomic.io>2018-07-28 14:41:07 +0000
commita4a667eac9ad288b927696effa30a084b0b39787 (patch)
tree99b8bd2af15b4abf0bd9391bdce1b70aacfea604 /vendor/github.com/containers/storage/drivers/btrfs
parent5aa36c1861a6972b49df1b6022aa2f4ac30e1e66 (diff)
downloadpodman-a4a667eac9ad288b927696effa30a084b0b39787.tar.gz
podman-a4a667eac9ad288b927696effa30a084b0b39787.tar.bz2
podman-a4a667eac9ad288b927696effa30a084b0b39787.zip
vendor: update containers/storage
update to version 956a1971694f18fd602b1203c0a2d192e2cc88a1 inherit support for IDs shifting when fuse-overlayfs is used. Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com> Closes: #1177 Approved by: mheon
Diffstat (limited to 'vendor/github.com/containers/storage/drivers/btrfs')
-rw-r--r--vendor/github.com/containers/storage/drivers/btrfs/btrfs.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/github.com/containers/storage/drivers/btrfs/btrfs.go b/vendor/github.com/containers/storage/drivers/btrfs/btrfs.go
index 842079a1c..2dd81b0c0 100644
--- a/vendor/github.com/containers/storage/drivers/btrfs/btrfs.go
+++ b/vendor/github.com/containers/storage/drivers/btrfs/btrfs.go
@@ -634,7 +634,7 @@ func (d *Driver) Remove(id string) error {
}
// Get the requested filesystem id.
-func (d *Driver) Get(id, mountLabel string) (string, error) {
+func (d *Driver) Get(id, mountLabel string, uidMaps, gidMaps []idtools.IDMap) (string, error) {
dir := d.subvolumesDirID(id)
st, err := os.Stat(dir)
if err != nil {