<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Kconfig</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>1045a067 - remove CONFIG_ANDROID</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/android/Kconfig#1045a067</link>
        <description>remove CONFIG_ANDROIDThe ANDROID config symbol is only used to guard the binder configsymbol and to inject completely random config changes.  Remove itas it is obviously a bad idea.Acked-by: Paul E. McKenney &lt;paulmck@kernel.org&gt;Signed-off-by: Christoph Hellwig &lt;hch@lst.de&gt;Link: https://lore.kernel.org/r/20220629150102.1582425-2-hch@lst.deSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/android/Kconfig</description>
        <pubDate>Wed, 29 Jun 2022 15:01:02 +0000</pubDate>
        <dc:creator>Christoph Hellwig &lt;hch@lst.de&gt;</dc:creator>
    </item>
<item>
        <title>a7f7f624 - treewide: replace &apos;---help---&apos; in Kconfig files with &apos;help&apos;</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/android/Kconfig#a7f7f624</link>
        <description>treewide: replace &apos;---help---&apos; in Kconfig files with &apos;help&apos;Since commit 84af7a6194e4 (&quot;checkpatch: kconfig: prefer &apos;help&apos; over&apos;---help---&apos;&quot;), the number of &apos;---help---&apos; has been graduallydecreasing, but there are still more than 2400 instances.This commit finishes the conversion. While I touched the lines,I also fixed the indentation.There are a variety of indentation styles found.  a) 4 spaces + &apos;---help---&apos;  b) 7 spaces + &apos;---help---&apos;  c) 8 spaces + &apos;---help---&apos;  d) 1 space + 1 tab + &apos;---help---&apos;  e) 1 tab + &apos;---help---&apos;    (correct indentation)  f) 1 tab + 1 space + &apos;---help---&apos;  g) 1 tab + 2 spaces + &apos;---help---&apos;In order to convert all of them to 1 tab + &apos;help&apos;, I ran thefollowing commend:  $ find . -name &apos;Kconfig*&apos; | xargs sed -i &apos;s/^[[:space:]]*---help---/\thelp/&apos;Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/android/Kconfig</description>
        <pubDate>Sat, 13 Jun 2020 16:50:22 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;masahiroy@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>8ced0c62 - binder: add functions to copy to/from binder buffers</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/android/Kconfig#8ced0c62</link>
        <description>binder: add functions to copy to/from binder buffersAvoid vm_area when copying to or from binder buffers.Instead, new copy functions are added that copy fromkernel space to binder buffer space. These usekmap_atomic() and kunmap_atomic() to create temporarymappings and then memcpy() is used to copy withinthat page.Also, kmap_atomic() / kunmap_atomic() use the appropriatecache flushing to support VIVT cache architectures.Allow binder to build if CPU_CACHE_VIVT is defined.Several uses of the new functions are added here. Moreto follow in subsequent patches.Signed-off-by: Todd Kjos &lt;tkjos@google.com&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/android/Kconfig</description>
        <pubDate>Fri, 08 Feb 2019 18:35:15 +0000</pubDate>
        <dc:creator>Todd Kjos &lt;tkjos@android.com&gt;</dc:creator>
    </item>
<item>
        <title>3ad20fe3 - binder: implement binderfs</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/android/Kconfig#3ad20fe3</link>
        <description>binder: implement binderfsAs discussed at Linux Plumbers Conference 2018 in Vancouver [1] this is theimplementation of binderfs./* Abstract */binderfs is a backwards-compatible filesystem for Android&apos;s binder ipcmechanism. Each ipc namespace will mount a new binderfs instance. Mountingbinderfs multiple times at different locations in the same ipc namespacewill not cause a new super block to be allocated and hence it will be thesame filesystem instance.Each new binderfs mount will have its own set of binder devices onlyvisible in the ipc namespace it has been mounted in. All devices in a newbinderfs mount will follow the scheme binder%d and numbering will alwaysstart at 0./* Backwards compatibility */Devices requested in the Kconfig via CONFIG_ANDROID_BINDER_DEVICES for theinitial ipc namespace will work as before. They will be registered viamisc_register() and appear in the devtmpfs mount. Specifically, thestandard devices binder, hwbinder, and vndbinder will all appear in theirstandard locations in /dev. Mounting or unmounting the binderfs mount inthe initial ipc namespace will have no effect on these devices, i.e. theywill neither show up in the binderfs mount nor will they disappear when thebinderfs mount is gone./* binder-control */Each new binderfs instance comes with a binder-control device. No otherdevices will be present at first. The binder-control device can be used todynamically allocate binder devices. All requests operate on the binderfsmount the binder-control device resides in.Assuming a new instance of binderfs has been mounted at /dev/binderfsvia mount -t binderfs binderfs /dev/binderfs. Then a request to create anew binder device can be made as illustrated in [2].Binderfs devices can simply be removed via unlink()./* Implementation details */- dynamic major number allocation:  When binderfs is registered as a new filesystem it will dynamically  allocate a new major number. The allocated major number will be returned  in struct binderfs_device when a new binder device is allocated.- global minor number tracking:  Minor are tracked in a global idr struct that is capped at  BINDERFS_MAX_MINOR. The minor number tracker is protected by a global  mutex. This is the only point of contention between binderfs mounts.- struct binderfs_info:  Each binderfs super block has its own struct binderfs_info that tracks  specific details about a binderfs instance:  - ipc namespace  - dentry of the binder-control device  - root uid and root gid of the user namespace the binderfs instance    was mounted in- mountable by user namespace root:  binderfs can be mounted by user namespace root in a non-initial user  namespace. The devices will be owned by user namespace root.- binderfs binder devices without misc infrastructure:  New binder devices associated with a binderfs mount do not use the  full misc_register() infrastructure.  The misc_register() infrastructure can only create new devices in the  host&apos;s devtmpfs mount. binderfs does however only make devices appear  under its own mountpoint and thus allocates new character device nodes  from the inode of the root dentry of the super block. This will have  the side-effect that binderfs specific device nodes do not appear in  sysfs. This behavior is similar to devpts allocated pts devices and  has no effect on the functionality of the ipc mechanism itself.[1]: https://goo.gl/JL2tfX[2]: program to allocate a new binderfs binder device:     #define _GNU_SOURCE     #include &lt;errno.h&gt;     #include &lt;fcntl.h&gt;     #include &lt;stdio.h&gt;     #include &lt;stdlib.h&gt;     #include &lt;string.h&gt;     #include &lt;sys/ioctl.h&gt;     #include &lt;sys/stat.h&gt;     #include &lt;sys/types.h&gt;     #include &lt;unistd.h&gt;     #include &lt;linux/android/binder_ctl.h&gt;     int main(int argc, char *argv[])     {             int fd, ret, saved_errno;             size_t len;             struct binderfs_device device = { 0 };             if (argc &lt; 2)                     exit(EXIT_FAILURE);             len = strlen(argv[1]);             if (len &gt; BINDERFS_MAX_NAME)                     exit(EXIT_FAILURE);             memcpy(device.name, argv[1], len);             fd = open(&quot;/dev/binderfs/binder-control&quot;, O_RDONLY | O_CLOEXEC);             if (fd &lt; 0) {                     printf(&quot;%s - Failed to open binder-control device\n&quot;,                            strerror(errno));                     exit(EXIT_FAILURE);             }             ret = ioctl(fd, BINDER_CTL_ADD, &amp;device);             saved_errno = errno;             close(fd);             errno = saved_errno;             if (ret &lt; 0) {                     printf(&quot;%s - Failed to allocate new binder device\n&quot;,                            strerror(errno));                     exit(EXIT_FAILURE);             }             printf(&quot;Allocated new binder device with major %d, minor %d, and &quot;                    &quot;name %s\n&quot;, device.major, device.minor,                    device.name);             exit(EXIT_SUCCESS);     }Cc: Martijn Coenen &lt;maco@android.com&gt;Cc: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;Signed-off-by: Christian Brauner &lt;christian.brauner@ubuntu.com&gt;Acked-by: Todd Kjos &lt;tkjos@google.com&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/android/Kconfig</description>
        <pubDate>Fri, 14 Dec 2018 12:11:14 +0000</pubDate>
        <dc:creator>Christian Brauner &lt;christian@brauner.io&gt;</dc:creator>
    </item>
<item>
        <title>44d8047f - binder: use standard functions to allocate fds</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/android/Kconfig#44d8047f</link>
        <description>binder: use standard functions to allocate fdsBinder uses internal fs interfaces to allocate and install fds:__alloc_fd__fd_install__close_fdget_files_structput_files_structThese were used to support the passing of fds between processesas part of a transaction. The actual allocation and installationof the fds in the target process was handled by the sendingprocess so the standard functions, alloc_fd() and fd_install()which assume task==current couldn&apos;t be used.This patch refactors this mechanism so that the fds areallocated and installed by the target process allowing thestandard functions to be used.The sender now creates a list of fd fixups that contains thestruct *file and the address to fixup with the new fd onceit is allocated. This list is processed by the target processwhen the transaction is dequeued.A new error case is introduced by this change. If an asynctransaction with file descriptors cannot allocate newfds in the target (probably due to out of file descriptors),the transaction is discarded with a log message. In the oldimplementation this would have been detected in the sendercontext and failed prior to sending.Signed-off-by: Todd Kjos &lt;tkjos@google.com&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/android/Kconfig</description>
        <pubDate>Tue, 28 Aug 2018 20:46:25 +0000</pubDate>
        <dc:creator>Todd Kjos &lt;tkjos@android.com&gt;</dc:creator>
    </item>
<item>
        <title>2e0e3a24 - android: binder: Drop dependency on !M68K</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/android/Kconfig#2e0e3a24</link>
        <description>android: binder: Drop dependency on !M68KAs of commit 7124330dabe5b3cb (&quot;m68k/uaccess: Revive 64-bitget_user()&quot;), the 64-bit Android binder interface builds fine on m68k.Signed-off-by: Geert Uytterhoeven &lt;geert@linux-m68k.org&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/android/Kconfig</description>
        <pubDate>Wed, 06 Jun 2018 12:40:56 +0000</pubDate>
        <dc:creator>Geert Uytterhoeven &lt;geert@linux-m68k.org&gt;</dc:creator>
    </item>
<item>
        <title>1190b4e3 - ANDROID: binder: remove 32-bit binder interface.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/android/Kconfig#1190b4e3</link>
        <description>ANDROID: binder: remove 32-bit binder interface.New devices launching with Android P need to use the 64-bitbinder interface, even on 32-bit SoCs [0].This change removes the Kconfig option to select the 32-bitbinder interface. We don&apos;t think this will affect existinguserspace for the following reasons:1) The latest Android common tree is 4.14, so we don&apos;t   believe any Android devices are on kernels &gt;4.14.2) Android devices launch on an LTS release and stick with   it, so we wouldn&apos;t expect devices running on &lt;= 4.14 now   to upgrade to 4.17 or later. But even if they did, they&apos;d   rebuild the world (kernel + userspace) anyway.3) Other userspaces like &apos;anbox&apos; are already using the   64-bit interface.Note that this change doesn&apos;t remove the 32-bit UAPIitself; the reason for that is that Android userspacealways uses the latest UAPI headers from upstream, anduserspace retains 32-bit support for devices that areupgrading. This will be removed as well in 2-3 years,at which point we can remove the code from the UAPIas well.Finally, this change introduces build errors on archs where64-bit get_user/put_user is not supported, so make binderunavailable on m68k (which wouldn&apos;t want it anyway).[0]: https://android-review.googlesource.com/c/platform/build/+/595193Signed-off-by: Martijn Coenen &lt;maco@android.com&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/android/Kconfig</description>
        <pubDate>Fri, 11 May 2018 08:45:24 +0000</pubDate>
        <dc:creator>Martijn Coenen &lt;maco@google.com&gt;</dc:creator>
    </item>
<item>
        <title>b2441318 - License cleanup: add SPDX GPL-2.0 license identifier to files with no license</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/android/Kconfig#b2441318</link>
        <description>License cleanup: add SPDX GPL-2.0 license identifier to files with no licenseMany source files in the tree are missing licensing information, whichmakes it harder for compliance tools to determine the correct license.By default all files without license information are under the defaultlicense of the kernel, which is GPL version 2.Update the files which contain no license information with the &apos;GPL-2.0&apos;SPDX license identifier.  The SPDX identifier is a legally bindingshorthand, which can be used instead of the full boiler plate text.This patch is based on work done by Thomas Gleixner and Kate Stewart andPhilippe Ombredanne.How this work was done:Patches were generated and checked against linux-4.14-rc6 for a subset ofthe use cases: - file had no licensing information it it. - file was a */uapi/* one with no licensing information in it, - file was a */uapi/* one with existing licensing information,Further patches will be generated in subsequent months to fix up caseswhere non-standard license headers were used, and references to licensehad to be inferred by heuristics based on keywords.The analysis to determine which SPDX License Identifier to be applied toa file was done in a spreadsheet of side by side results from of theoutput of two independent scanners (ScanCode &amp; Windriver) producing SPDXtag:value files created by Philippe Ombredanne.  Philippe prepared thebase worksheet, and did an initial spot review of a few 1000 files.The 4.13 kernel was the starting point of the analysis with 60,537 filesassessed.  Kate Stewart did a file by file comparison of the scannerresults in the spreadsheet to determine which SPDX license identifier(s)to be applied to the file. She confirmed any determination that was notimmediately clear with lawyers working with the Linux Foundation.Criteria used to select files for SPDX license identifier tagging was: - Files considered eligible had to be source code files. - Make and config files were included as candidates if they contained &gt;5   lines of source - File already had some variant of a license header in it (even if &lt;5   lines).All documentation files were explicitly excluded.The following heuristics were used to determine which SPDX licenseidentifiers to apply. - when both scanners couldn&apos;t find any license traces, file was   considered to have no license information in it, and the top level   COPYING file license applied.   For non */uapi/* files that summary was:   SPDX license identifier                            # files   ---------------------------------------------------|-------   GPL-2.0                                              11139   and resulted in the first patch in this series.   If that file was a */uapi/* path one, it was &quot;GPL-2.0 WITH   Linux-syscall-note&quot; otherwise it was &quot;GPL-2.0&quot;.  Results of that was:   SPDX license identifier                            # files   ---------------------------------------------------|-------   GPL-2.0 WITH Linux-syscall-note                        930   and resulted in the second patch in this series. - if a file had some form of licensing information in it, and was one   of the */uapi/* ones, it was denoted with the Linux-syscall-note if   any GPL family license was found in the file or had no licensing in   it (per prior point).  Results summary:   SPDX license identifier                            # files   ---------------------------------------------------|------   GPL-2.0 WITH Linux-syscall-note                       270   GPL-2.0+ WITH Linux-syscall-note                      169   ((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause)    21   ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause)    17   LGPL-2.1+ WITH Linux-syscall-note                      15   GPL-1.0+ WITH Linux-syscall-note                       14   ((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause)    5   LGPL-2.0+ WITH Linux-syscall-note                       4   LGPL-2.1 WITH Linux-syscall-note                        3   ((GPL-2.0 WITH Linux-syscall-note) OR MIT)              3   ((GPL-2.0 WITH Linux-syscall-note) AND MIT)             1   and that resulted in the third patch in this series. - when the two scanners agreed on the detected license(s), that became   the concluded license(s). - when there was disagreement between the two scanners (one detected a   license but the other didn&apos;t, or they both detected different   licenses) a manual inspection of the file occurred. - In most cases a manual inspection of the information in the file   resulted in a clear resolution of the license that should apply (and   which scanner probably needed to revisit its heuristics). - When it was not immediately clear, the license identifier was   confirmed with lawyers working with the Linux Foundation. - If there was any question as to the appropriate license identifier,   the file was flagged for further research and to be revisited later   in time.In total, over 70 hours of logged manual review was done on thespreadsheet to determine the SPDX license identifiers to apply to thesource files by Kate, Philippe, Thomas and, in some cases, confirmationby lawyers working with the Linux Foundation.Kate also obtained a third independent scan of the 4.13 code base fromFOSSology, and compared selected files where the other two scannersdisagreed against that SPDX file, to see if there was new insights.  TheWindriver scanner is based on an older version of FOSSology in part, sothey are related.Thomas did random spot checks in about 500 files from the spreadsheetsfor the uapi headers and agreed with SPDX license identifier in thefiles he inspected. For the non-uapi files Thomas did random spot checksin about 15000 files.In initial set of patches against 4.14-rc6, 3 files were found to havecopy/paste license identifier errors, and have been fixed to reflect thecorrect identifier.Additionally Philippe spent 10 hours this week doing a detailed manualinspection and review of the 12,461 patched files from the initial patchversion early this week with: - a full scancode scan run, collecting the matched texts, detected   license ids and scores - reviewing anything where there was a license detected (about 500+   files) to ensure that the applied SPDX license was correct - reviewing anything where there was no detection but the patch license   was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied   SPDX license was correctThis produced a worksheet with 20 files needing minor correction.  Thisworksheet was then exported into 3 different .csv files for thedifferent types of files to be modified.These .csv files were then reviewed by Greg.  Thomas wrote a script toparse the csv files and add the proper SPDX tag to the file, in theformat that the file expected.  This script was further refined by Gregbased on the output to detect more types of files automatically and todistinguish between header and source .c files (which need differentcomment types.)  Finally Greg ran the script using the .csv files togenerate the patches.Reviewed-by: Kate Stewart &lt;kstewart@linuxfoundation.org&gt;Reviewed-by: Philippe Ombredanne &lt;pombredanne@nexb.com&gt;Reviewed-by: Thomas Gleixner &lt;tglx@linutronix.de&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/android/Kconfig</description>
        <pubDate>Wed, 01 Nov 2017 14:07:57 +0000</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>4175e2b4 - android: binder: Add allocator selftest</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/android/Kconfig#4175e2b4</link>
        <description>android: binder: Add allocator selftestbinder_alloc_selftest tests that alloc_new_buf handles page allocation anddeallocation properly when allocate and free buffers. The test allocates 5buffers of various sizes to cover all possible page alignment cases, andfrees the buffers using a list of exhaustive freeing order.Test: boot the device with ANDROID_BINDER_IPC_SELFTEST config optionenabled. Allocator selftest passes.Signed-off-by: Sherry Yang &lt;sherryy@android.com&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/android/Kconfig</description>
        <pubDate>Wed, 23 Aug 2017 15:46:40 +0000</pubDate>
        <dc:creator>Sherry Yang &lt;sherryy@android.com&gt;</dc:creator>
    </item>
<item>
        <title>e8d2ed7d - Revert &quot;staging: Fix build issues with new binder API&quot;</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/android/Kconfig#e8d2ed7d</link>
        <description>Revert &quot;staging: Fix build issues with new binder API&quot;This reverts commit d0bdff0db809 (&quot;staging: Fix build issues with newbinder API&quot;), because commit e38361d032f1 (&quot;ARM: 8091/2: add get_user()support for 8 byte types&quot;) has added the 64bit __get_user_asm_*implementation.Signed-off-by: Jisheng Zhang &lt;jszhang@marvell.com&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/android/Kconfig</description>
        <pubDate>Fri, 25 Aug 2017 00:39:51 +0000</pubDate>
        <dc:creator>Jisheng Zhang &lt;jszhang@marvell.com&gt;</dc:creator>
    </item>
<item>
        <title>9e18d0c8 - ANDROID: binder: add hwbinder,vndbinder to BINDER_DEVICES.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/android/Kconfig#9e18d0c8</link>
        <description>ANDROID: binder: add hwbinder,vndbinder to BINDER_DEVICES.These will be required going forward.Signed-off-by: Martijn Coenen &lt;maco@android.com&gt;Cc: stable &lt;stable@vger.kernel.org&gt; # 4.11+Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/android/Kconfig</description>
        <pubDate>Fri, 28 Jul 2017 11:56:07 +0000</pubDate>
        <dc:creator>Martijn Coenen &lt;maco@android.com&gt;</dc:creator>
    </item>
<item>
        <title>dde04eb1 - binder: Add &apos;hwbinder&apos; to the default devices</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/android/Kconfig#dde04eb1</link>
        <description>binder: Add &apos;hwbinder&apos; to the default devicesAs AOSP master is now starting to require a hwbinder device, add it tothe the default Kconfig. Having the hwbinder device when not neededshouldn&apos;t hurt anything either.Cc: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;Cc: John Stultz &lt;john.stultz@linaro.org&gt;Cc: Martijn Coenen &lt;maco@google.com&gt;Cc: Arve Hj&#248;nnev&#229;g &lt;arve@android.com&gt;Cc: Amit Pundir &lt;amit.pundir@linaro.org&gt;Cc: Serban Constantinescu &lt;serban.constantinescu@arm.com&gt;Cc: Dmitry Shmidt &lt;dimitrysh@google.com&gt;Cc: Rom Lemarchand &lt;romlem@google.com&gt;Cc: Android Kernel Team &lt;kernel-team@android.com&gt;Signed-off-by: Rob Herring &lt;robh@kernel.org&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/android/Kconfig</description>
        <pubDate>Wed, 15 Feb 2017 15:35:15 +0000</pubDate>
        <dc:creator>Rob Herring &lt;robh@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>ac4812c5 - binder: Support multiple /dev instances</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/android/Kconfig#ac4812c5</link>
        <description>binder: Support multiple /dev instancesAdd a new module parameter &apos;devices&apos;, that can beused to specify the names of the binder devicenodes we want to populate in /dev.Each device node has its own context manager, andis therefore logically separated from all the otherdevice nodes.The config option CONFIG_ANDROID_BINDER_DEVICES canbe used to set the default value of the parameter.This approach was favored over using IPC namespaces,mostly because we require a single process to be apart of multiple binder contexts, which seemed harderto achieve with namespaces.Cc: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;Cc: Martijn Coenen &lt;maco@google.com&gt;Cc: Arve Hj&#248;nnev&#229;g &lt;arve@android.com&gt;Cc: Amit Pundir &lt;amit.pundir@linaro.org&gt;Cc: Serban Constantinescu &lt;serban.constantinescu@arm.com&gt;Cc: Dmitry Shmidt &lt;dimitrysh@google.com&gt;Cc: Rom Lemarchand &lt;romlem@google.com&gt;Cc: Android Kernel Team &lt;kernel-team@android.com&gt;Signed-off-by: Martijn Coenen &lt;maco@google.com&gt;[jstultz: minor checkpatch warning fix]Signed-off-by: John Stultz &lt;john.stultz@linaro.org&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/android/Kconfig</description>
        <pubDate>Fri, 03 Feb 2017 22:40:48 +0000</pubDate>
        <dc:creator>Martijn Coenen &lt;maco@google.com&gt;</dc:creator>
    </item>
<item>
        <title>777783e0 - staging: android: binder: move to the &quot;real&quot; part of the kernel</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/android/Kconfig#777783e0</link>
        <description>staging: android: binder: move to the &quot;real&quot; part of the kernelThe Android binder code has been &quot;stable&quot; for many years now.  No matterwhat comes in the future, we are going to have to support this API, somight as well move it to the &quot;real&quot; part of the kernel as there&apos;s noreal work that needs to be done to the existing code.Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/android/Kconfig</description>
        <pubDate>Thu, 16 Oct 2014 12:40:38 +0000</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
</channel>
</rss>
