[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Minios-devel] [UNIKRAFT PATCH] lib/uklock: Debug level for semaphore messages
Hello Simon, This patch seems fine. Reviewed-by: Sharan Santhanam <sharan.santhanam@xxxxxxxxx> Thanks & Regards Sharan On 1/30/19 6:33 PM, Simon Kuenzer wrote: Use debug prints also for semaphore initialization message. This is done in order to be inline with other messages produced by libuklock. Signed-off-by: Simon Kuenzer <simon.kuenzer@xxxxxxxxx> --- lib/uklock/semaphore.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/uklock/semaphore.c b/lib/uklock/semaphore.c index 5ed54023..c9747100 100644 --- a/lib/uklock/semaphore.c +++ b/lib/uklock/semaphore.c @@ -5,6 +5,6 @@ void uk_semaphore_init(struct uk_semaphore *s, long count) s->count = count; uk_waitq_init(&s->wait);- uk_pr_info("Initialized semaphore %p with %ld\n",- s, s->count); + uk_pr_debug("Initialized semaphore %p with %ld\n", + s, s->count); } _______________________________________________ Minios-devel mailing list Minios-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/minios-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |