Skip to content

Commit 531f4d4

Browse files
committed
Merge branch 'upstream-bump-1.2.0-rc.3' into 'master'
Last Minute patch to WSL2 for 1.2.0-rc.3 See merge request nvidia/container-toolkit/libnvidia-container!33
2 parents 16ae202 + 1755b48 commit 531f4d4

File tree

3 files changed

+14
-19
lines changed

3 files changed

+14
-19
lines changed

pkg/deb/changelog

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
libnvidia-container (1.2.0~rc.3-1) experimental; urgency=medium
22

3-
* 53739009d6 WSL2 Support - Fix error path when mounting the driver
4-
* 38198a81cb WSL2 Support - Fix error path in dxcore
5-
* 31f5ea3578 Changed email for travis.ci to [email protected]
6-
* abdd51754b Update license and copyright in packages
7-
* 65827fe7bc Update license clause to reflect actual licensing
8-
* 77499d8884 Transition Travis CI build to Ubuntu 18.04
3+
* 7deea6b8 WSL2 Support - Remove unnecessary umount and free
4+
* 53739009 WSL2 Support - Fix error path when mounting the driver
5+
* 38198a81 WSL2 Support - Fix error path in dxcore
6+
* 31f5ea35 Changed email for travis.ci to [email protected]
7+
* abdd5175 Update license and copyright in packages
8+
* 65827fe7 Update license clause to reflect actual licensing
9+
* 77499d88 Transition Travis CI build to Ubuntu 18.04
910

1011
-- NVIDIA CORPORATION <[email protected]> Wed, 01 Jul 2020 14:24:59 -0700
1112

pkg/rpm/SPECS/libnvidia-container.spec

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -100,12 +100,13 @@ This package contains command-line tools that facilitate using the library.
100100

101101
%changelog
102102
* Wed Jul 01 2020 NVIDIA CORPORATION <[email protected]> 1.2.0-0.1.rc.3
103-
- 53739009d6 WSL2 Support - Fix error path when mounting the driver
104-
- 38198a81cb WSL2 Support - Fix error path in dxcore
105-
- 31f5ea3578 Changed email for travis.ci to [email protected]
106-
- abdd51754b Update license and copyright in packages
107-
- 65827fe7bc Update license clause to reflect actual licensing
108-
- 77499d8884 Transition Travis CI build to Ubuntu 18.04
103+
- 7deea6b8 WSL2 Support - Remove unnecessary umount and free
104+
- 53739009 WSL2 Support - Fix error path when mounting the driver
105+
- 38198a81 WSL2 Support - Fix error path in dxcore
106+
- 31f5ea35 Changed email for travis.ci to [email protected]
107+
- abdd5175 Update license and copyright in packages
108+
- 65827fe7 Update license clause to reflect actual licensing
109+
- 77499d88 Transition Travis CI build to Ubuntu 18.04
109110

110111
* Thu Jun 18 2020 NVIDIA CORPORATION <[email protected]> 1.2.0-0.1.rc.2
111112
- 4ea9b59f Update debian based dockerfiles to set distribution in changelog

src/nvc_mount.c

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -565,13 +565,6 @@ device_mount_dxcore(struct nvc_context *ctx, const struct nvc_container *cnt)
565565
drvstore_size)) == NULL)
566566
{
567567
log_errf("failed to mount DriverStore libraries %s", ctx->dxcore.adapterList[0].pDriverStorePath);
568-
569-
for (size_t i = 0; i < drvstore_size; ++i)
570-
unmount(drvstore_mnt[i]);
571-
array_free(drvstore_mnt, drvstore_size);
572-
573-
drvstore_size = 0;
574-
575568
return (-1);
576569
}
577570

0 commit comments

Comments
 (0)