diff options
author | Oleksandr Natalenko <oleksandr@natalenko.name> | 2016-05-17 16:45:44 +0300 |
---|---|---|
committer | Jeff Darcy <jdarcy@redhat.com> | 2016-06-01 06:27:10 -0700 |
commit | cb8f5e01f639cb6e8715b33bb725210cb0493887 (patch) | |
tree | 620b53fdd26efad56b90e0c9eff1f145ddf66c84 /xlators/mount/fuse | |
parent | a89a9d266c439800286f281655d67f4e362dec32 (diff) | |
download | glusterfs-cb8f5e01f639cb6e8715b33bb725210cb0493887.tar.gz glusterfs-cb8f5e01f639cb6e8715b33bb725210cb0493887.tar.xz glusterfs-cb8f5e01f639cb6e8715b33bb725210cb0493887.zip |
glusterfsd/main: Add ability to set oom_score_adj
Give the administrator a possibility to set oom_score_adj for glusterfs
process. Applies to Linux only.
Change-Id: Iff13c2f4cb28457871c6ebeff6130bce4a8bf543
BUG: 1336818
Signed-off-by: Oleksandr Natalenko <oleksandr@natalenko.name>
Reviewed-on: http://review.gluster.org/14399
Smoke: Gluster Build System <jenkins@build.gluster.com>
NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org>
CentOS-regression: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Jeff Darcy <jdarcy@redhat.com>
Diffstat (limited to 'xlators/mount/fuse')
-rwxr-xr-x | xlators/mount/fuse/utils/mount.glusterfs.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/xlators/mount/fuse/utils/mount.glusterfs.in b/xlators/mount/fuse/utils/mount.glusterfs.in index 0fc0cf4a4e..6c4cdfed06 100755 --- a/xlators/mount/fuse/utils/mount.glusterfs.in +++ b/xlators/mount/fuse/utils/mount.glusterfs.in @@ -230,6 +230,10 @@ start_glusterfs () cmd_line=$(echo "$cmd_line --congestion-threshold=$cong_threshold"); fi + if [ -n "$oom_score_adj" ]; then + cmd_line=$(echo "$cmd_line --oom-score-adj=$oom_score_adj"); + fi + if [ -n "$fuse_mountopts" ]; then cmd_line=$(echo "$cmd_line --fuse-mountopts=$fuse_mountopts"); fi @@ -444,6 +448,9 @@ with_options() "congestion-threshold") cong_threshold=$value ;; + "oom-score-adj") + oom_score_adj=$value + ;; "xlator-option") xlator_option=$value ;; |