[PATCH] power: supply: add "Wireless" to power_supply_type and power_supply_type_text

2020-07-29 Thread Jeehong Kim
ext. I hope this will not only synchronize the text values with android platform, but also help other platforms. Signed-off-by: Jeehong Kim --- drivers/power/supply/power_supply_sysfs.c | 1 + include/linux/power_supply.h | 1 + 2 files changed, 2 insertions(+) diff --git a/drivers/pow

[PATCH] power: supply: add "Wireless" to power_supply_type and power_supply_type_text

2020-07-14 Thread Jeehong Kim
ext. I hope this will not only synchronize the text values with android platform, but also help other platforms. Reported-by: Jaeho Song Signed-off-by: Dohyung Kim Signed-off-by: Jeehong Kim --- drivers/power/supply/power_supply_sysfs.c | 1 + include/linux/power_supply.h | 1 +

Re: [PATCH V2] sched/fair: Fix that tasks are not constrained by cfs_b->quota on hotplug core, when hotplug core is offline and then online.

2016-09-26 Thread Jeehong Kim
On 2016년 09월 23일 01:53, bseg...@google.com wrote: > Jeehong Kim writes: > >>> Peter Zijlstra writes: >>> >>>> You forgot to Cc Ben, who gave you feedback on v1, which is rather poor >>>> style. Also, I don't see how kernel-janitors is

Re: [PATCH V2] sched/fair: Fix that tasks are not constrained by cfs_b->quota on hotplug core, when hotplug core is offline and then online.

2016-09-22 Thread Jeehong Kim
>> >> On Tue, Aug 30, 2016 at 10:12:40PM +0900, Jeehong Kim wrote: >>> In case that CONFIG_HOTPLUG_CPU and CONFIG_CFS_BANDWIDTH is turned on >>> and tasks in bandwidth controlled task group run on hotplug core, >>> the tasks are not controlled by cfs_b->quota

Re: [PATCH V2] sched/fair: Fix that tasks are not constrained by cfs_b->quota on hotplug core, when hotplug core is offline and then online.

2016-09-01 Thread Jeehong Kim
ack on v1, which is rather poor > style. Also, I don't see how kernel-janitors is relevant to this patch. > This is very much not a janitorial thing. > > (also, why send it twice?) > > On Tue, Aug 30, 2016 at 10:12:40PM +0900, Jeehong Kim wrote: >> In case that CONFIG_HOTP

[PATCH V2] sched/fair: Fix that tasks are not constrained by cfs_b->quota on hotplug core, when hotplug core is offline and then online.

2016-08-30 Thread Jeehong Kim
me_enabled. To resolve this problem, this patch makes update_runtime_enabled() registers cfs_b->quota by using walk_tg_tree_from(). Signed-off-by: Jeehong Kim --- V2: update_runtime_enabled() walks the whole tg tree, instead of register quota on every enqueue. kernel/sched/fair.c | 32 +++

[PATCH V2] sched/fair: Fix that tasks are not constrained by cfs_b->quota on hotplug core, when hotplug core is offline and then online.

2016-08-30 Thread Jeehong Kim
me_enabled. To resolve this problem, this patch makes update_runtime_enabled() registers cfs_b->quota by using walk_tg_tree_from(). Signed-off-by: Jeehong Kim --- kernel/sched/fair.c | 32 +--- 1 file changed, 21 insertions(+), 11 deletions(-) diff --git a/ke

[PATCH] sched/fair: Fix that tasks are not constrained by cfs_b->quota on hotplug core, when hotplug core is offline and then online.

2016-08-26 Thread Jeehong Kim
s_rq->runtime_enabled. To resolve this problem, this patch registers cfs_b->quota on cfs_rq->runtime_enabled after list_add_leaf_cfs_rq() for every enqueue_entity(). Signed-off-by: Jeehong Kim --- kernel/sched/fair.c | 7 +++ 1 file changed, 7 insertions(+) diff --git a/kernel/