2014-01-11 00:37:50 +01:00
|
|
|
/*
|
2015-04-02 22:36:54 +02:00
|
|
|
** Copyright 2007, The Android Open Source Project
|
2010-02-25 23:02:55 +01:00
|
|
|
**
|
|
|
|
** Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
** you may not use this file except in compliance with the License.
|
|
|
|
** You may obtain a copy of the License at
|
|
|
|
**
|
|
|
|
** http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
**
|
|
|
|
** Unless required by applicable law or agreed to in writing, software
|
|
|
|
** distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
** See the License for the specific language governing permissions and
|
|
|
|
** limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2014-04-30 00:49:14 +02:00
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
2010-02-25 23:02:55 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2014-04-30 00:49:14 +02:00
|
|
|
#include <unistd.h>
|
2010-02-25 23:02:55 +01:00
|
|
|
|
|
|
|
#include <cutils/iosched_policy.h>
|
|
|
|
|
2015-07-30 17:47:35 +02:00
|
|
|
#if defined(__ANDROID__)
|
2014-06-13 02:53:03 +02:00
|
|
|
#include <linux/ioprio.h>
|
2014-06-13 06:06:58 +02:00
|
|
|
#include <sys/syscall.h>
|
2014-04-30 00:49:14 +02:00
|
|
|
#define __android_unused
|
|
|
|
#else
|
|
|
|
#define __android_unused __attribute__((__unused__))
|
2014-01-11 00:37:50 +01:00
|
|
|
#endif
|
2010-02-25 23:02:55 +01:00
|
|
|
|
2014-04-30 00:49:14 +02:00
|
|
|
int android_set_ioprio(int pid __android_unused, IoSchedClass clazz __android_unused, int ioprio __android_unused) {
|
2015-07-30 17:47:35 +02:00
|
|
|
#if defined(__ANDROID__)
|
2014-06-13 02:53:03 +02:00
|
|
|
if (syscall(SYS_ioprio_set, IOPRIO_WHO_PROCESS, pid, ioprio | (clazz << IOPRIO_CLASS_SHIFT))) {
|
2010-02-25 23:02:55 +01:00
|
|
|
return -1;
|
|
|
|
}
|
2010-02-26 19:57:17 +01:00
|
|
|
#endif
|
2010-02-25 23:02:55 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-04-30 00:49:14 +02:00
|
|
|
int android_get_ioprio(int pid __android_unused, IoSchedClass *clazz, int *ioprio) {
|
2015-07-30 17:47:35 +02:00
|
|
|
#if defined(__ANDROID__)
|
2010-02-25 23:02:55 +01:00
|
|
|
int rc;
|
|
|
|
|
2014-06-13 02:53:03 +02:00
|
|
|
if ((rc = syscall(SYS_ioprio_get, IOPRIO_WHO_PROCESS, pid)) < 0) {
|
2010-02-25 23:02:55 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2014-06-13 02:53:03 +02:00
|
|
|
*clazz = (rc >> IOPRIO_CLASS_SHIFT);
|
2010-02-25 23:02:55 +01:00
|
|
|
*ioprio = (rc & 0xff);
|
2010-02-26 19:57:17 +01:00
|
|
|
#else
|
|
|
|
*clazz = IoSchedClass_NONE;
|
|
|
|
*ioprio = 0;
|
|
|
|
#endif
|
2010-02-25 23:02:55 +01:00
|
|
|
return 0;
|
|
|
|
}
|