Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

lxcfs: per instance configuration #638

Open
wants to merge 17 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: |
sudo apt-get update -qq
sudo apt-get install -qq gcc clang
sudo apt-get install -qq libfuse-dev uuid-runtime
sudo apt-get install -qq libcap-dev libfuse-dev uuid-runtime
sudo apt-get install -qq python3 python3-setuptools
sudo pip3 install meson ninja

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: |
sudo apt-get update -qq
sudo apt-get install -qq gcc clang
sudo apt-get install -qq libfuse-dev uuid-runtime
sudo apt-get install -qq libcap-dev libfuse-dev uuid-runtime
sudo apt-get install -qq python3 python3-setuptools
sudo pip3 install meson==0.55.1 ninja

Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
sudo add-apt-repository universe
sudo apt-get update -qq
sudo apt-get install -qq gcc clang
sudo apt-get install -qq libfuse3-dev uuid-runtime
sudo apt-get install -qq libcap-dev libfuse3-dev uuid-runtime
sudo apt-get install -qq python3 python3-setuptools
sudo pip3 install meson==0.55.1 ninja

Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
sudo add-apt-repository universe
sudo apt-get update -qq
sudo apt-get install -qq gcc clang
sudo apt-get install -qq libfuse3-dev uuid-runtime
sudo apt-get install -qq libcap-dev libfuse3-dev uuid-runtime
sudo apt-get install -qq python3 python3-setuptools
sudo pip3 install meson==0.55.1 ninja

Expand Down
1 change: 1 addition & 0 deletions lxcfs.spec.in
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ BuildRequires: libtool
BuildRequires: docbook2X
BuildRequires: doxygen
BuildRequires: fuse-devel
BuildRequires: libcap-devel
Requires: fuse-libs

%description
Expand Down
2 changes: 2 additions & 0 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,8 @@ liblxcfs_sources = files(
'src/syscall_numbers.h',
'src/sysfs_fuse.c',
'src/sysfs_fuse.h',
'src/lxcfsctl_fuse.c',
'src/lxcfsctl_fuse.h',
'src/utils.c',
'src/utils.h')

Expand Down
1 change: 1 addition & 0 deletions src/api_extensions.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ static char *api_extensions[] = {
"cpuview_daemon",
"loadavg_daemon",
"pidfds",
"per_instance_configuration",
};

static size_t nr_api_extensions = sizeof(api_extensions) / sizeof(*api_extensions);
Expand Down
Loading
Loading