<?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 Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>ceb8bf2c - module: Convert default symbol namespace to string literal</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/storage/Makefile#ceb8bf2c</link>
        <description>module: Convert default symbol namespace to string literalCommit cdd30ebb1b9f (&quot;module: Convert symbol namespace to stringliteral&quot;) only converted MODULE_IMPORT_NS() and EXPORT_SYMBOL_NS(),leaving DEFAULT_SYMBOL_NAMESPACE as a macro expansion.This commit converts DEFAULT_SYMBOL_NAMESPACE in the same way to avoidannoyance for the default namespace as well.Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;Reviewed-by: Uwe Kleine-K&#246;nig &lt;u.kleine-koenig@baylibre.com&gt;Signed-off-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;

            List of files:
            /linux-6.15/drivers/usb/storage/Makefile</description>
        <pubDate>Tue, 03 Dec 2024 10:21:07 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;masahiroy@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>32bca2df - usb-storage: export symbols in USB_STORAGE namespace</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/storage/Makefile#32bca2df</link>
        <description>usb-storage: export symbols in USB_STORAGE namespaceModules using these symbols are required to explicitly import thenamespace. This patch was generated with the following steps and servesas a reference to use the symbol namespace feature: 1) Define DEFAULT_SYMBOL_NAMESPACE in the corresponding Makefile 2) make  (see warnings during modpost about missing imports) 3) make nsdepsInstead of a DEFAULT_SYMBOL_NAMESPACE definition, the EXPORT_SYMBOL_NSvariants can be used to explicitly specify the namespace. The advantageof the method used here is that newly added symbols are automaticallyexported and existing ones are exported without touching theirrespective EXPORT_SYMBOL macro expansion.Reviewed-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;Signed-off-by: Matthias Maennich &lt;maennich@google.com&gt;Signed-off-by: Jessica Yu &lt;jeyu@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/usb/storage/Makefile</description>
        <pubDate>Fri, 06 Sep 2019 10:32:35 +0000</pubDate>
        <dc:creator>Matthias Maennich &lt;maennich@google.com&gt;</dc:creator>
    </item>
<item>
        <title>9cc342f6 - treewide: prefix header search paths with $(srctree)/</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/storage/Makefile#9cc342f6</link>
        <description>treewide: prefix header search paths with $(srctree)/Currently, the Kbuild core manipulates header search paths in a crazyway [1].To fix this mess, I want all Makefiles to add explicit $(srctree)/ tothe search paths in the srctree. Some Makefiles are already written inthat way, but not all. The goal of this work is to make the notationconsistent, and finally get rid of the gross hacks.Having whitespaces after -I does not matter since commit 48f6e3cf5bc6(&quot;kbuild: do not drop -I without parameter&quot;).[1]: https://patchwork.kernel.org/patch/9632347/Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;

            List of files:
            /linux-6.15/drivers/usb/storage/Makefile</description>
        <pubDate>Mon, 13 May 2019 06:22:16 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;yamada.masahiro@socionext.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/usb/storage/Makefile#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/usb/storage/Makefile</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>f61870ee - usb: remove libusual</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/storage/Makefile#f61870ee</link>
        <description>usb: remove libusualThe &quot;Low Performance USB Block driver&quot; has been removed which a user oflibusual. Now we have only the usb-storage driver as the only driver intree. This makes libusual needless.This patch removes libusal, fixes up all users. The usual-table is nowlinked into usb-storage.usb_usual.h remains in public include directory because some stagingusers seem to need it.Signed-off-by: Sebastian Andrzej Siewior &lt;sebastian@breakpoint.cc&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/usb/storage/Makefile</description>
        <pubDate>Tue, 28 Aug 2012 20:37:13 +0000</pubDate>
        <dc:creator>Sebastian Andrzej Siewior &lt;sebastian@breakpoint.cc&gt;</dc:creator>
    </item>
<item>
        <title>41e568d1 - Staging: Merge ENE UB6250 SD card codes from keucr to drivers/usb/storage</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/storage/Makefile#41e568d1</link>
        <description>Staging: Merge ENE UB6250 SD card codes from keucr to drivers/usb/storageThe usb portion of this driver can now go into drivers/usb/storage.This leaves the non-usb portion of the code still in staging.Signed-off-by: Huajun Li &lt;huajun.li.lee@gmail.com&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

            List of files:
            /linux-6.15/drivers/usb/storage/Makefile</description>
        <pubDate>Fri, 04 Mar 2011 02:56:18 +0000</pubDate>
        <dc:creator>huajun li &lt;huajun.li.lee@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>50a6cb93 - USB: usb_storage: add ums-realtek driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/storage/Makefile#50a6cb93</link>
        <description>USB: usb_storage: add ums-realtek driverums_realtek is used to support the power-saving functionfor Realtek RTS51xx USB card readers.Signed-off-by: wwang &lt;wei_wang@realsil.com.cn&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

            List of files:
            /linux-6.15/drivers/usb/storage/Makefile</description>
        <pubDate>Fri, 14 Jan 2011 08:53:34 +0000</pubDate>
        <dc:creator>wwang &lt;wei_wang@realsil.com.cn&gt;</dc:creator>
    </item>
<item>
        <title>0a2b8a0d - usb: makefile cleanup</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/storage/Makefile#0a2b8a0d</link>
        <description>usb: makefile cleanupFor all modules, change &lt;module&gt;-objs to &lt;module&gt;-y; removeif-statements and replace with lists using the kbuild idiom; moveflags to the top of the file; and fix alignment while trying tomaintain the original scheme in each file.None of the dependencies are modified.Signed-off-by: matt mooney &lt;mfm@muteddisk.com&gt;Acked-by: Sam Ravnborg &lt;sam@ravnborg.org&gt;Acked-by: Felipe Balbi &lt;balbi@ti.com&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

            List of files:
            /linux-6.15/drivers/usb/storage/Makefile</description>
        <pubDate>Thu, 07 Oct 2010 02:03:26 +0000</pubDate>
        <dc:creator>matt mooney &lt;mfm@muteddisk.com&gt;</dc:creator>
    </item>
<item>
        <title>25013315 - usb: change to new flag variable</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/storage/Makefile#25013315</link>
        <description>usb: change to new flag variableReplace EXTRA_CFLAGS with ccflags-y.Signed-off-by: matt mooney &lt;mfm@muteddisk.com&gt;Acked-by: WANG Cong &lt;xiyou.wangcong@gmail.com&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

            List of files:
            /linux-6.15/drivers/usb/storage/Makefile</description>
        <pubDate>Fri, 24 Sep 2010 19:17:33 +0000</pubDate>
        <dc:creator>matt mooney &lt;mfm@muteddisk.com&gt;</dc:creator>
    </item>
<item>
        <title>115bb1ff - USB: Add UAS driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/storage/Makefile#115bb1ff</link>
        <description>USB: Add UAS driverUSB Attached SCSI is a new protocol specified jointly by the SCSI T10committee and the USB Implementors Forum.Signed-off-by: Matthew Wilcox &lt;willy@linux.intel.com&gt;Cc: Matthew Dharm &lt;mdharm-usb@one-eyed-alien.net&gt;[mina86@mina86.com: updated to use new USB_ prefix]Signed-off-by: Michal Nazarewicz &lt;mina86@mina86.com&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

            List of files:
            /linux-6.15/drivers/usb/storage/Makefile</description>
        <pubDate>Thu, 07 Oct 2010 11:05:23 +0000</pubDate>
        <dc:creator>Matthew Wilcox &lt;matthew.r.wilcox@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>dfc15e89 - usb-storage: fix mistake in Makefile</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/storage/Makefile#dfc15e89</link>
        <description>usb-storage: fix mistake in MakefileThis patch (as1228) fixes a Makefile error introduced when thesubdrivers in usb-storage were split out into separate modules.  Theintention is that when CONFIG_USB_LIBUSUAL is set, libusual.o andusual-tables.o should be combined into a single object file (calledusb-libusual).  The current Makefile will instead create two separateobjects, and the result won&apos;t load properly.Signed-off-by: Alan Stern &lt;stern@rowland.harvard.edu&gt;Reported-and-tested-by: Alan Jenkins &lt;sourcejedi.lkml@googlemail.com&gt;Reported-and-tested-by: Mike Galbraith &lt;efault@gmx.de&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

            List of files:
            /linux-6.15/drivers/usb/storage/Makefile</description>
        <pubDate>Thu, 09 Apr 2009 18:59:44 +0000</pubDate>
        <dc:creator>Alan Stern &lt;stern@rowland.harvard.edu&gt;</dc:creator>
    </item>
<item>
        <title>9cfb95ef - usb-storage: make onetouch a separate module</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/storage/Makefile#9cfb95ef</link>
        <description>usb-storage: make onetouch a separate moduleThis patch (as1217) converts usb-storage&apos;s onetouch subdriver into aseparate module.Signed-off-by: Alan Stern &lt;stern@rowland.harvard.edu&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

            List of files:
            /linux-6.15/drivers/usb/storage/Makefile</description>
        <pubDate>Thu, 12 Feb 2009 19:48:33 +0000</pubDate>
        <dc:creator>Alan Stern &lt;stern@rowland.harvard.edu&gt;</dc:creator>
    </item>
<item>
        <title>c1033784 - usb-storage: make karma a separate module</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/storage/Makefile#c1033784</link>
        <description>usb-storage: make karma a separate moduleThis patch (as1216) converts usb-storage&apos;s karma subdriver into aseparate module.Signed-off-by: Alan Stern &lt;stern@rowland.harvard.edu&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

            List of files:
            /linux-6.15/drivers/usb/storage/Makefile</description>
        <pubDate>Thu, 12 Feb 2009 19:48:26 +0000</pubDate>
        <dc:creator>Alan Stern &lt;stern@rowland.harvard.edu&gt;</dc:creator>
    </item>
<item>
        <title>a74bba3b - usb-storage: make alauda a separate module</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/storage/Makefile#a74bba3b</link>
        <description>usb-storage: make alauda a separate moduleThis patch (as1215) converts usb-storage&apos;s alauda subdriver into aseparate module.Signed-off-by: Alan Stern &lt;stern@rowland.harvard.edu&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

            List of files:
            /linux-6.15/drivers/usb/storage/Makefile</description>
        <pubDate>Thu, 12 Feb 2009 19:48:22 +0000</pubDate>
        <dc:creator>Alan Stern &lt;stern@rowland.harvard.edu&gt;</dc:creator>
    </item>
<item>
        <title>a9fb6d05 - usb-storage: make jumpshot a separate module</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/storage/Makefile#a9fb6d05</link>
        <description>usb-storage: make jumpshot a separate moduleThis patch (as1214) converts usb-storage&apos;s jumpshot subdriver into aseparate module.Signed-off-by: Alan Stern &lt;stern@rowland.harvard.edu&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

            List of files:
            /linux-6.15/drivers/usb/storage/Makefile</description>
        <pubDate>Thu, 12 Feb 2009 19:48:19 +0000</pubDate>
        <dc:creator>Alan Stern &lt;stern@rowland.harvard.edu&gt;</dc:creator>
    </item>
<item>
        <title>2cbbf357 - usb-storage: make datafab a separate module</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/storage/Makefile#2cbbf357</link>
        <description>usb-storage: make datafab a separate moduleThis patch (as1213) converts usb-storage&apos;s datafab subdriver into aseparate module.Signed-off-by: Alan Stern &lt;stern@rowland.harvard.edu&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

            List of files:
            /linux-6.15/drivers/usb/storage/Makefile</description>
        <pubDate>Thu, 12 Feb 2009 19:48:15 +0000</pubDate>
        <dc:creator>Alan Stern &lt;stern@rowland.harvard.edu&gt;</dc:creator>
    </item>
<item>
        <title>0d62939f - usb-storage: make freecom a separate module</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/storage/Makefile#0d62939f</link>
        <description>usb-storage: make freecom a separate moduleThis patch (as1212) converts usb-storage&apos;s freecom subdriver into aseparate module.Signed-off-by: Alan Stern &lt;stern@rowland.harvard.edu&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

            List of files:
            /linux-6.15/drivers/usb/storage/Makefile</description>
        <pubDate>Thu, 12 Feb 2009 19:48:11 +0000</pubDate>
        <dc:creator>Alan Stern &lt;stern@rowland.harvard.edu&gt;</dc:creator>
    </item>
<item>
        <title>26d6818f - usb-storage: make shuttle_usbat a separate module</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/storage/Makefile#26d6818f</link>
        <description>usb-storage: make shuttle_usbat a separate moduleThis patch (as1211) converts usb-storage&apos;s shuttle_usbat subdriverinto a separate module.Signed-off-by: Alan Stern &lt;stern@rowland.harvard.edu&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

            List of files:
            /linux-6.15/drivers/usb/storage/Makefile</description>
        <pubDate>Thu, 12 Feb 2009 19:48:08 +0000</pubDate>
        <dc:creator>Alan Stern &lt;stern@rowland.harvard.edu&gt;</dc:creator>
    </item>
<item>
        <title>fcdb5140 - usb-storage: make cypress_atacb a separate module</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/storage/Makefile#fcdb5140</link>
        <description>usb-storage: make cypress_atacb a separate moduleThis patch (as1210) converts usb-storage&apos;s cypress_atacb subdriverinto a separate module.Signed-off-by: Alan Stern &lt;stern@rowland.harvard.edu&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

            List of files:
            /linux-6.15/drivers/usb/storage/Makefile</description>
        <pubDate>Thu, 12 Feb 2009 19:48:04 +0000</pubDate>
        <dc:creator>Alan Stern &lt;stern@rowland.harvard.edu&gt;</dc:creator>
    </item>
<item>
        <title>70fcc005 - usb-storage: make sddr55 a separate module</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/storage/Makefile#70fcc005</link>
        <description>usb-storage: make sddr55 a separate moduleThis patch (as1209) converts usb-storage&apos;s sddr55 subdriver into aseparate module.Signed-off-by: Alan Stern &lt;stern@rowland.harvard.edu&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

            List of files:
            /linux-6.15/drivers/usb/storage/Makefile</description>
        <pubDate>Thu, 12 Feb 2009 19:47:59 +0000</pubDate>
        <dc:creator>Alan Stern &lt;stern@rowland.harvard.edu&gt;</dc:creator>
    </item>
</channel>
</rss>
