From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752254AbcKGWbz (ORCPT ); Mon, 7 Nov 2016 17:31:55 -0500 Received: from mail-qt0-f175.google.com ([209.85.216.175]:36026 "EHLO mail-qt0-f175.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751609AbcKGWbw (ORCPT ); Mon, 7 Nov 2016 17:31:52 -0500 Date: Mon, 7 Nov 2016 17:31:50 -0500 (EST) From: Nicolas Pitre To: John Stultz , Michal Marek cc: Richard Cochran , Paul Bolle , Thomas Gleixner , Josh Triplett , Edward Cree , netdev@vger.kernel.org, linux-kbuild@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v3 0/4] make POSIX timers optional with some Kconfig help In-Reply-To: <1478556899-2951-1-git-send-email-nicolas.pitre@linaro.org> Message-ID: References: <1478556899-2951-1-git-send-email-nicolas.pitre@linaro.org> User-Agent: Alpine 2.20 (LFD 67 2015-01-07) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, 7 Nov 2016, Nicolas Pitre wrote: > Many embedded systems don't need the full POSIX timer support. > Configuring them out provides a nice kernel image size reduction. > > When POSIX timers are configured out, the PTP clock subsystem should be > left out as well. However a bunch of ethernet drivers currently *select* > the later in their Kconfig entries. Therefore some more work was needed > to break that hard dependency from those drivers without preventing their > usage altogether. > > Therefore this series also includes kconfig changes to implement a new > keyword to express some reverse dependencies like "select" does, named > "imply", and still allowing for the target config symbol to be disabled > if the user or a direct dependency says so. > > At this point I'd like to gather ACKs especially from people in the "To" > field. Ideally this would need to go upstream as a single series to avoid > cross subsystem dependency issues. So far it was suggested that this should go > via the kbuild tree. This is also available here for those who prefer a git tree: git://git.linaro.org/people/nicolas.pitre/linux/ configurable_posix_timers Nicolas