X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fceph%2Fsrc%2Fcommon%2Fio_priority.cc;fp=src%2Fceph%2Fsrc%2Fcommon%2Fio_priority.cc;h=c635555ad682dc6534bafd241ba6939fbc67e665;hb=812ff6ca9fcd3e629e49d4328905f33eee8ca3f5;hp=0000000000000000000000000000000000000000;hpb=15280273faafb77777eab341909a3f495cf248d9;p=stor4nfv.git diff --git a/src/ceph/src/common/io_priority.cc b/src/ceph/src/common/io_priority.cc new file mode 100644 index 0000000..c635555 --- /dev/null +++ b/src/ceph/src/common/io_priority.cc @@ -0,0 +1,56 @@ +// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- +// vim: ts=8 sw=2 smarttab +/* + * Ceph - scalable distributed file system + * + * Copyright (C) 2012 Red Hat + * + * This is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software + * Foundation. See file COPYING. + * + */ + +#include +#if defined(__FreeBSD__) +#include +#endif +#ifdef __linux__ +#include /* For SYS_xxx definitions */ +#endif +#include + +#include "io_priority.h" + +pid_t ceph_gettid(void) +{ +#ifdef __linux__ + return syscall(SYS_gettid); +#else + return -ENOSYS; +#endif +} + +int ceph_ioprio_set(int whence, int who, int ioprio) +{ +#ifdef __linux__ + return syscall(SYS_ioprio_set, whence, who, ioprio); +#else + return -ENOSYS; +#endif +} + +int ceph_ioprio_string_to_class(const std::string& s) +{ + std::string l = s; + std::transform(l.begin(), l.end(), l.begin(), ::tolower); + + if (l == "idle") + return IOPRIO_CLASS_IDLE; + if (l == "be" || l == "besteffort" || l == "best effort") + return IOPRIO_CLASS_BE; + if (l == "rt" || l == "realtime" || l == "real time") + return IOPRIO_CLASS_RT; + return -EINVAL; +}