diff options
author | pfg <pfg@FreeBSD.org> | 2017-02-03 16:36:14 +0000 |
---|---|---|
committer | pfg <pfg@FreeBSD.org> | 2017-02-03 16:36:14 +0000 |
commit | 121becb41a0a23720d6adecb9f927436c83f2e6f (patch) | |
tree | 3ab048c9fa1b5444c6e2a4ad25774898e6a94fb6 | |
parent | 32907e957cc6bd4422cebac1f79ff9697c366fb0 (diff) | |
download | FreeBSD-src-121becb41a0a23720d6adecb9f927436c83f2e6f.zip FreeBSD-src-121becb41a0a23720d6adecb9f927436c83f2e6f.tar.gz |
MFC r312001:
Remove __nonnull() attributes from x86 machine check architecture.
In this case the attributes serve little purpose as they just don't
enforce run time checks, If anything the attributes would cause NULL pointer
checks to be ignored but there are no such checks so the only effect is
cosmetic.
Reviewed by: jhb, avg
-rw-r--r-- | sys/x86/x86/mca.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/x86/x86/mca.c b/sys/x86/x86/mca.c index 1bb8854..5278784 100644 --- a/sys/x86/x86/mca.c +++ b/sys/x86/x86/mca.c @@ -249,7 +249,7 @@ mca_error_mmtype(uint16_t mca_error) return ("???"); } -static int __nonnull(1) +static int mca_mute(const struct mca_record *rec) { @@ -278,7 +278,7 @@ mca_mute(const struct mca_record *rec) } /* Dump details about a single machine check. */ -static void __nonnull(1) +static void mca_log(const struct mca_record *rec) { uint16_t mca_error; @@ -417,7 +417,7 @@ mca_log(const struct mca_record *rec) printf("MCA: Misc 0x%llx\n", (long long)rec->mr_misc); } -static int __nonnull(2) +static int mca_check_status(int bank, struct mca_record *rec) { uint64_t status; @@ -484,7 +484,7 @@ mca_refill(void *context, int pending) mca_fill_freelist(); } -static void __nonnull(2) +static void mca_record_entry(enum scan_mode mode, const struct mca_record *record) { struct mca_internal *rec; |