Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753209AbdFUQ5r (ORCPT ); Wed, 21 Jun 2017 12:57:47 -0400 Received: from mx1.redhat.com ([209.132.183.28]:34586 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752717AbdFUQ5p (ORCPT ); Wed, 21 Jun 2017 12:57:45 -0400 DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 2766E19D28C Authentication-Results: ext-mx05.extmail.prod.ext.phx2.redhat.com; dmarc=fail (p=none dis=none) header.from=gmail.com Authentication-Results: ext-mx05.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=marcelo.leitner@gmail.com DKIM-Filter: OpenDKIM Filter v2.11.0 mx1.redhat.com 2766E19D28C Date: Wed, 21 Jun 2017 13:57:35 -0300 From: Marcelo Ricardo Leitner To: Denys Vlasenko Cc: linux-kernel@vger.kernel.org, Vlad Yasevich , Neil Horman , David Miller , linux-sctp@vger.kernel.org, netdev@vger.kernel.org Subject: Re: [PATCH] net/sctp/ulpevent.c: Deinline sctp_ulpevent_set_owner, save 1616 bytes Message-ID: <20170621165734.GF18138@localhost.localdomain> References: <20170621162809.4305-1-dvlasenk@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170621162809.4305-1-dvlasenk@redhat.com> User-Agent: Mutt/1.8.0 (2017-02-23) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.29]); Wed, 21 Jun 2017 16:57:40 +0000 (UTC) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1651 Lines: 45 On Wed, Jun 21, 2017 at 06:28:09PM +0200, Denys Vlasenko wrote: > This function compiles to 147 bytes of machine code. 13 callsites. > > I'm no expert on SCTP events, but quick reading of SCTP docs tells me that > SCTP events are not happening on every packet. > They are ASSOC_CHANGE, PEER_ADDR_CHANGE, REMOTE_ERROR and such. > Does not look performance critical. > > Signed-off-by: Denys Vlasenko > CC: Vlad Yasevich > CC: Neil Horman > CC: David Miller > CC: linux-sctp@vger.kernel.org > CC: netdev@vger.kernel.org > CC: linux-kernel@vger.kernel.org > --- > net/sctp/ulpevent.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/net/sctp/ulpevent.c b/net/sctp/ulpevent.c > index ec2b3e0..049aa5a 100644 > --- a/net/sctp/ulpevent.c > +++ b/net/sctp/ulpevent.c > @@ -88,7 +88,7 @@ int sctp_ulpevent_is_notification(const struct sctp_ulpevent *event) > /* Hold the association in case the msg_name needs read out of > * the association. > */ > -static inline void sctp_ulpevent_set_owner(struct sctp_ulpevent *event, > +static void sctp_ulpevent_set_owner(struct sctp_ulpevent *event, > const struct sctp_association *asoc) Please fix the alignment here --------^ the const should start after the '(' column, as it was before the patch. Thanks > { > struct sctp_chunk *chunk = event->chunk; > -- > 1.8.3.1 > > -- > To unsubscribe from this list: send the line "unsubscribe linux-sctp" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html >