From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 368D6EADA for ; Fri, 12 Jul 2024 04:25:36 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=198.137.202.133 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1720758339; cv=none; b=u1VhVk5IDF8AmrDbyeOD/F5UtN24HClYySSGW7SssXSH/sXOYHUCY8lSYBngM7NcXPx8IyU/RItxzM2yAuu9yGoF51gfj9uujsCkOufznuu0X6/REICsc2OSC11oS8xCJmSDpRcgJhCtQsUsr5mfgojg5ZRr6mDIdtOMTntV16Q= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1720758339; c=relaxed/simple; bh=cU8FX9JFfpwb3uXgpJhQ1HRtIQHierZo0zv2K3mLcSc=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=QTgXs6W0kN2sMf38CNFkal7DogKVZB3ilniy7Brrzsr+KcPHW9SI3PeCg9Xs3xrw+rtZa/snIy6hoDy0mPklETp2KA9uWYyGG/MuGrNd/fkHVMOc3U7dOQOxur02+Dw8KdIOEBDaaUUHkxz4jpVAyV+avLkhpwZJsQPF1gcBbCI= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=infradead.org; spf=none smtp.mailfrom=bombadil.srs.infradead.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b=VyyhwMng; arc=none smtp.client-ip=198.137.202.133 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=infradead.org Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=bombadil.srs.infradead.org Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="VyyhwMng" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=In-Reply-To:Content-Type:MIME-Version :References:Message-ID:Subject:Cc:To:From:Date:Sender:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description; bh=cU8FX9JFfpwb3uXgpJhQ1HRtIQHierZo0zv2K3mLcSc=; b=VyyhwMngn6NwbAkpDnh1Bv9wU9 SVAztML7BtOKCv6s+e1yyZ4ISPdiUGkE+Y5EPdnGyYWhDl2eSfDNMua7bpMheyNvwKRQvobXUm2ud whHvroDhsE4uDl8RzNfcMxLkqUVaJitaEjQaYbC748T0V5wC9cacBV8nKzcexfDr8WGNRbgmZHGHf SsPp9K2y364ACpeJPqAwIm14Hc+vNQ4uaQMlRAVSYkXgUU5mF9JQb2LdaI94Df+NYCH7Z4A44ZXGS V4Vmg5yWI4XMVF/MIQZHJ27VwyuVZJ7AhbcnmwZeepHrCtJ3vfFETlndrhxgdyr8svx0z+CkvF0Rs R13M/3iQ==; Received: from hch by bombadil.infradead.org with local (Exim 4.97.1 #2 (Red Hat Linux)) id 1sS7qe-0000000GNXU-2ORI; Fri, 12 Jul 2024 04:25:32 +0000 Date: Thu, 11 Jul 2024 21:25:32 -0700 From: Christoph Hellwig To: Suren Baghdasaryan Cc: akpm@linux-foundation.org, kent.overstreet@linux.dev, vbabka@suse.cz, pasha.tatashin@soleen.com, souravpanda@google.com, keescook@chromium.org, linux-kernel@vger.kernel.org, linux-mm@kvack.org, kernel test robot Subject: Re: [PATCH 1/1] alloc_tag: Export memory allocation profiling symbols used by modules Message-ID: References: <20240711204626.1669138-1-surenb@google.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20240711204626.1669138-1-surenb@google.com> X-SRS-Rewrite: SMTP reverse-path rewritten from by bombadil.infradead.org. See http://www.infradead.org/rpr.html On Thu, Jul 11, 2024 at 01:46:26PM -0700, Suren Baghdasaryan wrote: > +EXPORT_SYMBOL(page_ext_get); > +EXPORT_SYMBOL(page_ext_put); These really have no business being exported, especially non-GPL. Please rework whatever interfaces need them to be be moved out of line.