Add option losslimit in the set command

Signed-off-by: Adrien Gallouët <adrien@gallouet.fr>
This commit is contained in:
Adrien Gallouët
2019-10-23 13:52:40 +00:00
parent 8bd936929e
commit 5e0900c8ee
5 changed files with 31 additions and 2 deletions

View File

@@ -63,6 +63,24 @@ gt_set_timetolerance(int fd, unsigned long ms)
return 0;
}
static int
gt_set_losslimit(int fd, unsigned percent)
{
struct ctl_msg res, req = {
.type = CTL_LOSSLIMIT,
.percent = percent,
};
int ret = ctl_reply(fd, &res, &req);
if (ret) {
perror("set losslimit");
return 1;
}
return 0;
}
static int
gt_set_tc(int fd, int tc)
{
@@ -115,6 +133,7 @@ gt_set(int argc, char **argv)
int tc;
unsigned long kxtimeout;
unsigned long timetolerance;
unsigned losslimit;
struct argz pathz[] = {
{"dev", "NAME", &dev, argz_str},
@@ -122,6 +141,7 @@ gt_set(int argc, char **argv)
{"tc", "CS|AF|EF", &tc, gt_argz_tc},
{"kxtimeout", "SECONDS", &kxtimeout, argz_time},
{"timetolerance", "SECONDS", &timetolerance, argz_time},
{"losslimit", "PERCENT", &losslimit, argz_percent},
{NULL}};
if (argz(pathz, argc, argv))
@@ -160,6 +180,9 @@ gt_set(int argc, char **argv)
if (argz_is_set(pathz, "timetolerance"))
ret |= gt_set_timetolerance(fd, timetolerance);
if (argz_is_set(pathz, "losslimit"))
ret |= gt_set_losslimit(fd, losslimit);
ctl_delete(fd);
return ret;