Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
libct/cgroups/fs/cpuset: don't use MkdirAll
Here, we always create a parent directory, so using MkdirAll is redundant. Use Mkdir instead. One difference between MkdirAll and Mkdir is the former ignores EEXIST, and since we sometimes try to create a directory that already exists, we need to explicitly ignore that. Signed-off-by: Kir Kolyshkin <[email protected]>
- Loading branch information