#!/bin/sh # A script to dump mixed source code & assembly # with correct relocations from System.map # Requires the following lines in makefile: #%.lst: %.c # $(CC) $(c_flags) -g -c -o $*.o $< && # $(srctree)/scripts/makelst $*.o System.map $(OBJDUMP) > $@ # # Copyright (C) 2000 IBM Corporation # Author(s): DJ Barrow (djbarrow@de.ibm.com,barrow_dj@yahoo.com) # William Stearns # # awk style field access field() { shift $1 ; echo $1 } t1=`$3 --syms $1 | grep .text | grep -m1 " F "` if [ -n "$t1" ]; then t2=`field 6 $t1` if [ ! -r $2 ]; then echo "No System.map" >&2 else t3=`grep $t2 $2` t4=`field 1 $t3` t5=`field 1 $t1` t6=`printf "%lu" $((0x$t4 - 0x$t5))` fi fi $3 -r --source --adjust-vma=${t6:-0} $1 it.cgi/'>index : net-next.git
net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorBjorn Helgaas <bhelgaas@google.com>2016-09-06 16:24:37 -0500
committerBjorn Helgaas <bhelgaas@google.com>2016-09-14 15:27:49 -0500
commit7ece14175376051b18a9b97f0e6125cb8b864155 (patch)
treebcfcc5f761bf26b4356634c67e74bd9ae2e44163 /Documentation
parent9ff25e6b3eb0012297288dfa87930c7b62ef6ab1 (diff)
PCI/AER: Remove aerdriver.forceload kernel parameter
Per the PCI Firmware spec, r3.0, sec 4.5.1, on ACPI systems, the OS must not use AER unless _OSC is present and _OSC grants AER control to the OS. The aerdriver.forceload kernel parameter was a way to enable Linux AER support on ACPI systems that lack _OSC or fail to grant control the the OS. Enabling Linux AER support when the firmware doesn't want us to is a recipe for problems, e.g., the firmware might be handling AER itself. Remove the aerdriver.forceload kernel parameter and related supporting code. Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'Documentation')