Android 5.1.1 Release 0.24
manta_defconfig: remove SYSVIPC

System V IPCs are not compliant with Android's application lifecycle
because allocated resources are not freeable by the low memory killer.
This lead to global kernel resource leakage.

For example, there is no way to automatically release a SysV
semaphore allocated in the kernel when:
- a buggy or malicious process exits
- a non-buggy and non-malicious process crashes or is explicitly
  killed.

Killing processes automatically to make room for new ones is an
important part of Android's application lifecycle implementation.
This means that, even assuming only non-buggy and non-malicious
code, it is very likely that over time, the kernel global tables
used to implement SysV IPCs will fill up.

Signed-off-by: Jeff Vander Stoep <jeffv@google.com>
Signed-off-by: Mark Salyzyn <salyzyn@google.com>
Bug: 22300191
Change-Id: Icecf2743dcf6ae12b7a8539a52ead3576b82f748
1 file changed