This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository linux.
from 0e9b10395018 Merge branch 'akpm' (patches from Andrew) new 1dfdf9910666 nds32: fix logic for module new 1944a50859ec nds32: add NULL entry to the end of_device_id array new c17df7960534 nds32: Fix empty call trace new 6cce95a6c7d2 nds32: Fix get_user/put_user macro expand pointer problem new 7ef39548df8c nds32: Clean up the coding style new 487913ab18c2 nds32: Extract the checking and getting pointer to a macro new a18082575c66 nds32/ftrace: Support static function tracer new 1e9b14c0d92b nds32/ftrace: Support static function graph tracer new fbf58a52ac08 nds32/ftrace: Add RECORD_MCOUNT support new 6b1d6d2fba37 nds32/ftrace: Support dynamic function tracer new 95cd2f7bce9a nds32/ftrace: Support dynamic function graph tracer new 1e377ae9b04a nds32/stack: Get real return address by using ftrace_graph [...] new c5fdf7e00d49 nds32: Remove the deprecated ABI implementation new 95f93ed7fe92 nds32: Add macro definition for offset of lp register on stack new 487c4b2323b2 nds32: Only print one page of stack when die to prevent pr [...] new 0cde56e0280d nds32: Fix a kernel panic issue because of wrong frame poi [...] new ec865393292f nds32: fix build error because of wrong semicolon new 3350139c0ff3 nds32: linker script: GCOV kernel may refers data in __exit new d0c1db1da4b7 Merge tag 'nds32-for-linus-4.19-tag1' of git://git.kernel. [...] new 3fba68fa35a2 scsi: core: Update SCSI_MQ_DEFAULT help text to match default new a7ccd92c8d2a scsi: documentation: add scsi_mod.use_blk_mq to scsi-parameters new 89809b028b6f scsi: csiostor: add a check for NULL pointer after kmalloc() new 68bdc630721c scsi: csiostor: fix incorrect port capabilities new 9abd9990e977 scsi: lpfc: Default fdmi_on to on new 53e13ee087a8 scsi: lpfc: Correct MDS diag and nvmet configuration new eb53a3ea3e00 scsi: hpsa: limit transfer length to 1MB, not 512kB new cedefa8544c6 scsi: target: iscsi: cxgbit: use pr_debug() instead of pr_info() new 4e8065aa6c6f scsi: libata: Add missing newline at end of file new 23aa8e69f2c6 Revert "scsi: core: fix scsi_host_queue_ready" new d772a65d8a6c Revert "scsi: core: avoid host-wide host_busy counter for [...] new b9eb3b14f1db scsi: aacraid: fix a signedness bug new f4697d9a8a9c Merge tag 'scsi-fixes' of git://git.kernel.org/pub/scm/lin [...] new 6537886cdc9a gpio: adp5588: Fix sleep-in-atomic-context bug new 993b9bc5c47f gpiolib: acpi: Switch to cansleep version of GPIO library call new 78d3a92edbfb gpiolib-acpi: Register GpioInt ACPI event handlers from a [...] new a618cf480097 gpio: dwapb: Fix error handling in dwapb_gpio_probe() new d49b48f088c3 gpio: Fix crash due to registration race new b36fdc6853a3 Merge tag 'gpio-v4.19-2' of git://git.kernel.org/pub/scm/l [...]
The 38 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: Documentation/scsi/scsi-parameters.txt | 5 + arch/nds32/Kconfig | 4 + arch/nds32/Makefile | 4 + arch/nds32/include/asm/elf.h | 4 +- arch/nds32/include/asm/ftrace.h | 46 +++++ arch/nds32/include/asm/nds32.h | 1 + arch/nds32/include/asm/uaccess.h | 229 ++++++++++++----------- arch/nds32/kernel/Makefile | 6 + arch/nds32/kernel/atl2c.c | 3 +- arch/nds32/kernel/ex-entry.S | 2 +- arch/nds32/kernel/ex-exit.S | 4 +- arch/nds32/kernel/ftrace.c | 309 +++++++++++++++++++++++++++++++ arch/nds32/kernel/module.c | 4 +- arch/nds32/kernel/stacktrace.c | 6 +- arch/nds32/kernel/traps.c | 42 +---- arch/nds32/kernel/vmlinux.lds.S | 12 ++ drivers/ata/libata-core.c | 2 +- drivers/gpio/gpio-adp5588.c | 24 ++- drivers/gpio/gpio-dwapb.c | 1 + drivers/gpio/gpiolib-acpi.c | 86 +++++---- drivers/gpio/gpiolib-of.c | 1 + drivers/scsi/Kconfig | 10 +- drivers/scsi/aacraid/aacraid.h | 2 +- drivers/scsi/csiostor/csio_hw.c | 71 +++++-- drivers/scsi/csiostor/csio_hw.h | 1 + drivers/scsi/csiostor/csio_mb.c | 6 +- drivers/scsi/hosts.c | 24 +-- drivers/scsi/hpsa.c | 2 +- drivers/scsi/lpfc/lpfc.h | 2 +- drivers/scsi/lpfc/lpfc_attr.c | 8 +- drivers/scsi/scsi_lib.c | 21 +-- drivers/target/iscsi/cxgbit/cxgbit_ddp.c | 8 +- scripts/recordmcount.pl | 3 + 33 files changed, 684 insertions(+), 269 deletions(-) create mode 100644 arch/nds32/include/asm/ftrace.h create mode 100644 arch/nds32/kernel/ftrace.c