summaryrefslogtreecommitdiffstats
path: root/Documentation/SAK.txt
Commit message (Collapse)AuthorAgeFilesLines
* SAK.txt: standardize document formatMauro Carvalho Chehab2017-07-141-31/+34
| | | | | | | | | | | | | | | | | Each text file under Documentation follows a different format. Some doesn't even have titles! Change its representation to follow the adopted standard, using ReST markups for it to be parseable by Sphinx: - mark document title; - use :Author: and :Date: for authorship; - adjust notation for literals and bold; - mark literal blocks; - adjust identation. Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com> Signed-off-by: Jonathan Corbet <corbet@lwn.net>
* Remove Andrew Morton's old email accountsFrancois Cami2008-10-161-1/+1
| | | | | | | | | People can use the real name an an index into MAINTAINERS to find the current email address. Signed-off-by: Francois Cami <francois.cami@free.fr> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
* Linux-2.6.12-rc2Linus Torvalds2005-04-171-0/+88
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
class="hl opt">= 0; EXPORT_SYMBOL_GPL(edac_err_assert); int edac_report_status = EDAC_REPORTING_ENABLED; EXPORT_SYMBOL_GPL(edac_report_status); static int __init edac_report_setup(char *str) { if (!str) return -EINVAL; if (!strncmp(str, "on", 2)) set_edac_report_status(EDAC_REPORTING_ENABLED); else if (!strncmp(str, "off", 3)) set_edac_report_status(EDAC_REPORTING_DISABLED); else if (!strncmp(str, "force", 5)) set_edac_report_status(EDAC_REPORTING_FORCE); return 0; } __setup("edac_report=", edac_report_setup); /* * called to determine if there is an EDAC driver interested in * knowing an event (such as NMI) occurred */ int edac_handler_set(void) { if (edac_op_state == EDAC_OPSTATE_POLL) return 0; return atomic_read(&edac_handlers); } EXPORT_SYMBOL_GPL(edac_handler_set); /* * handler for NMI type of interrupts to assert error */ void edac_atomic_assert_error(void) { edac_err_assert++; } EXPORT_SYMBOL_GPL(edac_atomic_assert_error);