lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:	Sun, 11 Oct 2015 19:03:14 -0400
From:	Paul Gortmaker <paul.gortmaker@...driver.com>
To:	Greg Kroah-Hartman <gregkh@...uxfoundation.org>
CC:	<linux-kernel@...r.kernel.org>,
	Paul Gortmaker <paul.gortmaker@...driver.com>,
	Alexandre Courbot <gnurou@...il.com>,
	Arve Hjønnevåg <arve@...roid.com>,
	Chris Rorvick <chris@...vick.com>, Felipe Balbi <balbi@...com>,
	"Gujulan Elango, Hari Prasath (H.)" <hgujulan@...teon.com>,
	Haneen Mohammed <hamohammed.sa@...il.com>,
	Markus Elfring <elfring@...rs.sourceforge.net>,
	Peter Chen <peter.chen@...escale.com>,
	Riley Andrews <riandrews@...roid.com>,
	Roberta Dobrescu <roberta.dobrescu@...il.com>,
	Robert Baldyga <r.baldyga@...sung.com>,
	Stephen Warren <swarren@...dotorg.org>,
	Tapasweni Pathak <tapaswenipathak@...il.com>,
	Thierry Reding <thierry.reding@...il.com>,
	Vincenzo Scotti <vinc94@...il.com>,
	<devel@...verdev.osuosl.org>, <linux-tegra@...r.kernel.org>
Subject: [PATCH 0/7] staging: make non-modular code explicitly non-modular

[resending; forgot to add lkml to Cc: -- sorry for those who get this 2x]

In a previous merge window, we made changes to allow better
delineation between modular and non-modular code in commit
0fd972a7d91d6e15393c449492a04d94c0b89351 ("module: relocate module_init
from init.h to module.h").  This allows us to now ensure module code
looks modular and non-modular code does not accidentally look modular
just to avoid suffering build breakage.

Here we target code that is, by nature of their Makefile and/or
Kconfig settings, only available to be built-in, but implicitly
presenting itself as being possibly modular by way of using modular
headers, macros, and functions.

The goal here is to remove that illusion of modularity from these
files, but in a way that leaves the actual runtime unchanged.
In doing so, we remove code that has never been tested and adds
no value to the tree.  And we continue the process of expecting a
level of consistency between the Kconfig/Makefile of code and the
code in use itself.

There are two exceptions to unchanged runtime here:  The first is
in emxx_udc.c driver: one previously could use sysfs to unbind the
driver which would try and use a .remove function that the linker
should have dropped as it was __exit.  We simply disable
unbind/bind for this driver.  The second is for Tegra ION memory
manager; it clearly was intended to be tristate but the makefile
did not allow it to be; that is now fixed.

Build tested on staging-testing from Sat, on ARM, since the majority
of drivers here are Android related. 

Paul.
--

Cc: Alexandre Courbot <gnurou@...il.com>
Cc: "Arve Hjønnevåg" <arve@...roid.com>
Cc: Chris Rorvick <chris@...vick.com>
Cc: Felipe Balbi <balbi@...com>
Cc: Greg Kroah-Hartman <gregkh@...uxfoundation.org>
Cc: "Gujulan Elango, Hari Prasath (H.)" <hgujulan@...teon.com>
Cc: Haneen Mohammed <hamohammed.sa@...il.com>
Cc: Markus Elfring <elfring@...rs.sourceforge.net>
Cc: Peter Chen <peter.chen@...escale.com>
Cc: Riley Andrews <riandrews@...roid.com>
Cc: Roberta Dobrescu <roberta.dobrescu@...il.com>
Cc: Robert Baldyga <r.baldyga@...sung.com>
Cc: Stephen Warren <swarren@...dotorg.org>
Cc: Tapasweni Pathak <tapaswenipathak@...il.com>
Cc: Thierry Reding <thierry.reding@...il.com>
Cc: Vincenzo Scotti <vinc94@...il.com>
Cc: devel@...verdev.osuosl.org
Cc: linux-tegra@...r.kernel.org

-- 
2.6.1
Paul Gortmaker (7):
  drivers/staging: make android ashmem.c explicitly non-modular
  drivers/staging: make android ion_page_pool.c explicitly non-modular
  drivers/staging: make android tegra_ion.c properly tristate
  drivers/staging: make android sw_sync.c explicitly non-modular
  drivers/staging: make android lowmemorykiller.c explicitly non-modular
  drivers/staging: make android timed_output.c explicitly non-modular
  drivers/staging: make emxx_udc.c explicitly non-modular

 drivers/staging/android/ashmem.c            | 20 +++-------------
 drivers/staging/android/ion/ion_page_pool.c | 10 ++------
 drivers/staging/android/ion/tegra/Makefile  |  2 +-
 drivers/staging/android/lowmemorykiller.c   | 18 ++++++--------
 drivers/staging/android/sw_sync.c           | 11 ++-------
 drivers/staging/android/timed_output.c      | 16 +++----------
 drivers/staging/emxx_udc/emxx_udc.c         | 37 ++++-------------------------
 7 files changed, 22 insertions(+), 92 deletions(-)

-- 
2.6.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ