From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 37D61C001DB for ; Mon, 14 Aug 2023 15:46:10 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229829AbjHNPpj (ORCPT ); Mon, 14 Aug 2023 11:45:39 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:45988 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232624AbjHNPpc (ORCPT ); Mon, 14 Aug 2023 11:45:32 -0400 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 6298910CE for ; Mon, 14 Aug 2023 08:44:44 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1692027883; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=yE75F2EGgSeXTq4NKslfolyeXZM9EyLuvwTklUz0AQw=; b=R9H8B9mCcvxb3OfavTDxAPXUIqXI/5QD7IE8S9eh09Wh+vi3dnFlucgm4ISi1wLicTs64t QS1DjlvAONM7rPFcT/zmi6rldQNY7V3Qa9Zl6pY+PxtAk3VzxqCpImnFpfumsA6KTRYZXU Xdfs8t8QIWbb0OgK495cAzRpAQM5jI0= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-418-HR7wfwXAOL2NaZaVn00Zpg-1; Mon, 14 Aug 2023 11:44:37 -0400 X-MC-Unique: HR7wfwXAOL2NaZaVn00Zpg-1 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.rdu2.redhat.com [10.11.54.8]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 70231802A6E; Mon, 14 Aug 2023 15:44:36 +0000 (UTC) Received: from dhcp-27-174.brq.redhat.com (unknown [10.45.225.27]) by smtp.corp.redhat.com (Postfix) with SMTP id 922B7C15BAD; Mon, 14 Aug 2023 15:44:34 +0000 (UTC) Received: by dhcp-27-174.brq.redhat.com (nbSMTP-1.00) for uid 1000 oleg@redhat.com; Mon, 14 Aug 2023 17:43:53 +0200 (CEST) Date: Mon, 14 Aug 2023 17:43:51 +0200 From: Oleg Nesterov To: "Eric W. Biederman" Cc: Petr Skocik , Kees Cook , Thomas Gleixner , Peter Zijlstra , Marco Elver , linux-kernel@vger.kernel.org Subject: Re: [PATCH] signal: Fix the error return of kill -1 Message-ID: <20230814154351.GA4203@redhat.com> References: <20221122161240.137570-1-pskocik@gmail.com> <202211220913.AF86992@keescook> <878rai7u0l.fsf@email.froward.int.ebiederm.org> <336ae9be-c66c-d87f-61fe-b916e9f04ffc@gmail.com> <87pm3t2rvl.fsf@email.froward.int.ebiederm.org> <87jzu12pjh.fsf_-_@email.froward.int.ebiederm.org> <20230814140652.GA30596@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230814140652.GA30596@redhat.com> User-Agent: Mutt/1.5.24 (2015-08-30) X-Scanned-By: MIMEDefang 3.1 on 10.11.54.8 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 08/14, Oleg Nesterov wrote: > > Why do we need the "bool found" variable ? Afacis > > } else { > bool success = false; > int retval = -ESRCH; > struct task_struct * p; > > for_each_process(p) { > if (task_pid_vnr(p) > 1 && > !same_thread_group(p, current)) { > int err = group_send_sig_info(sig, info, p, > PIDTYPE_MAX); > success |= !err; > retval = err; > } > } > ret = success ? 0 : retval; > } > > does the same? Even simpler } else { struct task_struct * p; bool success = false; int err = -ESRCH; for_each_process(p) { if (task_pid_vnr(p) > 1 && !same_thread_group(p, current)) { err = group_send_sig_info(sig, info, p, PIDTYPE_MAX); success |= !err; } } ret = success ? 0 : err; } unless I missed something... Oleg.