commit | ce60d04fb68263eb69801ea240f9771fcd6c9449 | [log] [tgz] |
---|---|---|
author | Punit Vara <punit.vara@intel.com> | Mon Nov 13 12:26:43 2017 +0530 |
committer | Andrew Boie <andrewboie@gmail.com> | Tue Nov 14 09:49:00 2017 -0800 |
tree | 7b283bc9cef4a18e94858d6801f59aff00356e8a | |
parent | 8cf7ff5e2a2e5ae3d27d5edebdbd911ad801815a [diff] |
kernel: sched.c: Fix datatype mismatch in comparision All arguments comes from userspace has data type u32_t but base.prio has data type of s8_t. Comparision between s8_t and u32_t cannot be done. That's why typecast priority coming from userspace(prio) to s8_t data type. Signed-off-by: Punit Vara <punit.vara@intel.com>