Giter Site home page Giter Site logo

longsleep / linux-pine64 Goto Github PK

View Code? Open in Web Editor NEW
111.0 27.0 107.0 715.08 MB

Pine64 Linux Kernel

License: Other

Makefile 0.31% C 94.34% Assembly 1.90% C++ 1.89% Objective-C 1.35% Shell 0.04% Awk 0.01% Python 0.02% Perl 0.09% Yacc 0.02% Lex 0.01% UnrealScript 0.01% Scilab 0.01% ASP 0.01% M4 0.01% GDB 0.01% Roff 0.01% sed 0.01% XS 0.01% Perl 6 0.01%
linux pine64 kernel arm64

linux-pine64's Introduction

        Linux kernel release 3.x <http://kernel.org/>

These are the release notes for Linux version 3.  Read them carefully,
as they tell you what this is all about, explain how to install the
kernel, and what to do if something goes wrong. 

WHAT IS LINUX?

  Linux is a clone of the operating system Unix, written from scratch by
  Linus Torvalds with assistance from a loosely-knit team of hackers across
  the Net. It aims towards POSIX and Single UNIX Specification compliance.

  It has all the features you would expect in a modern fully-fledged Unix,
  including true multitasking, virtual memory, shared libraries, demand
  loading, shared copy-on-write executables, proper memory management,
  and multistack networking including IPv4 and IPv6.

  It is distributed under the GNU General Public License - see the
  accompanying COPYING file for more details. 

ON WHAT HARDWARE DOES IT RUN?

  Although originally developed first for 32-bit x86-based PCs (386 or higher),
  today Linux also runs on (at least) the Compaq Alpha AXP, Sun SPARC and
  UltraSPARC, Motorola 68000, PowerPC, PowerPC64, ARM, Hitachi SuperH, Cell,
  IBM S/390, MIPS, HP PA-RISC, Intel IA-64, DEC VAX, AMD x86-64, AXIS CRIS,
  Xtensa, Tilera TILE, AVR32 and Renesas M32R architectures.

  Linux is easily portable to most general-purpose 32- or 64-bit architectures
  as long as they have a paged memory management unit (PMMU) and a port of the
  GNU C compiler (gcc) (part of The GNU Compiler Collection, GCC). Linux has
  also been ported to a number of architectures without a PMMU, although
  functionality is then obviously somewhat limited.
  Linux has also been ported to itself. You can now run the kernel as a
  userspace application - this is called UserMode Linux (UML).

DOCUMENTATION:

 - There is a lot of documentation available both in electronic form on
   the Internet and in books, both Linux-specific and pertaining to
   general UNIX questions.  I'd recommend looking into the documentation
   subdirectories on any Linux FTP site for the LDP (Linux Documentation
   Project) books.  This README is not meant to be documentation on the
   system: there are much better sources available.

 - There are various README files in the Documentation/ subdirectory:
   these typically contain kernel-specific installation notes for some 
   drivers for example. See Documentation/00-INDEX for a list of what
   is contained in each file.  Please read the Changes file, as it
   contains information about the problems, which may result by upgrading
   your kernel.

 - The Documentation/DocBook/ subdirectory contains several guides for
   kernel developers and users.  These guides can be rendered in a
   number of formats:  PostScript (.ps), PDF, HTML, & man-pages, among others.
   After installation, "make psdocs", "make pdfdocs", "make htmldocs",
   or "make mandocs" will render the documentation in the requested format.

INSTALLING the kernel source:

 - If you install the full sources, put the kernel tarball in a
   directory where you have permissions (eg. your home directory) and
   unpack it:

     gzip -cd linux-3.X.tar.gz | tar xvf -

   or

     bzip2 -dc linux-3.X.tar.bz2 | tar xvf -

   Replace "X" with the version number of the latest kernel.

   Do NOT use the /usr/src/linux area! This area has a (usually
   incomplete) set of kernel headers that are used by the library header
   files.  They should match the library, and not get messed up by
   whatever the kernel-du-jour happens to be.

 - You can also upgrade between 3.x releases by patching.  Patches are
   distributed in the traditional gzip and the newer bzip2 format.  To
   install by patching, get all the newer patch files, enter the
   top level directory of the kernel source (linux-3.X) and execute:

     gzip -cd ../patch-3.x.gz | patch -p1

   or

     bzip2 -dc ../patch-3.x.bz2 | patch -p1

   Replace "x" for all versions bigger than the version "X" of your current
   source tree, _in_order_, and you should be ok.  You may want to remove
   the backup files (some-file-name~ or some-file-name.orig), and make sure
   that there are no failed patches (some-file-name# or some-file-name.rej).
   If there are, either you or I have made a mistake.

   Unlike patches for the 3.x kernels, patches for the 3.x.y kernels
   (also known as the -stable kernels) are not incremental but instead apply
   directly to the base 3.x kernel.  For example, if your base kernel is 3.0
   and you want to apply the 3.0.3 patch, you must not first apply the 3.0.1
   and 3.0.2 patches. Similarly, if you are running kernel version 3.0.2 and
   want to jump to 3.0.3, you must first reverse the 3.0.2 patch (that is,
   patch -R) _before_ applying the 3.0.3 patch. You can read more on this in
   Documentation/applying-patches.txt

   Alternatively, the script patch-kernel can be used to automate this
   process.  It determines the current kernel version and applies any
   patches found.

     linux/scripts/patch-kernel linux

   The first argument in the command above is the location of the
   kernel source.  Patches are applied from the current directory, but
   an alternative directory can be specified as the second argument.

 - Make sure you have no stale .o files and dependencies lying around:

     cd linux
     make mrproper

   You should now have the sources correctly installed.

SOFTWARE REQUIREMENTS

   Compiling and running the 3.x kernels requires up-to-date
   versions of various software packages.  Consult
   Documentation/Changes for the minimum version numbers required
   and how to get updates for these packages.  Beware that using
   excessively old versions of these packages can cause indirect
   errors that are very difficult to track down, so don't assume that
   you can just update packages when obvious problems arise during
   build or operation.

BUILD directory for the kernel:

   When compiling the kernel, all output files will per default be
   stored together with the kernel source code.
   Using the option "make O=output/dir" allow you to specify an alternate
   place for the output files (including .config).
   Example:

     kernel source code: /usr/src/linux-3.X
     build directory:    /home/name/build/kernel

   To configure and build the kernel, use:

     cd /usr/src/linux-3.X
     make O=/home/name/build/kernel menuconfig
     make O=/home/name/build/kernel
     sudo make O=/home/name/build/kernel modules_install install

   Please note: If the 'O=output/dir' option is used, then it must be
   used for all invocations of make.

CONFIGURING the kernel:

   Do not skip this step even if you are only upgrading one minor
   version.  New configuration options are added in each release, and
   odd problems will turn up if the configuration files are not set up
   as expected.  If you want to carry your existing configuration to a
   new version with minimal work, use "make oldconfig", which will
   only ask you for the answers to new questions.

 - Alternative configuration commands are:

     "make config"      Plain text interface.

     "make menuconfig"  Text based color menus, radiolists & dialogs.

     "make nconfig"     Enhanced text based color menus.

     "make xconfig"     X windows (Qt) based configuration tool.

     "make gconfig"     X windows (Gtk) based configuration tool.

     "make oldconfig"   Default all questions based on the contents of
                        your existing ./.config file and asking about
                        new config symbols.

     "make silentoldconfig"
                        Like above, but avoids cluttering the screen
                        with questions already answered.
                        Additionally updates the dependencies.

     "make olddefconfig"
                        Like above, but sets new symbols to their default
                        values without prompting.

     "make defconfig"   Create a ./.config file by using the default
                        symbol values from either arch/$ARCH/defconfig
                        or arch/$ARCH/configs/${PLATFORM}_defconfig,
                        depending on the architecture.

     "make ${PLATFORM}_defconfig"
                        Create a ./.config file by using the default
                        symbol values from
                        arch/$ARCH/configs/${PLATFORM}_defconfig.
                        Use "make help" to get a list of all available
                        platforms of your architecture.

     "make allyesconfig"
                        Create a ./.config file by setting symbol
                        values to 'y' as much as possible.

     "make allmodconfig"
                        Create a ./.config file by setting symbol
                        values to 'm' as much as possible.

     "make allnoconfig" Create a ./.config file by setting symbol
                        values to 'n' as much as possible.

     "make randconfig"  Create a ./.config file by setting symbol
                        values to random values.

     "make localmodconfig" Create a config based on current config and
                           loaded modules (lsmod). Disables any module
                           option that is not needed for the loaded modules.

                           To create a localmodconfig for another machine,
                           store the lsmod of that machine into a file
                           and pass it in as a LSMOD parameter.

                   target$ lsmod > /tmp/mylsmod
                   target$ scp /tmp/mylsmod host:/tmp

                   host$ make LSMOD=/tmp/mylsmod localmodconfig

                           The above also works when cross compiling.

     "make localyesconfig" Similar to localmodconfig, except it will convert
                           all module options to built in (=y) options.

   You can find more information on using the Linux kernel config tools
   in Documentation/kbuild/kconfig.txt.

 - NOTES on "make config":

    - Having unnecessary drivers will make the kernel bigger, and can
      under some circumstances lead to problems: probing for a
      nonexistent controller card may confuse your other controllers

    - Compiling the kernel with "Processor type" set higher than 386
      will result in a kernel that does NOT work on a 386.  The
      kernel will detect this on bootup, and give up.

    - A kernel with math-emulation compiled in will still use the
      coprocessor if one is present: the math emulation will just
      never get used in that case.  The kernel will be slightly larger,
      but will work on different machines regardless of whether they
      have a math coprocessor or not.

    - The "kernel hacking" configuration details usually result in a
      bigger or slower kernel (or both), and can even make the kernel
      less stable by configuring some routines to actively try to
      break bad code to find kernel problems (kmalloc()).  Thus you
      should probably answer 'n' to the questions for "development",
      "experimental", or "debugging" features.

COMPILING the kernel:

 - Make sure you have at least gcc 3.2 available.
   For more information, refer to Documentation/Changes.

   Please note that you can still run a.out user programs with this kernel.

 - Do a "make" to create a compressed kernel image. It is also
   possible to do "make install" if you have lilo installed to suit the
   kernel makefiles, but you may want to check your particular lilo setup first.

   To do the actual install, you have to be root, but none of the normal
   build should require that. Don't take the name of root in vain.

 - If you configured any of the parts of the kernel as `modules', you
   will also have to do "make modules_install".

 - Verbose kernel compile/build output:

   Normally, the kernel build system runs in a fairly quiet mode (but not
   totally silent).  However, sometimes you or other kernel developers need
   to see compile, link, or other commands exactly as they are executed.
   For this, use "verbose" build mode.  This is done by inserting
   "V=1" in the "make" command.  E.g.:

     make V=1 all

   To have the build system also tell the reason for the rebuild of each
   target, use "V=2".  The default is "V=0".

 - Keep a backup kernel handy in case something goes wrong.  This is 
   especially true for the development releases, since each new release
   contains new code which has not been debugged.  Make sure you keep a
   backup of the modules corresponding to that kernel, as well.  If you
   are installing a new kernel with the same version number as your
   working kernel, make a backup of your modules directory before you
   do a "make modules_install".

   Alternatively, before compiling, use the kernel config option
   "LOCALVERSION" to append a unique suffix to the regular kernel version.
   LOCALVERSION can be set in the "General Setup" menu.

 - In order to boot your new kernel, you'll need to copy the kernel
   image (e.g. .../linux/arch/i386/boot/bzImage after compilation)
   to the place where your regular bootable kernel is found. 

 - Booting a kernel directly from a floppy without the assistance of a
   bootloader such as LILO, is no longer supported.

   If you boot Linux from the hard drive, chances are you use LILO, which
   uses the kernel image as specified in the file /etc/lilo.conf.  The
   kernel image file is usually /vmlinuz, /boot/vmlinuz, /bzImage or
   /boot/bzImage.  To use the new kernel, save a copy of the old image
   and copy the new image over the old one.  Then, you MUST RERUN LILO
   to update the loading map!! If you don't, you won't be able to boot
   the new kernel image.

   Reinstalling LILO is usually a matter of running /sbin/lilo. 
   You may wish to edit /etc/lilo.conf to specify an entry for your
   old kernel image (say, /vmlinux.old) in case the new one does not
   work.  See the LILO docs for more information. 

   After reinstalling LILO, you should be all set.  Shutdown the system,
   reboot, and enjoy!

   If you ever need to change the default root device, video mode,
   ramdisk size, etc.  in the kernel image, use the 'rdev' program (or
   alternatively the LILO boot options when appropriate).  No need to
   recompile the kernel to change these parameters. 

 - Reboot with the new kernel and enjoy. 

IF SOMETHING GOES WRONG:

 - If you have problems that seem to be due to kernel bugs, please check
   the file MAINTAINERS to see if there is a particular person associated
   with the part of the kernel that you are having trouble with. If there
   isn't anyone listed there, then the second best thing is to mail
   them to me ([email protected]), and possibly to any other
   relevant mailing-list or to the newsgroup.

 - In all bug-reports, *please* tell what kernel you are talking about,
   how to duplicate the problem, and what your setup is (use your common
   sense).  If the problem is new, tell me so, and if the problem is
   old, please try to tell me when you first noticed it.

 - If the bug results in a message like

     unable to handle kernel paging request at address C0000010
     Oops: 0002
     EIP:   0010:XXXXXXXX
     eax: xxxxxxxx   ebx: xxxxxxxx   ecx: xxxxxxxx   edx: xxxxxxxx
     esi: xxxxxxxx   edi: xxxxxxxx   ebp: xxxxxxxx
     ds: xxxx  es: xxxx  fs: xxxx  gs: xxxx
     Pid: xx, process nr: xx
     xx xx xx xx xx xx xx xx xx xx

   or similar kernel debugging information on your screen or in your
   system log, please duplicate it *exactly*.  The dump may look
   incomprehensible to you, but it does contain information that may
   help debugging the problem.  The text above the dump is also
   important: it tells something about why the kernel dumped code (in
   the above example, it's due to a bad kernel pointer). More information
   on making sense of the dump is in Documentation/oops-tracing.txt

 - If you compiled the kernel with CONFIG_KALLSYMS you can send the dump
   as is, otherwise you will have to use the "ksymoops" program to make
   sense of the dump (but compiling with CONFIG_KALLSYMS is usually preferred).
   This utility can be downloaded from
   ftp://ftp.<country>.kernel.org/pub/linux/utils/kernel/ksymoops/ .
   Alternatively, you can do the dump lookup by hand:

 - In debugging dumps like the above, it helps enormously if you can
   look up what the EIP value means.  The hex value as such doesn't help
   me or anybody else very much: it will depend on your particular
   kernel setup.  What you should do is take the hex value from the EIP
   line (ignore the "0010:"), and look it up in the kernel namelist to
   see which kernel function contains the offending address.

   To find out the kernel function name, you'll need to find the system
   binary associated with the kernel that exhibited the symptom.  This is
   the file 'linux/vmlinux'.  To extract the namelist and match it against
   the EIP from the kernel crash, do:

     nm vmlinux | sort | less

   This will give you a list of kernel addresses sorted in ascending
   order, from which it is simple to find the function that contains the
   offending address.  Note that the address given by the kernel
   debugging messages will not necessarily match exactly with the
   function addresses (in fact, that is very unlikely), so you can't
   just 'grep' the list: the list will, however, give you the starting
   point of each kernel function, so by looking for the function that
   has a starting address lower than the one you are searching for but
   is followed by a function with a higher address you will find the one
   you want.  In fact, it may be a good idea to include a bit of
   "context" in your problem report, giving a few lines around the
   interesting one. 

   If you for some reason cannot do the above (you have a pre-compiled
   kernel image or similar), telling me as much about your setup as
   possible will help.  Please read the REPORTING-BUGS document for details.

 - Alternatively, you can use gdb on a running kernel. (read-only; i.e. you
   cannot change values or set break points.) To do this, first compile the
   kernel with -g; edit arch/i386/Makefile appropriately, then do a "make
   clean". You'll also need to enable CONFIG_PROC_FS (via "make config").

   After you've rebooted with the new kernel, do "gdb vmlinux /proc/kcore".
   You can now use all the usual gdb commands. The command to look up the
   point where your system crashed is "l *0xXXXXXXXX". (Replace the XXXes
   with the EIP value.)

   gdb'ing a non-running kernel currently fails because gdb (wrongly)
   disregards the starting offset for which the kernel is compiled.

linux-pine64's People

Contributors

acmel avatar adrianbunk avatar alanstern avatar arndb avatar avikivity avatar axellin avatar broonie avatar bzolnier avatar davem330 avatar dhowells avatar ebiederm avatar gregkh avatar heicarst avatar herbertx avatar htejun avatar hverkuil avatar ickle avatar jmberg avatar jmberg-intel avatar joeperches avatar kaber avatar neilbrown avatar olofj avatar ozbenh avatar pmundt avatar ralfbaechle avatar rddunlap avatar rjwysocki avatar tiwai avatar torvalds avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

linux-pine64's Issues

Pine does not boot (randomly)

Hello,

Unfortunately my boot randomly does not boot on restart.
Ethernet LED stay dark.
After several retries it boots.

U-boot and Kernel is up-to-date, based on update scripts

I already tried decreasing eth speed with sudo ethtool -s eth0 speed 100 duplex full
But it did not solve the problem.

Any ideas?

Best regards,
Alexander

Unable to activate SPI

I followed the instructions posted here: https://forum.pine64.org/showthread.php?tid=1297&pid=16138#pid16138

$ uname -r
3.10.105-0-pine64-longsleep
$ fdtget /boot/pine64/sun50i-a64-pine64-plus.dtb /soc@01c00000/spi@01c68000 status
disabled
$ sudo fdtput --verbose --type s /boot/pine64/sun50i-a64-pine64-plus.dtb /soc@01c00000/spi@01c68000 status okay
Decoding value:
        string: 'okay'
Value size 5
$ fdtget /boot/pine64/sun50i-a64-pine64-plus.dtb /soc@01c00000/spi@01c68000 status
okay
# reboot
$ dmesg -T | grep spi0
[So Sep  6 09:27:30 2020] spi spi0: master is unqueued, this is deprecated
$ ls -la /dev/*spi*
ls: cannot access '/dev/*spi*': No such file or directory
$ sudo modprobe spidev
$ ls -la /dev/*spi*
ls: cannot access '/dev/*spi*': No such file or directory

What further steps are required to enable /dev/spidev0.0 ?

Turn upper USB port into real host port

According to Jared McNeill we can turn the upper USB port which is OTG normally (used in host mode -- which has performance implications and maybe stability as well) into a true host port using an own PHY by playing around with some magical bits: https://irclog.whitequark.org/linux-sunxi/2016-09-06#17478535;

Since nearly none of the average Pine64 users owns the special cable needed to use the upper OTG port in OTG mode I would think adopting this change would make sense?

(can't test, can't send PR -- no Pine64 there)

UINPUT

Is there a reason CONFIG_INPUT_UINPUT is removed from the config and if not can we get it added back?

Using this kernel source for Android?

Does anyone know how I can use this source to build an Android kernel?
Kernel builds and boots fine, but only one USB ports is functional. I'm guessing that's caused by missing DTBs, but I can't figure out how to build the dt.img and the original Android kernel doesn't have one.

backport bsp2.0: drivers/net/wireless/rtl8723bs/include/ieee80211.h

using: gcc (Debian/Linaro 4.9.2-10) 4.9.2
make modules
yields 19 screens of:

drivers/net/wireless/rtl8723bs/hal/OUTSRC/rtl8723b/<file_xyz>.o: In function `is_zero_mac_addr':
/root/linux-pine64/drivers/net/wireless/rtl8723bs/include/ieee80211.h:1333: multiple definition of `is_zero_mac_addr'
drivers/net/wireless/rtl8723bs/core/rtw_cmd.o:/root/linux-pine64/drivers/net/wireless/rtl8723bs/include/ieee80211.h:1333: first defined here

and exits with a 2
and prevents the rest of the modules from compiling

when I copied that file out of the bsp2.0 tree, the driver compiled and the rest of the driver tree compiled.

REQUEST: CONFIG_VXLAN for Docker Network support

Per this comment/conversation: docker/machine#2753 (comment)

I'm attempting to use my 4 Pines as a Docker swarm. I've upgraded/compiled the latest version of Docker (17.04) and still cannot use overlay networks due to kernel feature missing.

"Error": "subnet sandbox join failed for \"10.0.0.0/24\": error creating vxlan interface: operation not supported",

For the next kernel release, please enable VXLAN, possibly as a module (to keep bloat down)

__inline issue in net/wireless/rtl* drivers

Compiling the linux-pine64 kernel in a debian arm cross-compilation environment produced the following error:

$ make ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- -j4 LOCALVERSION= modules
  CHK     include/generated/uapi/linux/version.h
  CHK     include/generated/utsrelease.h
  CC      scripts/mod/devicetable-offsets.s
  CALL    scripts/checksyscalls.sh
  GEN     scripts/mod/devicetable-offsets.h
  HOSTCC  scripts/mod/file2alias.o
  HOSTLD  scripts/mod/modpost
  LD [M]  drivers/net/wireless/rtl8189fs/8189fs.o
drivers/net/wireless/rtl8189fs/core/rtw_security.o: In function `is_multicast_mac_addr':
/home/pascal/pine64/linux-pine64/drivers/net/wireless/rtl8189fs/include/ieee80211.h:1326: multiple definition of `is_multicast_mac_addr'
drivers/net/wireless/rtl8189fs/core/rtw_cmd.o:/home/pascal/pine64/linux-pine64/drivers/net/wireless/rtl8189fs/include/ieee80211.h:1326: first defined here
drivers/net/wireless/rtl8189fs/core/rtw_security.o: In function `is_broadcast_mac_addr':
/home/pascal/pine64/linux-pine64/drivers/net/wireless/rtl8189fs/include/ieee80211.h:1330: multiple definition of `is_broadcast_mac_addr'
drivers/net/wireless/rtl8189fs/core/rtw_cmd.o:/home/pascal/pine64/linux-pine64/drivers/net/wireless/rtl8189fs/include/ieee80211.h:1330: first defined here
drivers/net/wireless/rtl8189fs/core/rtw_security.o: In function `is_zero_mac_addr':
/home/pascal/pine64/linux-pine64/drivers/net/wireless/rtl8189fs/include/ieee80211.h:1336: multiple definition of `is_zero_mac_addr'
drivers/net/wireless/rtl8189fs/core/rtw_cmd.o:/home/pascal/pine64/linux-pine64/drivers/net/wireless/rtl8189fs/include/ieee80211.h:1336: first defined here
drivers/net/wireless/rtl8189fs/core/rtw_debug.o: In function `is_multicast_mac_addr':
/home/pascal/pine64/linux-pine64/drivers/net/wireless/rtl8189fs/include/ieee80211.h:1326: multiple definition of `is_multicast_mac_addr'
drivers/net/wireless/rtl8189fs/core/rtw_cmd.o:/home/pascal/pine64/linux-pine64/drivers/net/wireless/rtl8189fs/include/ieee80211.h:1326: first defined here
drivers/net/wireless/rtl8189fs/core/rtw_debug.o: In function `is_broadcast_mac_addr':
/home/pascal/pine64/linux-pine64/drivers/net/wireless/rtl8189fs/include/ieee80211.h:1330: multiple definition of `is_broadcast_mac_addr'
drivers/net/wireless/rtl8189fs/core/rtw_cmd.o:/home/pascal/pine64/linux-pine64/drivers/net/wireless/rtl8189fs/include/ieee80211.h:1330: first defined here
drivers/net/wireless/rtl8189fs/core/rtw_debug.o: In function `is_zero_mac_addr':
/home/pascal/pine64/linux-pine64/drivers/net/wireless/rtl8189fs/include/ieee80211.h:1336: multiple definition of `is_zero_mac_addr'
drivers/net/wireless/rtl8189fs/core/rtw_cmd.o:/home/pascal/pine64/linux-pine64/drivers/net/wireless/rtl8189fs/include/ieee80211.h:1336: first defined here
drivers/net/wireless/rtl8189fs/core/rtw_io.o: In function `is_multicast_mac_addr':
/home/pascal/pine64/linux-pine64/drivers/net/wireless/rtl8189fs/include/ieee80211.h:1326: multiple definition of `is_multicast_mac_addr'
drivers/net/wireless/rtl8189fs/core/rtw_cmd.o:/home/pascal/pine64/linux-pine64/drivers/net/wireless/rtl8189fs/include/ieee80211.h:1326: first defined here
drivers/net/wireless/rtl8189fs/core/rtw_io.o: In function `is_broadcast_mac_addr':
/home/pascal/pine64/linux-pine64/drivers/net/wireless/rtl8189fs/include/ieee80211.h:1330: multiple definition of `is_broadcast_mac_addr'
drivers/net/wireless/rtl8189fs/core/rtw_cmd.o:/home/pascal/pine64/linux-pine64/drivers/net/wireless/rtl8189fs/include/ieee80211.h:1330: first defined here
drivers/net/wireless/rtl8189fs/core/rtw_io.o: In function `is_zero_mac_addr':
/home/pascal/pine64/linux-pine64/drivers/net/wireless/rtl8189fs/include/ieee80211.h:1336: multiple definition of `is_zero_mac_addr'
drivers/net/wireless/rtl8189fs/core/rtw_cmd.o:/home/pascal/pine64/linux-pine64/drivers/net/wireless/rtl8189fs/include/ieee80211.h:1336: first defined here
drivers/net/wireless/rtl8189fs/core/rtw_ioctl_query.o: In function `is_multicast_mac_addr':
/home/pascal/pine64/linux-pine64/drivers/net/wireless/rtl8189fs/include/ieee80211.h:1326: multiple definition of `is_multicast_mac_addr'
drivers/net/wireless/rtl8189fs/core/rtw_cmd.o:/home/pascal/pine64/linux-pine64/drivers/net/wireless/rtl8189fs/include/ieee80211.h:1326: first defined here
drivers/net/wireless/rtl8189fs/core/rtw_ioctl_query.o: In function `is_broadcast_mac_addr':
/home/pascal/pine64/linux-pine64/drivers/net/wireless/rtl8189fs/include/ieee80211.h:1330: multiple definition of `is_broadcast_mac_addr'
drivers/net/wireless/rtl8189fs/core/rtw_cmd.o:/home/pascal/pine64/linux-pine64/drivers/net/wireless/rtl8189fs/include/ieee80211.h:1330: first defined here
drivers/net/wireless/rtl8189fs/core/rtw_ioctl_query.o: In function `is_zero_mac_addr':
/home/pascal/pine64/linux-pine64/drivers/net/wireless/rtl8189fs/include/ieee80211.h:1336: multiple definition of `is_zero_mac_addr'
drivers/net/wireless/rtl8189fs/core/rtw_cmd.o:/home/pascal/pine64/linux-pine64/drivers/net/wireless/rtl8189fs/include/ieee80211.h:1336: first defined here
drivers/net/wireless/rtl8189fs/core/rtw_ioctl_set.o: In function `is_multicast_mac_addr':
/home/pascal/pine64/linux-pine64/drivers/net/wireless/rtl8189fs/include/ieee80211.h:1326: multiple definition of `is_multicast_mac_addr'
drivers/net/wireless/rtl8189fs/core/rtw_cmd.o:/home/pascal/pine64/linux-pine64/drivers/net/wireless/rtl8189fs/include/ieee80211.h:1326: first defined here
drivers/net/wireless/rtl8189fs/core/rtw_ioctl_set.o: In function `is_broadcast_mac_addr':
/home/pascal/pine64/linux-pine64/drivers/net/wireless/rtl8189fs/include/ieee80211.h:1330: multiple definition of `is_broadcast_mac_addr'
drivers/net/wireless/rtl8189fs/core/rtw_cmd.o:/home/pascal/pine64/linux-pine64/drivers/net/wireless/rtl8189fs/include/ieee80211.h:1330: first defined here
drivers/net/wireless/rtl8189fs/core/rtw_ioctl_set.o: In function `is_zero_mac_addr':
/home/pascal/pine64/linux-pine64/drivers/net/wireless/rtl8189fs/include/ieee80211.h:1336: multiple definition of `is_zero_mac_addr'
drivers/net/wireless/rtl8189fs/core/rtw_cmd.o:/home/pascal/pine64/linux-pine64/drivers/net/wireless/rtl8189fs/include/ieee80211.h:1336: first defined here
drivers/net/wireless/rtl8189fs/core/rtw_ieee80211.o: In function `is_multicast_mac_addr':
/home/pascal/pine64/linux-pine64/drivers/net/wireless/rtl8189fs/include/ieee80211.h:1326: multiple definition of `is_multicast_mac_addr'
drivers/net/wireless/rtl8189fs/core/rtw_cmd.o:/home/pascal/pine64/linux-pine64/drivers/net/wireless/rtl8189fs/include/ieee80211.h:1326: first defined here
[...] 

To resolve this issue I had to add an extern in the __inline functions:

-__inline int is_multicast_mac_addr(const u8 *addr)
+extern __inline int is_multicast_mac_addr(const u8 *addr)
 {
         return ((addr[0] != 0xff) && (0x01 & addr[0]));
 }

-__inline int is_broadcast_mac_addr(const u8 *addr)
+extern __inline int is_broadcast_mac_addr(const u8 *addr)
 {
        return ((addr[0] == 0xff) && (addr[1] == 0xff) && (addr[2] == 0xff) &&   \
                (addr[3] == 0xff) && (addr[4] == 0xff) && (addr[5] == 0xff));
 }

-__inline int is_zero_mac_addr(const u8 *addr)
+extern __inline int is_zero_mac_addr(const u8 *addr)
 {
        return ((addr[0] == 0x00) && (addr[1] == 0x00) && (addr[2] == 0x00) &&   \
                (addr[3] == 0x00) && (addr[4] == 0x00) && (addr[5] == 0x00));

in

drivers/net/wireless/rtl8189fs/include/ieee80211.h
drivers/net/wireless/rtl8723bs/include/ieee80211.h
drivers/net/wireless/rtl8723bs_vq0/include/ieee80211.h

Could it be that __inline is not defined? Or am I using the wrong build environment?

IPSec modules

Is it possible to compile IPSec modules (AH, ESP, CRYPTO_XCBC) for Pine64 kernel? If yes, how?
Do I have to checkout whole kernel and rebuild everything?

hid-generic: device has no listeners, quitting

Current kernel:

3.10.102-3-pine64-longsleep #98 SMP PREEMPT Sat Aug 20 22:28:17 CEST 2016

I am trying to run apcupsd on the Pine64+ to monitor my battery backup, but the tool is unable to connect to the device. The battery backup is plugged in via USB and is recognized when running lsusb as shown below:

Bus 004 Device 004: ID 051d:0002 American Power Conversion Uninterruptible Power Supply

After plugging in the device, dmesg shows the device, but contains the message in the title.

[1367680.112640] ehci_irq: highspeed device connect
[1367680.235486] ohci_irq: fullspeed or lowspeed device connect
[1367680.629086] usb 4-1: new full-speed USB device number 4 using sunxi-ohci
[1367680.947945] hid-generic 0003:051D:0002.0006: device has no listeners, quitting

I have read that CONFIG_USB_HIDDEV should be enabled in the kernel and used the following command to verify: gzip -d < /proc/config.gz | grep HIDDEV

CONFIG_USB_HIDDEV is not set

Is this something that can be enabled in the kernel build? Any help would be greatly appreciated.

Trouble with 3.10.105-0-pine64-longsleep

Started with: https://www.stdin.xyz/downloads/people/longsleep/tmp/pine64-images/ubuntu/xenial-pine64-bspkernel-20161218-1.img.xz
Using a 64GB MicroSD with a Pine64+ 2GB RAM and an HDMI display 1080p
Never had any trouble before in the last 12 months

====================================

On staging system
kernel_bug.tar.gz
kernel_bug.tar.gz

,
Make sure that my target is /dev/sdc
Use fdisk to clear out any existing partitions on /dev/sdc
sudo dd if=/home/elkins/Downloads/xenial-pine64-bspkernel-20161218-1.img of=/dev/sdc bs=4M oflag=sync
sync; sync; sync
sudo eject /dev/sdc

====================================

Inserted MicroSD and powered up fine.

Image.version: 3.10.104-2-pine64-longsleep

installed ssh & permited root login

resize_rootfs.sh
reboot
ok

pine64_update_uboot.sh
reboot
ok

pine64_update_kernel.sh
Checking for update ...
Downloading Linux Kernel ...
######################################################################## 100.0%
Downloading signature ...
######################################################################## 100.0%
Downloading public key ...
######################################################################## 100.0%
Verifying signature ...
[GNUPG:] SIG_ID uobXqzSdyGQtD48Cgolff09/5Lg 2017-03-11 1489251421
[GNUPG:] GOODSIG 7C03F26B090EF0DB Simon Eisenmann [email protected]
[GNUPG:] VALIDSIG 6FC96963C3D26AA8800974A17C03F26B090EF0DB 2017-03-11 1489251421 0 4 0 1 2 00 9DDB6CAD455D63112CAD26D8CA499C410B3C3354
Extracting ...
Fixing up ...
Running postinst for 3.10.105-0-pine64-longsleep ...
Done - you should reboot now.

THEN, rebooted
Cannot get to a tty.
Monitor status: disconnected (red).
ssh client can no longer connect.

Uncable power, re-cable power.
Still the same. Won't boot.

Go back to staging system

Image.version on MicroSD: 3.10.105-0-pine64-longsleep

Attached should be a tar.gz of final /var/log directory tree.

pine64-hacks-1.2-gmactxonly branch doesn't work for my pine64 2GB board

Hi,

the patch for getting eth0 back to GBit speed doesn't work for my board (while the kernel compiled from the branch pine64-hacks-1.2 boots fine):

Starting kernel ...

[mmc]: MMC Device 2 not found
[mmc]: mmc 2 not find, so not exit
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 3.10.104 (ubuntu@p64) (gcc version 5.4.0 20160609 6
[    0.000000] CPU: AArch64 Processor [410fd034] revision 4
[    0.000000] Machine: sun50iw1p1
[    0.000000] cma: CMA: reserved 64 MiB at bc000000
[    0.000000] script_init enter!
[    0.000000] script buffer is NULL!
[    0.000000] psci: probing for conduit method from DT.
[    0.000000] psci: PSCIv0.2 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] PERCPU: Embedded 12 pages/cpu @ffffffc07af92000 s19136 r8192 d212
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pa0
[    0.000000] Kernel command line: console=tty0 console=ttyS0,115200n8 earlycod
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.000000] Memory: 2032MB = 2032MB total
[    0.000000] Memory: 1968432k/1968432k available, 112336k reserved
[    0.000000] Virtual kernel memory layout:
[    0.000000]     vmalloc : 0xffffff8000000000 - 0xffffffbbffff0000   (245759 )
[    0.000000]     vmemmap : 0xffffffbc00e38000 - 0xffffffbc02a00000   (    27 )
[    0.000000]     modules : 0xffffffbffc000000 - 0xffffffc000000000   (    64 )
[    0.000000]     memory  : 0xffffffc000000000 - 0xffffffc07f000000   (  2032 )
[    0.000000]       .init : 0xffffffc0009e2000 - 0xffffffc000a64ac0   (   523 )
[    0.000000]       .text : 0xffffffc000080000 - 0xffffffc0009e1af4   (  9607 )
[    0.000000]       .data : 0xffffffc000a65000 - 0xffffffc000bc01c0   (  1389 )
[    0.000000] Preemptible hierarchical RCU implementation.
[    0.000000] NR_IRQS:64 nr_irqs:64 0
[    0.000000] Architected cp15 timer(s) running at 24.00MHz (phys).
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] allocated 8388608 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memos
[    9.842036] Calibrating delay loop (skipped), value calculated using timer f)
[    9.842068] pid_max: default: 32768 minimum: 301
[    9.842175] Security Framework initialized
[    9.842230] AppArmor: AppArmor initialized
[    9.842276] Mount-cache hash table entries: 256
[    9.852685] Initializing cgroup subsys memory
[    9.852745] Initializing cgroup subsys devices
[    9.852762] Initializing cgroup subsys freezer
[    9.852779] Initializing cgroup subsys blkio
[    9.852794] Initializing cgroup subsys perf_event
[    9.852815] Initializing cgroup subsys hugetlb
[    9.852884] ftrace: allocating 27456 entries in 108 pages
[    9.884931] CPU0: update cpu_power 1968128
[    9.884965] hw perfevents: enabled with arm/armv8-pmuv3 PMU driver, 7 countee
[    9.885868] virtual base = 0xffffff800000a000.
[    9.885889] gicd_base = 0xffffff800000c000.
[    9.885902] gicc_base = 0xffffff800000e000.
[    9.886461] CPU1: Booted secondary processor
[    9.886484] CPU1: update cpu_power 1968128
[    9.889084] CPU2: Booted secondary processor
[    9.889097] CPU2: update cpu_power 1968128
[    9.893203] CPU3: Booted secondary processor
[    9.893214] CPU3: update cpu_power 1968128
[    9.893294] Brought up 4 CPUs
[    9.893372] SMP: Total of 4 processors activated (192.00 BogoMIPS).
[    9.893976] devtmpfs: initialized
[    9.898696] atomic64 test passed
[    9.898715] pinctrl core: initialized pinctrl subsystem
[    9.901205] NET: Registered protocol family 16
[    9.901490] script_sysfs_init success
[    9.901702] dump_class_init,806, success
[    9.901996] vdso: 2 pages (1 code, 1 data) at base ffffffc000a6d000
[    9.902028] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    9.903288] software IO TLB [mem 0xb8800000-0xb8c00000] (4MB) mapped at [fff]
[    9.904320] DMA: preallocated 256 KiB pool for atomic allocations
[    9.904455] Serial: AMBA PL011 UART driver
[    9.904564] axp81x_board_init: axp regl_devs num = 23
[    9.904709] pll_audio-set_default_rate=24576000 success!
[    9.904740] pll_video0-set_default_rate=297000000 success!
[    9.904821] pll_video1-set_default_rate=297000000 success!
[    9.904891] pll_de-set_default_rate=297000000 success!
[    9.905620] de-set_default_source=pll_de success!
[    9.905637] de-set_default_rate=297000000 success!
[    9.905690] tcon0-set_default_source=pll_mipi success!
[    9.905732] tcon1-set_default_source=pll_video0 success!
[    9.905964] hdmi-set_default_source=pll_video0 success!
[    9.908192] sun50i-r-pinctrl 1f02c00.pinctrl: initialized sunXi PIO driver
[    9.908372] [sun50iw1p1_pinctrl_probe][838]
[    9.910017] sun50i-pinctrl 1c20800.pinctrl: initialized sunXi PIO driver
[    9.910661] sunxi hwspinlock vbase:0xffffff800005c000
[    9.916301] sunxi_chipid_probe,150: soc bin:0
[    9.916319] chipid-sunxi serial 000000000000
[    9.921092] bio: create slab <bio-0> at 0
[    9.921448] pwm module init!
[    9.922661] SCSI subsystem initialized
[    9.922796] usbcore: registered new interface driver usbfs
[    9.922840] usbcore: registered new interface driver hub
[    9.922914] usbcore: registered new device driver usb
[    9.923642] Linux video capture interface: v2.00
[    9.924110] [ARISC] :sunxi-arisc driver v1.10
[    9.930830] [ARISC] :sunxi-arisc driver v1.10 startup succeeded
[    9.931071] Advanced Linux Sound Architecture Driver Initialized.
[    9.931415] NetLabel: Initializing
[    9.931428] NetLabel:  domain hash size = 128
[    9.931441] NetLabel:  protocols = UNLABELED CIPSOv4
[    9.931488] NetLabel:  unlabeled traffic allowed by default
[    9.931652] [pm]aw_pm_init!
[    9.931715] rtc physical base = 0x0000000001f00000 .
[    9.931758] np name = /soc@01c00000/rtc@01f00000.
[    9.931774] base = ffffff8000070100, len = 4.
[    9.931788] pmu name: pmu0 .
[    9.931824] pmu0_enable = 0x1.
[    9.931837] pmux_id = 0x6.
[    9.931849] pmux_twi_id = 0x1.
[    9.931861] pmux_twi_addr = 0x34.
[    9.931872] pmu name: pmu1 .
[    9.931922] Warning: can not find np for pmu1.
[    9.932146] add_sys_pwr_dm: get ldo name  for id: vcc-lpddr failed
[    9.932311] after inited: sys_mask config = 0x4a55.
[    9.932342] Warning: can not find np for dynamic_standby_para.
[    9.932474] [pm]valid
[    9.932483] [pm]valid
[    9.932493] Notice: sun9i&sun8iw5&sun50i not need support normal standby,   .
[    9.932734] Switching to clocksource arch_sys_counter
[    9.943247] AppArmor: AppArmor Filesystem Enabled
[    9.949964] NET: Registered protocol family 2
[    9.950686] TCP established hash table entries: 16384 (order: 6, 262144 byte)
[    9.950944] TCP bind hash table entries: 16384 (order: 6, 262144 bytes)
[    9.951229] TCP: Hash tables configured (established 16384 bind 16384)
[    9.951314] TCP: reno registered
[    9.951331] UDP hash table entries: 1024 (order: 3, 32768 bytes)
[    9.951391] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)
[    9.951628] NET: Registered protocol family 1
[    9.951925] RPC: Registered named UNIX socket transport module.
[    9.951942] RPC: Registered udp transport module.
[    9.951956] RPC: Registered tcp transport module.
[    9.951969] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    9.952653] kvm [1]: Using HYP init bounce page @b8523000
[    9.953098] kvm [1]: interrupt-controller@1c84000 IRQ25
[    9.953452] kvm [1]: timer IRQ27
[    9.953474] kvm [1]: Hyp mode initialized successfully
[    9.955212] lock super standby defaultly!
[    9.955236] lookup_scene_lock_name: new scene lock super_standby
[    9.955252] scene_lock_init name=super_standby
[    9.955267] scene_lock: super_standby, type 5, count 1
[    9.955652] audit: initializing netlink socket (disabled)
[    9.955712] type=2000 audit(0.100:1): initialized
[    9.956364] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    9.956843] VFS: Disk quotas dquot_6.5.2
[    9.956960] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    9.957379] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    9.957917] NFS: Registering the id_resolver key type
[    9.957966] Key type id_resolver registered
[    9.957980] Key type id_legacy registered
[    9.957999] Installing knfsd (copyright (C) 1996 [email protected]).
[    9.958156] NTFS driver 2.1.30 [Flags: R/W].
[    9.958326] fuse init (API version 7.22)
[    9.958526] msgmni has been set to 3972
[    9.959472] Block layer SCSI generic (bsg) driver version 0.4 loaded (major )
[    9.959575] io scheduler noop registered
[    9.959590] io scheduler deadline registered
[    9.959624] io scheduler cfq registered (default)
[    9.960149] [DISP]disp_module_init
[    9.960564] [DISP] disp_boot_para_parse,line:301:of_property_read disp.boot_l
[    9.960588] [DISP] boot_disp:0x0
[    9.961172] [DISP] disp_sys_script_get_item,line:193:of_find_compatible_nodel
[    9.961328] [DISP] disp_sys_script_get_item,line:193:of_find_compatible_nodel
[    9.961483] [DISP] disp_sys_script_get_item,line:193:of_find_compatible_nodel
[    9.962564] [DISP] disp_boot_para_parse,line:301:of_property_read disp.fb_bal
[    9.962586] [DISP] fb_base:0x0
[    9.999665] Console: switching to colour frame buffer device 240x67
[   10.028018] [DISP]disp_module_init finish
[   10.028483] uart0: ttyS0 at MMIO 0x1c28000 (irq = 32) is a SUNXI
[   10.028638] sw_console_setup()1173 - console setup baud 115200 parity n bitsn
[   11.002516] console [ttyS0] enabled
[   11.006870] uart1: ttyS1 at MMIO 0x1c28400 (irq = 33) is a SUNXI
[   11.013816] uart2: ttyS2 at MMIO 0x1c28800 (irq = 34) is a SUNXI
[   11.020873] uart3: ttyS3 at MMIO 0x1c28c00 (irq = 35) is a SUNXI
[   11.027889] uart4: ttyS4 at MMIO 0x1c29000 (irq = 36) is a SUNXI
[   11.034967] misc dump reg init
[   11.038504] [drm] Initialized drm 1.1.0 20060810
[   11.048006] brd: module loaded
[   11.053699] loop: module loaded
[   11.057488] sunxi-bt bt.28: Missing bt_power.
[   11.062360] sunxi-bt bt.28: bt_power_name ((null))
[   11.067729] sunxi-bt bt.28: io_regulator_name (vcc-wifi-io)
[   11.073988] sunxi-bt bt.28: bt_rst gpio=356  mul-sel=1  pull=-1  drv_level=-0
[   11.082780] sunxi-bt bt.28: clk not config
[   11.087433] sunxi-bt bt.28: block state already is 1
[   11.093177] sunxi-wlan wlan.27: wlan_busnum (1)
[   11.098252] sunxi-wlan wlan.27: Missing wlan_power.
[   11.103706] sunxi-wlan wlan.27: wlan_power_name ((null))
[   11.109652] sunxi-wlan wlan.27: io_regulator_name (vcc-wifi-io)
[   11.116291] sunxi-wlan wlan.27: wlan_regon gpio=354  mul-sel=1  pull=-1  drv0
[   11.125849] sunxi-wlan wlan.27: wlan_hostwake gpio=355  mul-sel=6  pull=-1  0
[   11.135703] sunxi-wlan wlan.27: clk not config
[   11.141259] tun: Universal TUN/TAP device driver, 1.6
[   11.146945] tun: (C) 1999-2004 Max Krasnyansky <[email protected]>
[   11.154458] WARNING: Get ephy clock is failed
[   11.159585] eth0: Use random mac address
[   11.164046] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[   11.171440] get ehci0-controller drv_vbus_gpio is fail
[   11.177205] get ehci0-controller, regulator_io is no nocare
[   11.183490] [sunxi-ehci0]: probe, pdev->name: 1c1a000.ehci0-controller, sunx8
[   11.197066] sunxi-ehci 1c1a000.ehci0-controller: SW USB2.0 'Enhanced' Host Cr
[   11.207204] sunxi-ehci 1c1a000.ehci0-controller: new USB bus registered, ass1
[   11.217128] sunxi-ehci 1c1a000.ehci0-controller: irq 104, io mem 0xffffffc008
[   11.241520] sunxi-ehci 1c1a000.ehci0-controller: USB 0.0 started, EHCI 1.00
[   11.255881] hub 1-0:1.0: USB hub found
[   11.266290] hub 1-0:1.0: 1 port detected
[   11.276935] scene_lock_init name=ehci_standby
[   11.287984] get ehci1-controller drv_vbus_gpio is fail
[   11.299844] get ehci1-controller, regulator_io is no nocare
[   11.312228] [sunxi-ehci1]: probe, pdev->name: 1c1b000.ehci1-controller, sunxa
[   11.332000] sunxi-ehci 1c1b000.ehci1-controller: SW USB2.0 'Enhanced' Host Cr
[   11.348457] sunxi-ehci 1c1b000.ehci1-controller: new USB bus registered, ass2
[   11.364663] sunxi-ehci 1c1b000.ehci1-controller: irq 106, io mem 0xffffffc008
[   11.398964] sunxi-ehci 1c1b000.ehci1-controller: USB 0.0 started, EHCI 1.00
[   11.413151] ehci_irq: highspeed device connect
[   11.424641] hub 2-0:1.0: USB hub found
[   11.435248] hub 2-0:1.0: 1 port detected
[   11.446053] scene_lock_init name=ehci_standby
[   11.457421] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[   11.470794] get ohci0-controller drv_vbus_gpio is fail
[   11.482804] get ohci0-controller, regulator_io is no nocare
[   11.495244] [sunxi-ohci0]: probe, pdev->name: 1c1a000.ohci0-controller, sunx0
[   11.511889] sunxi-ohci 1c1a000.ohci0-controller: SW USB2.0 'Open' Host Contrr
[   11.527852] sunxi-ohci 1c1a000.ohci0-controller: new USB bus registered, ass3
[   11.543726] sunxi-ohci 1c1a000.ohci0-controller: irq 105, io mem 0xff726b6b6a
[   11.619694] hub 3-0:1.0: USB hub found
[   11.630008] hub 3-0:1.0: 1 port detected
[   11.640645] scene_lock_init name=ohci_standby
[   11.651644] get ohci1-controller drv_vbus_gpio is fail
[   11.663421] get ohci1-controller, regulator_io is no nocare
[   11.675665] [sunxi-ohci1]: probe, pdev->name: 1c1b000.ohci1-controller, sunx0
[   11.692123] sunxi-ohci 1c1b000.ohci1-controller: SW USB2.0 'Open' Host Contrr
[   11.707964] sunxi-ohci 1c1b000.ohci1-controller: new USB bus registered, ass4
[   11.723655] sunxi-ohci 1c1b000.ohci1-controller: irq 107, io mem 0xff726b6b6a
[   11.763043] usb 2-1: new high-speed USB device number 2 using sunxi-ehci
[   11.796806] hub 4-0:1.0: USB hub found
[   11.807331] hub 4-0:1.0: 1 port detected
[   11.818095] scene_lock_init name=ohci_standby
[   11.829506] usbcore: registered new interface driver usb-storage
[   11.842558] usbcore: registered new interface driver ums-alauda
[   11.855469] usbcore: registered new interface driver ums-cypress
[   11.868439] usbcore: registered new interface driver ums-datafab
[   11.881375] usbcore: registered new interface driver ums_eneub6250
[   11.894462] usbcore: registered new interface driver ums-freecom
[   11.907278] usbcore: registered new interface driver ums-isd200
[   11.919943] usbcore: registered new interface driver ums-jumpshot
[   11.932776] usbcore: registered new interface driver ums-karma
[   11.945257] usbcore: registered new interface driver ums-onetouch
[   11.958063] usbcore: registered new interface driver ums-realtek
[   11.970699] usbcore: registered new interface driver ums-sddr09
[   11.983188] usbcore: registered new interface driver ums-sddr55
[   11.995577] usbcore: registered new interface driver ums-usbat
[   12.007828] usbcore: registered new interface driver usbserial
[   12.019943] usbcore: registered new interface driver usbserial_generic
[   12.032770] usbserial: USB Serial support registered for generic
[   12.045242] mousedev: PS/2 mouse device common for all mice
[   12.057455] input: sunxi-keyboard as /devices/virtual/input/input0
[   12.070428] sunxi-rtc 1f00000.rtc: rtc core: registered rtc-sunxi as rtc0
[   12.083605] sunxi-rtc 1f00000.rtc: RTC enabled
[   12.094320] i2c /dev entries driver
[   12.137502] input: axp81x-supplyer as /devices/platform/axp81x_board/axp81x-1
[   12.156728] sunxi budget cooling probe start !
[   12.167204] CPU freq cooling register Success
[   12.177510] CPU hotplug cooling register Success
[   12.188145] CPU budget cooling register Success
[   12.198827] sunxi gpu cooling probe start !
[   12.208851] CPU gpu cooling register Success
[   12.221777] cpuidle: using governor ladder
[   12.231055] cpuidle: using governor menu
[   12.240780] sunxi-mmc 1c0f000.sdmmc: SD/MMC/SDIO Host Controller Driver(v0.20
[   12.258657] sunxi-mmc 1c0f000.sdmmc: regulator prop vmmc,str none
[   12.270183] sunxi-mmc 1c0f000.sdmmc: regulator prop vqmmc,str none
[   12.281638] sunxi-mmc 1c0f000.sdmmc: regulator prop vdmmc,str vcc-sdc
[   12.293366] sunxi-mmc 1c0f000.sdmmc: No vmmc regulator found
[   12.304158] sunxi-mmc 1c0f000.sdmmc: No vqmmc regulator found
[   12.315447] sunxi-mmc 1c0f000.sdmmc: Got CD GPIO #166.
[   12.325695] sunxi-mmc 1c0f000.sdmmc: sdc set ios: clk 0Hz bm PP pm UP vdd 21B
[   12.341302] sunxi-mmc 1c0f000.sdmmc: no vqmmc,Check if there is regulator
[   12.363276] sunxi-mmc 1c0f000.sdmmc: sdc set ios: clk 400000Hz bm PP pm ON vB
[   12.392819] sunxi-mmc 1c0f000.sdmmc: base:0xffffff80000d8000 irq:92
[   12.404788] sunxi-mmc 1c10000.sdmmc: SD/MMC/SDIO Host Controller Driver(v0.20
[   12.422579] sunxi-mmc 1c10000.sdmmc: Can't get vmmc regulator string
[   12.434463] sunxi-mmc 1c10000.sdmmc: Can't get vqmmc regulator string
[   12.446349] sunxi-mmc 1c10000.sdmmc: Can't get vdmmc regulator string
[   12.458080] get() with no identifier
[   12.466647] get() with no identifier
[   12.475139] get() with no identifier
[   12.483532] sunxi-mmc 1c10000.sdmmc: No vmmc regulator found
[   12.494284] sunxi-mmc 1c10000.sdmmc: No vqmmc regulator found
[   12.505129] sunxi-mmc 1c10000.sdmmc: No vdmmc regulator found
[   12.505927] sunxi-mmc 1c0f000.sdmmc: smc 0 p0 err, cmd 52, RTO !!
[   12.506741] sunxi-mmc 1c0f000.sdmmc: smc 0 p0 err, cmd 52, RTO !!
[   12.506757] sunxi-mmc 1c0f000.sdmmc: sdc set ios: clk 400000Hz bm PP pm ON vB
[   12.509132] sunxi-mmc 1c0f000.sdmmc: sdc set ios: clk 400000Hz bm PP pm ON vB
[   12.511255] sunxi-mmc 1c0f000.sdmmc: smc 0 p0 err, cmd 5, RTO !!
[   12.512066] sunxi-mmc 1c0f000.sdmmc: smc 0 p0 err, cmd 5, RTO !!
[   12.512876] sunxi-mmc 1c0f000.sdmmc: smc 0 p0 err, cmd 5, RTO !!
[   12.513685] sunxi-mmc 1c0f000.sdmmc: smc 0 p0 err, cmd 5, RTO !!
[   12.514314] sunxi-mmc 1c0f000.sdmmc: sdc set ios: clk 400000Hz bm PP pm ON vB
[   12.514355] sunxi-mmc 1c0f000.sdmmc: sdc set ios: clk 400000Hz bm PP pm ON vB
[   12.516725] sunxi-mmc 1c0f000.sdmmc: sdc set ios: clk 400000Hz bm PP pm ON vB
[   12.537254] mmc0: host does not support reading read-only switch. assuming w.
[   12.538928] sunxi-mmc 1c0f000.sdmmc: sdc set ios: clk 400000Hz bm PP pm ON vB
[   12.538968] sunxi-mmc 1c0f000.sdmmc: sdc set ios: clk 50000000Hz bm PP pm ONB
[   12.539061] sunxi-mmc 1c0f000.sdmmc: sdc set ios: clk 50000000Hz bm PP pm ONB
[   12.539080] mmc0: new high speed SDHC card at address 0001
[   12.730196] mmcblk0: mmc0:0001 00000 29.8 GiB
[   12.740040] sunxi-mmc 1c10000.sdmmc: sdc set ios: clk 0Hz bm PP pm UP vdd 21B
[   12.740548]  mmcblk0: p1 p2 p3
[   12.763850] sunxi-mmc 1c10000.sdmmc: no vqmmc,Check if there is regulator
[   12.786397] sunxi-mmc 1c10000.sdmmc: sdc set ios: clk 400000Hz bm PP pm ON vB
[   12.815946] sunxi-mmc 1c10000.sdmmc: base:0xffffff80000e0000 irq:93
[   12.827889] sunxi-mmc 1c10000.sdmmc: smc 1 p1 err, cmd 52, RTO !!
[   12.840261] usbcore: registered new interface driver usbhid
[   12.851533] sunxi-mmc 1c10000.sdmmc: smc 1 p1 err, cmd 52, RTO !!
[   12.863451] sunxi-mmc 1c10000.sdmmc: sdc set ios: clk 400000Hz bm PP pm ON vB
[   12.863471] usbhid: USB HID core driver
[   12.890387] usbcore: registered new interface driver snd-usb-audio
[   12.903493] sunxi-mmc 1c10000.sdmmc: sdc set ios: clk 400000Hz bm PP pm ON vB
[   12.920799] sndhdmi sound.7:  sndhdmi <-> 1c22800.daudio mapping ok
[   12.933167] sunxi-mmc 1c10000.sdmmc: smc 1 p1 err, cmd 8, RTO !!
[   12.946049] sunxi-mmc 1c10000.sdmmc: smc 1 p1 err, cmd 5, RTO !!
[   12.958015] TCP: cubic registered
[   12.966912] sunxi-mmc 1c10000.sdmmc: smc 1 p1 err, cmd 5, RTO !!
[   12.978893] NET: Registered protocol family 10
[   12.989090] sunxi-mmc 1c10000.sdmmc: smc 1 p1 err, cmd 5, RTO !!
[   13.001703] sit: IPv6 over IPv4 tunneling driver
[   13.012155] sunxi-mmc 1c10000.sdmmc: smc 1 p1 err, cmd 5, RTO !!
[   13.024521] NET: Registered protocol family 17
[   13.034829] sunxi-mmc 1c10000.sdmmc: smc 1 p1 err, cmd 55, RTO !!
[   13.047095] 8021q: 802.1Q VLAN Support v1.8
[   13.057090] sunxi-mmc 1c10000.sdmmc: smc 1 p1 err, cmd 55, RTO !!
[   13.069193] Key type dns_resolver registered
[   13.079276] sunxi-mmc 1c10000.sdmmc: smc 1 p1 err, cmd 55, RTO !!
[   13.091654] Registering SWP/SWPB emulation handler
[   13.102411] sunxi-mmc 1c10000.sdmmc: smc 1 p1 err, cmd 55, RTO !!
[   13.114667] sunxi-mmc 1c10000.sdmmc: sdc set ios: clk 400000Hz bm OD pm ON vB
[   13.114955] registered taskstats version 1
[   13.115787] Key type encrypted registered
[   13.115795] AppArmor: AppArmor sha1 policy hashing enabled
[   13.116109] [DISP] disp_boot_para_parse,line:301:of_property_read disp.boot_l
[   13.116111] [DISP] boot_disp:0x0
[   13.116787] [HDMI] power vcc-hdmi-33
[   13.117250] [HDMI] cec support = 0
[   13.205988] sunxi-mmc 1c10000.sdmmc: smc 1 p1 err, cmd 1, RTO !!
[   13.218080] sunxi-mmc 1c10000.sdmmc: sdc set ios: clk 0Hz bm OD pm OFF vdd 0B
[   13.235617] sunxi-rtc 1f00000.rtc: setting system clock to 2016-11-02 05:33:)
[   13.251493] input: sunxi-ths as /devices/virtual/input/input2
[   13.263708] thermal thermal_zone0: failed to read out thermal zone 0
[   13.276819] ALSA device list:
[   13.285850]   #0: sndhdmi
[   13.294771] md: Waiting for all devices to be available before autodetect
[   13.308130] md: If you don't use raid, use raid=noautodetect
[   13.320746] md: Autodetecting RAID arrays.
[   13.331160] md: Scanned 0 and added 0 devices.
[   13.341999] md: autorun ...
[   13.350937] md: ... autorun DONE.
[   13.361262] EXT4-fs (mmcblk0p2): couldn't mount as ext3 due to feature incoms
[   13.376839] EXT4-fs (mmcblk0p2): couldn't mount as ext2 due to feature incoms
[   13.395388] EXT4-fs (mmcblk0p2): warning: mounting unchecked fs, running e2fd
[   13.412435] EXT4-fs (mmcblk0p2): mounted filesystem without journal. Opts: ()
[   13.426876] VFS: Mounted root (ext4 filesystem) on device 179:2.
[   13.454879] devtmpfs: mounted
[   13.464513] Freeing unused kernel memory: 520K (ffffffc0009e2000 - ffffffc00)
[   13.829477] [DISP] disp_device_attached_and_enable,line:159:attched ok, mgr00
[   13.872655] systemd[1]: systemd 229 running in system mode. (+PAM +AUDIT +SE)
[   13.899190] [ehci0-controller]: sunxi_usb_disable_ehci
[   13.911775] systemd[1]: Detected architecture arm64.
[   13.923857] [sunxi-ehci0]: remove, pdev->name: 1c1a000.ehci0-controller, sun0
[   13.940901] scene_lock_destroy name=ehci_standby
[   13.952600] sunxi-ehci 1c1a000.ehci0-controller: remove, state 4

Welcome to Ubuntu 16.04.1 LTS!

[   13.965827] usb usb1: USB disconnect, device number 1
[   13.977700] systemd[1]: Set hostname to <p64>.
[   13.989825] sunxi-ehci 1c1a000.ehci0-controller: USB bus 1 deregistered
[   14.003912] [ohci0-controller]: sunxi_usb_disable_ohci
[   14.016319] [sunxi-ohci0]: remove, pdev->name: 1c1a000.ohci0-controller, sun0
[   14.033468] scene_lock_destroy name=ohci_standby
[   14.045342] sunxi-ohci 1c1a000.ohci0-controller: remove, state 4
[   14.059501] usb usb3: USB disconnect, device number 1
[   14.072198] sunxi-ohci 1c1a000.ohci0-controller: USB bus 3 deregistered
[   14.086147] [ehci0-controller]: sunxi_usb_enable_ehci
[   14.098177] [sunxi-ehci0]: probe, pdev->name: 1c1a000.ehci0-controller, sunx8
[   14.118155] sunxi-ehci 1c1a000.ehci0-controller: SW USB2.0 'Enhanced' Host Cr
[   14.134923] sunxi-ehci 1c1a000.ehci0-controller: new USB bus registered, ass1
[   14.451855] systemd[1]: Reached target Swap.
[  OK  ] Reached target Swap.
[   14.479457] systemd[1]: Set up automount Arbitrary Executable File Formats F.
[  OK  ] Set up automount Arbitrary Executab...ats File System Automount Point.
[   14.519410] systemd[1]: Created slice User and Session Slice.
[  OK  ] Created slice User and Session Slice.
[   14.548080] systemd[1]: Listening on Journal Socket.
[  OK  ] Listening on Journal Socket.
[   14.577478] systemd[1]: Listening on udev Kernel Socket.
[  OK  ] Listening on udev Kernel Socket.
[   14.606921] systemd[1]: Listening on Syslog Socket.
[  OK  ] Listening on Syslog Socket.
[   14.636382] systemd[1]: Reached target Remote File Systems (Pre).
[  OK  ] Reached target Remote File Systems (Pre).
[   14.665883] systemd[1]: Reached target Remote File Systems.
[  OK  ] Reached target Remote File Systems.
[   14.695486] systemd[1]: Listening on fsck to fsckd communication Socket.
[  OK  ] Listening on fsck to fsckd communication Socket.
[   14.725043] systemd[1]: Listening on udev Control Socket.
[  OK  ] Listening on udev Control Socket.
[   14.754560] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[  OK  ] Listening on /dev/initctl Compatibility Named Pipe.
[   14.785183] systemd[1]: Created slice System Slice.
[  OK  ] Created slice System Slice.
[   14.813545] systemd[1]: Reached target Slices.
[  OK  ] Reached target Slices.
[   14.845006] cgroup: systemd (1) created nested cgroup for controller "blkio".
[   14.870094] systemd[1]: Starting Create list of required static device nodes.
         Starting Create list of required st... nodes for the current kernel...
[   14.914157] systemd[1]: Mounting POSIX Message Queue File System...
         Mounting POSIX Message Queue File System...
[   14.953531] systemd[1]: Mounting Debug File System...
         Mounting Debug File System...
[   14.981828] systemd[1]: Created slice system-serial\x2dgetty.slice.
[  OK  ] Created slice system-serial\x2dgetty.slice.
[   15.020835] systemd[1]: Starting Load Kernel Modules...
         Starting Load Kernel Modules...
[   15.072193] systemd[1]: Started Read required files in advance.
[  OK  ] Started Read required files in advance.
[   15.421759] cfg80211: Calling CRDA to update world regulatory domain
[   37.445422] BUG: soft lockup - CPU#0 stuck for 22s! [kworker/0:1:30]
[   37.459339] Modules linked in: cfg80211(+)
[   37.470684]
[   37.479041] CPU: 0 PID: 30 Comm: kworker/0:1 Not tainted 3.10.104 #1
[   37.492760] Workqueue: events start_work
[   37.503768] task: ffffffc078b52f80 ti: ffffffc078b54000 task.ti: ffffffc078b0
[   37.518760] PC is at __do_softirq+0xb4/0x2d8
[   37.530253] LR is at __do_softirq+0x30/0x2d8
[   37.541662] pc : [<ffffffc0000b5fb4>] lr : [<ffffffc0000b5f30>] pstate: 40005
[   37.556559] sp : ffffffc078b57910
[   37.566945] x29: ffffffc078b57910 x28: ffffffc000a6e0c0
[   37.579553] x27: ffffffc000a6e000 x26: ffffffc078b57910
[   37.592145] x25: 0000000000000000 x24: 000000000000000a
[   37.604763] x23: 0000000080000145 x22: ffffffc078b57a40
[   37.617307] x21: ffffffc078b54000 x20: 000000000000001e
[   37.629902] x19: 0000000000000002 x18: 0000000000000013
[   37.642445] x17: 000000000000000e x16: 0000000000000007
[   37.654902] x15: 0000000000000001 x14: 0000000000000007
[   37.667259] x13: 000000000000000e x12: ffffffc078b57900
[   37.679572] x11: 0000000000000007 x10: 000000000000000e
[   37.691807] x9 : 0000000225c17d03 x8 : 000000001420e251
[   37.703934] x7 : 0007270e004baf00 x6 : ffffffc078b54000
[   37.715824] x5 : 0000000029aaaaab x4 : 0000000037d243f2
[   37.727480] x3 : 0000000000000020 x2 : ffffffc000be4900
[   37.739110] x1 : ffffffc000be4900 x0 : 0000000000000000
[   37.750643]
[   37.750643] PC: 0xffffffc0000b5f34:
[   37.767202] 5f34  b0004dc1 9272c746 f940a022 8b020000 f9003fa0 f94008c0 b9402
[   37.781866] 5f54  2a0203e2 12147842 b9001402 912402a2 b98054c0 d37ae400 b8600
[   37.796557] 5f74  11040000 b90050c0 b0004ddb b94054c0 f90043b5 9103037c aa068
[   37.811261] 5f94  f90037a1 b9008ba0 f94043a0 91240001 b98056a0 d37ae400 b820f
[   37.825967] 5fb4  d2800014 91030360 8b140000 f9003ba0 360009f3 f0004d40 93430
[   37.840636] 5fd4  b94052b7 d538d082 8b364800 2a1603f9 91002000 b8626801 11001
[   37.855264] 5ff4  d503201f 14000017 b94056a1 52800800 f0003382 1ac00c20 f9470
[   37.869918] 6014  f8606840 9ac12400 360001c0 b94052a0 11000400 b90052a0 d0000
[   37.884591]
[   37.884591] LR: 0xffffffc0000b5eb0:
[   37.901170] 5eb0  a8c37bfd d65f03c0 a9be7bfd 910003fd f9000bf3 aa0003f3 aa1ef
[   37.915736] 5ed0  f9404661 aa1303e0 d63f0020 340000c0 a9418662 aa1303e0 52802
[   37.930206] 5ef0  94008215 f9400bf3 a8c27bfd d65f03c0 a9b77bfd 910003fd a9015
[   37.944692] 5f10  a90363f7 a9046bf9 a90573fb aa1e03e0 f0005975 d503201f 52802
[   37.959154] 5f30  910003fa b0004dc1 9272c746 f940a022 8b020000 f9003fa0 f9402
[   37.973595] 5f50  b9008fa2 2a0203e2 12147842 b9001402 912402a2 b98054c0 d37a3
[   37.988010] 5f70  b94050c0 11040000 b90050c0 b0004ddb b94054c0 f90043b5 91035
[   38.002467] 5f90  52800158 f90037a1 b9008ba0 f94043a0 91240001 b98056a0 d37af
[   38.016992]
[   38.016992] SP: 0xffffffc078b57890:
[   38.033422] 7890  0000001e 00000000 78b54000 ffffffc0 78b57a40 ffffffc0 80000
[   38.048096] 78b0  0000000a 00000000 00000000 00000000 78b57910 ffffffc0 00a60
[   38.062752] 78d0  00a6e0c0 ffffffc0 78b57910 ffffffc0 000b5f30 ffffffc0 78b50
[   38.077424] 78f0  000b5fb4 ffffffc0 40000145 00000000 000001c0 00000000 00000
[   38.092126] 7910  78b579a0 ffffffc0 000b62c4 ffffffc0 000001c0 00000000 00000
[   38.106790] 7930  00000000 00000000 78b57a40 ffffffc0 80000145 00000000 00000
[   38.121465] 7950  00000000 00000000 00000140 00000000 00000001 00000000 78b50
[   38.135965] 7970  78805840 ffffffc0 00a6e000 ffffffc0 78b579c0 ffffffc0 ffff0
[   38.150331]
[   38.150331] X1: 0xffffffc000be4880:
[   38.166291] 4880  00000000 00000000 00000000 00000000 00bb7770 ffffffc0 00000
[   38.180678] 48a0  00000000 00000000 0000000f 00000000 0000000f 00000000 00000
[   38.195023] 48c0  0000000f 00000000 00000000 00000000 0000000f 00000000 00000
[   38.209319] 48e0  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   38.223535] 4900  00000282 00000160 0000004e 00000007 00000000 00000000 00000
[   38.237681] 4920  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   38.251760] 4940  00000000 000003aa 0000003b 00000003 00000000 00000000 00000
[   38.265807] 4960  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   38.279789]
[   38.279789] X2: 0xffffffc000be4880:
[   38.294984] 4880  00000000 00000000 00000000 00000000 00bb7770 ffffffc0 00000
[   38.308925] 48a0  00000000 00000000 0000000f 00000000 0000000f 00000000 00000
[   38.322885] 48c0  0000000f 00000000 00000000 00000000 0000000f 00000000 00000
[   38.336746] 48e0  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   38.350518] 4900  00000282 00000160 0000004e 00000007 00000000 00000000 00000
[   38.364274] 4920  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   38.378019] 4940  00000000 000003aa 0000003b 00000003 00000000 00000000 00000
[   38.391732] 4960  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   38.405420]
[   38.405420] X6: 0xffffffc078b53f80:
[   38.420165] 3f80  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   38.434012] 3fa0  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   38.447855] 3fc0  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   38.461668] 3fe0  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   38.475453] 4000  00000002 00000000 ffffffff ffffffff 78b52f80 ffffffc0 00a70
[   38.489282] 4020  000c2808 ffffffc0 00000000 00000000 00000000 00000000 00000
[   38.503154] 4040  00000000 00000000 00000000 00000000 00010104 00000000 57ac0
[   38.517021] 4060  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   38.530872]
[   38.530872] X12: 0xffffffc078b57880:
[   38.546015] 7880  00000013 00000000 00000002 00000000 0000001e 00000000 78b50
[   38.559982] 78a0  78b57a40 ffffffc0 80000145 00000000 0000000a 00000000 00000
[   38.573893] 78c0  78b57910 ffffffc0 00a6e000 ffffffc0 00a6e0c0 ffffffc0 78b50
[   38.587790] 78e0  000b5f30 ffffffc0 78b57910 ffffffc0 000b5fb4 ffffffc0 40000
[   38.601645] 7900  000001c0 00000000 0000001e 00000000 78b579a0 ffffffc0 000b0
[   38.615488] 7920  000001c0 00000000 0000001e 00000000 00000000 00000000 78b50
[   38.629269] 7940  80000145 00000000 00000001 00000000 00000000 00000000 00000
[   38.642986] 7960  00000001 00000000 78b54000 ffffffc0 78805840 ffffffc0 00a60
[   38.656680]
[   38.656680] X21: 0xffffffc078b53f80:
[   38.671355] 3f80  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   38.685063] 3fa0  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   38.698654] 3fc0  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   38.712156] 3fe0  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   38.725568] 4000  00000002 00000000 ffffffff ffffffff 78b52f80 ffffffc0 00a70
[   38.738960] 4020  000c2808 ffffffc0 00000000 00000000 00000000 00000000 00000
[   38.752347] 4040  00000000 00000000 00000000 00000000 00010104 00000000 57ac0
[   38.765683] 4060  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   38.778946]
[   38.778946] X22: 0xffffffc078b579c0:
[   38.792764] 79c0  78b579e0 ffffffc0 00084574 ffffffc0 00a62000 ffffffc0 00000
[   38.806043] 79e0  78b57a10 ffffffc0 000813f8 ffffffc0 00c52640 ffffffc0 00000
[   38.819247] 7a00  78b57a40 ffffffc0 0000400c ffffff80 78b57b60 ffffffc0 00080
[   38.832432] 7a20  00000140 00000000 7880fe0c ffffffc0 78b57b60 ffffffc0 00710
[   38.845592] 7a40  00000006 00000000 00000140 00000000 00000000 00000000 00000
[   38.858748] 7a60  0000003c 00000000 78b57bd8 ffffffc0 00000000 00000000 00000
[   38.871894] 7a80  77145ac0 ffffffc0 00000000 00000000 0bdd084f 0a000705 0eaa5
[   38.885082] 7aa0  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   38.898284]
[   38.898284] X26: 0xffffffc078b57890:
[   38.911990] 7890  0000001e 00000000 78b54000 ffffffc0 78b57a40 ffffffc0 80000
[   38.925216] 78b0  0000000a 00000000 00000000 00000000 78b57910 ffffffc0 00a60
[   38.938383] 78d0  00a6e0c0 ffffffc0 78b57910 ffffffc0 000b5f30 ffffffc0 78b50
[   38.951594] 78f0  000b5fb4 ffffffc0 40000145 00000000 000001c0 00000000 00000
[   38.964879] 7910  78b579a0 ffffffc0 000b62c4 ffffffc0 000001c0 00000000 00000
[   38.978196] 7930  00000000 00000000 78b57a40 ffffffc0 80000145 00000000 00000
[   38.991543] 7950  00000000 00000000 00000140 00000000 00000001 00000000 78b50
[   39.004926] 7970  78805840 ffffffc0 00a6e000 ffffffc0 78b579c0 ffffffc0 ffff0
[   39.018396]
[   39.018396] X27: 0xffffffc000a6df80:
[   39.032796] df80  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   39.046361] dfa0  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   39.059815] dfc0  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   39.073245] dfe0  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   39.086669] e000  00000e12 00000e12 00000000 00000000 00000000 00000000 00000
[   39.100103] e020  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   39.113533] e040  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   39.126945] e060  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   39.140346]
[   39.140346] X28: 0xffffffc000a6e040:
[   39.154609] e040  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   39.168108] e060  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   39.181492] e080  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   39.194877] e0a0  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   39.208261] e0c0  000b6880 ffffffc0 000bdb80 ffffffc0 00617a10 ffffffc0 00610
[   39.221728] e0e0  003ade80 ffffffc0 003ae4b0 ffffffc0 000b6998 ffffffc0 000e0
[   39.235155] e100  000d6b38 ffffffc0 0012bbcc ffffffc0 00000000 00000000 00000
[   39.248554] e120  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   39.261955]
[   39.261955] X29: 0xffffffc078b57890:
[   39.276201] 7890  0000001e 00000000 78b54000 ffffffc0 78b57a40 ffffffc0 80000
[   39.289691] 78b0  0000000a 00000000 00000000 00000000 78b57910 ffffffc0 00a60
[   39.303120] 78d0  00a6e0c0 ffffffc0 78b57910 ffffffc0 000b5f30 ffffffc0 78b50
[   39.316561] 78f0  000b5fb4 ffffffc0 40000145 00000000 000001c0 00000000 00000
[   39.330008] 7910  78b579a0 ffffffc0 000b62c4 ffffffc0 000001c0 00000000 00000
[   39.343434] 7930  00000000 00000000 78b57a40 ffffffc0 80000145 00000000 00000
[   39.356824] 7950  00000000 00000000 00000140 00000000 00000001 00000000 78b50
[   39.370228] 7970  78805840 ffffffc0 00a6e000 ffffffc0 78b579c0 ffffffc0 ffff0
[   39.383693]
[   39.389720]   task                        PC stack   pid father
[   39.400596] systemd         D ffffffc0000853b8     0     1      0 0x00000000
[   39.412792] Call trace:
[   39.419818] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   39.429897] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   39.440100] [<ffffffc00071a940>] schedule+0x74/0x7c
[   39.449954] [<ffffffc000718724>] schedule_timeout+0x34/0x27c
[   39.460635] [<ffffffc000719e7c>] wait_for_common+0x118/0x158
[   39.471269] [<ffffffc000719ee4>] wait_for_completion+0x28/0x34
[   39.482087] [<ffffffc0000d252c>] kthread_create_on_node+0x94/0x118
[   39.493330] [<ffffffc00011f778>] audit_receive+0x244/0x7c8
[   39.503750] [<ffffffc000642be4>] netlink_unicast+0x114/0x1c0
[   39.514384] [<ffffffc000642fe4>] netlink_sendmsg+0x274/0x2d0
[   39.524938] [<ffffffc000602d3c>] sock_sendmsg+0x94/0xb4
[   39.535009] [<ffffffc000604e54>] SyS_sendto+0xc8/0xf4
[   39.544889] kthreadd        R  running task        0     2      0 0x00000000
[   39.557039] Call trace:
[   39.564044] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   39.574073] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   39.584142] [<ffffffc00071a940>] schedule+0x74/0x7c
[   39.593799] [<ffffffc0000d2fdc>] kthreadd+0x100/0x180
[   39.603572] ksoftirqd/0     S ffffffc0000853b8     0     3      2 0x00000000
[   39.615631] Call trace:
[   39.622515] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   39.632402] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   39.642349] [<ffffffc00071a940>] schedule+0x74/0x7c
[   39.651871] [<ffffffc0000dae38>] smpboot_thread_fn+0x200/0x258
[   39.662467] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   39.671905] kworker/0:0     S ffffffc0000853b8     0     4      2 0x00000000
[   39.683898] Call trace:
[   39.690729] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   39.700506] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   39.710386] [<ffffffc00071a940>] schedule+0x74/0x7c
[   39.719810] [<ffffffc0000cc80c>] worker_thread+0x2dc/0x320
[   39.729951] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   39.739362] kworker/0:0H    S ffffffc0000853b8     0     5      2 0x00000000
[   39.751378] Call trace:
[   39.758319] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   39.768300] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   39.778410] [<ffffffc00071a940>] schedule+0x74/0x7c
[   39.788170] [<ffffffc0000cc80c>] worker_thread+0x2dc/0x320
[   39.798538] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   39.808149] kworker/u8:0    S ffffffc0000853b8     0     6      2 0x00000000
[   39.820255] Call trace:
[   39.827300] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   39.837400] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   39.847624] [<ffffffc00071a940>] schedule+0x74/0x7c
[   39.857419] [<ffffffc0000cc80c>] worker_thread+0x2dc/0x320
[   39.867899] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   39.877584] migration/0     S ffffffc0000853b8     0     7      2 0x00000000
[   39.889828] Call trace:
[   39.896903] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   39.907007] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   39.917127] [<ffffffc00071a940>] schedule+0x74/0x7c
[   39.926848] [<ffffffc0000dae38>] smpboot_thread_fn+0x200/0x258
[   39.937612] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   39.947185] rcu_preempt     S ffffffc0000853b8     0     8      2 0x00000000
[   39.959323] Call trace:
[   39.966354] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   39.976390] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   39.986459] [<ffffffc00071a940>] schedule+0x74/0x7c
[   39.996070] [<ffffffc000718920>] schedule_timeout+0x230/0x27c
[   40.006651] [<ffffffc00012c7e8>] rcu_gp_kthread+0x30c/0x4bc
[   40.017009] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   40.026477] rcu_bh          S ffffffc0000853b8     0     9      2 0x00000000
[   40.038487] Call trace:
[   40.045405] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   40.055340] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   40.065369] [<ffffffc00071a940>] schedule+0x74/0x7c
[   40.075007] [<ffffffc00012c568>] rcu_gp_kthread+0x8c/0x4bc
[   40.085337] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   40.094876] rcu_sched       S ffffffc0000853b8     0    10      2 0x00000000
[   40.106961] Call trace:
[   40.113940] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   40.123956] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   40.134051] [<ffffffc00071a940>] schedule+0x74/0x7c
[   40.143758] [<ffffffc00012c568>] rcu_gp_kthread+0x8c/0x4bc
[   40.154103] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   40.163661] watchdog/0      R  running task        0    11      2 0x00000000
[   40.175761] Call trace:
[   40.182763] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   40.192782] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   40.202891] [<ffffffc00071a940>] schedule+0x74/0x7c
[   40.212570] [<ffffffc0000dae38>] smpboot_thread_fn+0x200/0x258
[   40.223296] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   40.232847] watchdog/1      S ffffffc0000853b8     0    12      2 0x00000000
[   40.244972] Call trace:
[   40.252000] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   40.262033] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   40.272143] [<ffffffc00071a940>] schedule+0x74/0x7c
[   40.281822] [<ffffffc0000dae38>] smpboot_thread_fn+0x200/0x258
[   40.292548] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   40.302100] migration/1     S ffffffc0000853b8     0    13      2 0x00000000
[   40.314225] Call trace:
[   40.321256] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   40.331299] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   40.341423] [<ffffffc00071a940>] schedule+0x74/0x7c
[   40.351118] [<ffffffc0000dae38>] smpboot_thread_fn+0x200/0x258
[   40.361859] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   40.371427] ksoftirqd/1     S ffffffc0000853b8     0    14      2 0x00000000
[   40.383569] Call trace:
[   40.390616] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   40.400676] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   40.410817] [<ffffffc00071a940>] schedule+0x74/0x7c
[   40.420529] [<ffffffc0000dae38>] smpboot_thread_fn+0x200/0x258
[   40.431286] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   40.440871] kworker/1:0     S ffffffc0000853b8     0    15      2 0x00000000
[   40.453033] Call trace:
[   40.460098] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   40.470173] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   40.480333] [<ffffffc00071a940>] schedule+0x74/0x7c
[   40.490064] [<ffffffc0000cc80c>] worker_thread+0x2dc/0x320
[   40.500447] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   40.510039] kworker/1:0H    S ffffffc0000853b8     0    16      2 0x00000000
[   40.522204] Call trace:
[   40.529276] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   40.539347] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   40.549498] [<ffffffc00071a940>] schedule+0x74/0x7c
[   40.559220] [<ffffffc0000cc80c>] worker_thread+0x2dc/0x320
[   40.569596] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   40.579179] watchdog/2      S ffffffc0000853b8     0    17      2 0x00000000
[   40.591336] Call trace:
[   40.598396] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   40.608476] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   40.618628] [<ffffffc00071a940>] schedule+0x74/0x7c
[   40.628383] [<ffffffc0000dae38>] smpboot_thread_fn+0x200/0x258
[   40.639171] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   40.648782] migration/2     S ffffffc0000853b8     0    18      2 0x00000000
[   40.660936] Call trace:
[   40.668001] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   40.678084] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   40.688247] [<ffffffc00071a940>] schedule+0x74/0x7c
[   40.698018] [<ffffffc0000dae38>] smpboot_thread_fn+0x200/0x258
[   40.708819] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   40.718439] ksoftirqd/2     S ffffffc0000853b8     0    19      2 0x00000000
[   40.730597] Call trace:
[   40.737668] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   40.747755] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   40.757923] [<ffffffc00071a940>] schedule+0x74/0x7c
[   40.767698] [<ffffffc0000dae38>] smpboot_thread_fn+0x200/0x258
[   40.778502] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   40.788138] kworker/2:0     S ffffffc0000853b8     0    20      2 0x00000000
[   40.800317] Call trace:
[   40.807408] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   40.817514] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   40.827698] [<ffffffc00071a940>] schedule+0x74/0x7c
[   40.837485] [<ffffffc0000cc80c>] worker_thread+0x2dc/0x320
[   40.847908] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   40.857533] kworker/2:0H    S ffffffc0000853b8     0    21      2 0x00000000
[   40.869701] Call trace:
[   40.876779] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   40.886877] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   40.897050] [<ffffffc00071a940>] schedule+0x74/0x7c
[   40.906826] [<ffffffc0000cc80c>] worker_thread+0x2dc/0x320
[   40.917242] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   40.926860] watchdog/3      S ffffffc0000853b8     0    22      2 0x00000000
[   40.939020] Call trace:
[   40.946090] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   40.956178] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   40.966341] [<ffffffc00071a940>] schedule+0x74/0x7c
[   40.976107] [<ffffffc0000dae38>] smpboot_thread_fn+0x200/0x258
[   40.986904] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   40.996521] migration/3     S ffffffc0000853b8     0    23      2 0x00000000
[   41.008679] Call trace:
[   41.015752] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   41.025845] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   41.036014] [<ffffffc00071a940>] schedule+0x74/0x7c
[   41.045786] [<ffffffc0000dae38>] smpboot_thread_fn+0x200/0x258
[   41.056589] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   41.066212] ksoftirqd/3     S ffffffc0000853b8     0    24      2 0x00000000
[   41.078377] Call trace:
[   41.085451] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   41.095545] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   41.105722] [<ffffffc00071a940>] schedule+0x74/0x7c
[   41.115507] [<ffffffc0000dae38>] smpboot_thread_fn+0x200/0x258
[   41.126323] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   41.135957] kworker/3:0     S ffffffc0000853b8     0    25      2 0x00000000
[   41.148137] Call trace:
[   41.155224] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   41.165330] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   41.175517] [<ffffffc00071a940>] schedule+0x74/0x7c
[   41.185313] [<ffffffc0000cc80c>] worker_thread+0x2dc/0x320
[   41.195746] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   41.205382] kworker/3:0H    S ffffffc0000853b8     0    26      2 0x00000000
[   41.217564] Call trace:
[   41.224658] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   41.234769] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   41.244957] [<ffffffc00071a940>] schedule+0x74/0x7c
[   41.254748] [<ffffffc0000cc80c>] worker_thread+0x2dc/0x320
[   41.265174] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   41.274805] khelper         S ffffffc0000853b8     0    27      2 0x00000000
[   41.286980] Call trace:
[   41.294065] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   41.304168] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   41.314348] [<ffffffc00071a940>] schedule+0x74/0x7c
[   41.324130] [<ffffffc0000cbf8c>] rescuer_thread+0x248/0x298
[   41.334653] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   41.344284] kdevtmpfs       S ffffffc0000853b8     0    28      2 0x00000000
[   41.356455] Call trace:
[   41.363538] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   41.373640] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   41.383818] [<ffffffc00071a940>] schedule+0x74/0x7c
[   41.393601] [<ffffffc000490538>] devtmpfsd+0x12c/0x154
[   41.403631] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   41.413241] netns           S ffffffc0000853b8     0    29      2 0x00000000
[   41.425393] Call trace:
[   41.432453] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   41.442532] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   41.452694] [<ffffffc00071a940>] schedule+0x74/0x7c
[   41.462463] [<ffffffc0000cbf8c>] rescuer_thread+0x248/0x298
[   41.472970] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   41.482583] kworker/0:1     R  running task        0    30      2 0x00000002
[   41.494744] Workqueue: events start_work
[   41.503454] Call trace:
[   41.510528] [<ffffffc000088388>] dump_backtrace+0x0/0x118
[   41.520904] [<ffffffc0000884c4>] show_stack+0x24/0x30
[   41.530888] [<ffffffc0000e2a74>] sched_show_task+0xd4/0xe0
[   41.541311] [<ffffffc0000e2af0>] show_state_filter+0x70/0xa8
[   41.551903] [<ffffffc000122600>] watchdog_timer_fn+0x270/0x2fc
[   41.562675] [<ffffffc0000d5e7c>] __run_hrtimer+0x174/0x2d4
[   41.573084] [<ffffffc0000d69b4>] hrtimer_interrupt+0x128/0x230
[   41.583892] [<ffffffc000587804>] arch_timer_handler_phys+0x3c/0x4c
[   41.595088] [<ffffffc000126920>] handle_percpu_devid_irq+0xf0/0x1c8
[   41.606383] [<ffffffc000122a08>] generic_handle_irq+0x34/0x4c
[   41.617071] [<ffffffc000084570>] handle_IRQ+0x8c/0xac
[   41.626968] [<ffffffc0000813f8>] gic_handle_irq+0x60/0x8c
[   41.637229] Exception stack(0xffffffc078b577d0 to 0xffffffc078b578f0)
[   41.648707] 77c0:                                     00000002 00000000 00000
[   41.662193] 77e0: 78b57910 ffffffc0 000b5fb4 ffffffc0 00000000 00000000 00be0
[   41.675704] 7800: 00be4900 ffffffc0 00000020 00000000 37d243f2 00000000 29aa0
[   41.689237] 7820: 78b54000 ffffffc0 004baf00 0007270e 1420e251 00000000 25c12
[   41.702741] 7840: 0000000e 00000000 00000007 00000000 78b57900 ffffffc0 00000
[   41.716257] 7860: 00000007 00000000 00000001 00000000 00000007 00000000 00000
[   41.729740] 7880: 00000013 00000000 00000002 00000000 0000001e 00000000 78b50
[   41.743225] 78a0: 78b57a40 ffffffc0 80000145 00000000 0000000a 00000000 00000
[   41.756728] 78c0: 78b57910 ffffffc0 00a6e000 ffffffc0 00a6e0c0 ffffffc0 78b50
[   41.770250] 78e0: 000b5f30 ffffffc0 78b57910 ffffffc0
[   41.780323] [<ffffffc000083dc0>] el1_irq+0x80/0xe4
[   41.790089] [<ffffffc0000b62c4>] do_softirq+0x54/0x64
[   41.800111] [<ffffffc0000b653c>] irq_exit+0x7c/0xc0
[   41.809914] [<ffffffc000084574>] handle_IRQ+0x90/0xac
[   41.819913] [<ffffffc0000813f8>] gic_handle_irq+0x60/0x8c
[   41.830299] Exception stack(0xffffffc078b57a20 to 0xffffffc078b57b40)
[   41.841891] 7a20: 00000140 00000000 7880fe0c ffffffc0 78b57b60 ffffffc0 00710
[   41.855485] 7a40: 00000006 00000000 00000140 00000000 00000000 00000000 00000
[   41.869070] 7a60: 0000003c 00000000 78b57bd8 ffffffc0 00000000 00000000 00000
[   41.882616] 7a80: 77145ac0 ffffffc0 00000000 00000000 0bdd084f 0a000705 0eaa5
[   41.896187] 7aa0: 00000000 00000000 00000000 00000000 00000000 00000000 00000
[   41.909792] 7ac0: 00000007 00000000 0000000e 00000000 00000000 00000000 00000
[   41.923370] 7ae0: 7880fe0c ffffffc0 ffffffed 00000000 00000077 00000000 78800
[   41.936969] 7b00: 7880fe0c ffffffc0 00000000 00000000 00000140 00000000 00000
[   41.950566] 7b20: 00000000 00000000 78b57b60 ffffffc0 00124d0c ffffffc0 78b50
[   41.964173] [<ffffffc000083dc0>] el1_irq+0x80/0xe4
[   41.974055] [<ffffffc000124d0c>] __setup_irq+0x318/0x3e0
[   41.984498] [<ffffffc000124f4c>] request_threaded_irq+0xe0/0x124
[   41.995731] [<ffffffc00040d0bc>] disp_sys_register_irq+0x88/0x98
[   42.006985] [<ffffffc00041aec0>] disp_hdmi_enable+0x1d4/0x278
[   42.017949] [<ffffffc00040edf0>] disp_device_attached_and_enable+0x1bc/0x1d4
[   42.030375] [<ffffffc00040efa8>] bsp_disp_device_switch+0xbc/0xe4
[   42.041727] [<ffffffc000405dbc>] start_work+0x174/0x1f0
[   42.052100] [<ffffffc0000cb754>] process_one_work+0x27c/0x42c
[   42.063040] [<ffffffc0000cc738>] worker_thread+0x208/0x320
[   42.073705] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   42.083599] kworker/1:1     S ffffffc0000853b8     0    31      2 0x00000000
[   42.096057] Call trace:
[   42.103418] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   42.113757] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   42.124154] [<ffffffc00071a940>] schedule+0x74/0x7c
[   42.134142] [<ffffffc0000cc80c>] worker_thread+0x2dc/0x320
[   42.144817] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   42.154725] kworker/2:1     S ffffffc0000853b8     0    32      2 0x00000000
[   42.167190] Call trace:
[   42.174547] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   42.184878] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   42.195266] [<ffffffc00071a940>] schedule+0x74/0x7c
[   42.205266] [<ffffffc0000cc80c>] worker_thread+0x2dc/0x320
[   42.215914] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   42.225793] kworker/3:1     S ffffffc0000853b8     0    33      2 0x00000000
[   42.238238] Call trace:
[   42.245580] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   42.255933] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   42.266359] [<ffffffc00071a940>] schedule+0x74/0x7c
[   42.276387] [<ffffffc0000cc80c>] worker_thread+0x2dc/0x320
[   42.287081] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   42.296994] writeback       S ffffffc0000853b8     0    34      2 0x00000000
[   42.309457] Call trace:
[   42.316812] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   42.327178] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   42.337585] [<ffffffc00071a940>] schedule+0x74/0x7c
[   42.347532] [<ffffffc0000cbf8c>] rescuer_thread+0x248/0x298
[   42.358220] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   42.368015] bioset          S ffffffc0000853b8     0    35      2 0x00000000
[   42.380363] Call trace:
[   42.387568] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   42.397799] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   42.408125] [<ffffffc00071a940>] schedule+0x74/0x7c
[   42.418048] [<ffffffc0000cbf8c>] rescuer_thread+0x248/0x298
[   42.428719] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   42.438491] crypto          S ffffffc0000853b8     0    36      2 0x00000000
[   42.450805] Call trace:
[   42.458025] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   42.468261] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   42.478589] [<ffffffc00071a940>] schedule+0x74/0x7c
[   42.488531] [<ffffffc0000cbf8c>] rescuer_thread+0x248/0x298
[   42.499204] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   42.508938] kworker/u9:0    S ffffffc0000853b8     0    37      2 0x00000000
[   42.521203] Call trace:
[   42.528380] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   42.538522] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   42.548721] [<ffffffc00071a940>] schedule+0x74/0x7c
[   42.558567] [<ffffffc0000cc80c>] worker_thread+0x2dc/0x320
[   42.569069] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   42.578795] kblockd         S ffffffc0000853b8     0    38      2 0x00000000
[   42.591034] Call trace:
[   42.598104] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   42.608185] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   42.618343] [<ffffffc00071a940>] schedule+0x74/0x7c
[   42.628099] [<ffffffc0000cbf8c>] rescuer_thread+0x248/0x298
[   42.638624] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   42.648264] khubd           S ffffffc0000853b8     0    39      2 0x00000000
[   42.660435] Call trace:
[   42.667494] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   42.677556] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   42.687701] [<ffffffc00071a940>] schedule+0x74/0x7c
[   42.697459] [<ffffffc0004d9758>] hub_thread+0xc64/0xe30
[   42.707559] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   42.717135] md              S ffffffc0000853b8     0    40      2 0x00000000
[   42.729261] Call trace:
[   42.736294] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   42.746346] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   42.756483] [<ffffffc00071a940>] schedule+0x74/0x7c
[   42.766227] [<ffffffc0000cbf8c>] rescuer_thread+0x248/0x298
[   42.776709] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   42.786299] devfreq_wq      S ffffffc0000853b8     0    41      2 0x00000000
[   42.798429] Call trace:
[   42.805468] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   42.815524] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   42.825667] [<ffffffc00071a940>] schedule+0x74/0x7c
[   42.835417] [<ffffffc0000cbf8c>] rescuer_thread+0x248/0x298
[   42.845905] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   42.855499] usb_host_chose  D ffffffc0000853b8     0    42      2 0x00000000
[   42.867636] Call trace:
[   42.874688] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   42.884757] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   42.894911] [<ffffffc00071a940>] schedule+0x74/0x7c
[   42.904671] [<ffffffc000718724>] schedule_timeout+0x34/0x27c
[   42.915252] [<ffffffc000719e7c>] wait_for_common+0x118/0x158
[   42.925804] [<ffffffc000719ee4>] wait_for_completion+0x28/0x34
[   42.936514] [<ffffffc0000cb0d8>] flush_work+0xf8/0x11c
[   42.946474] [<ffffffc0000ccca4>] schedule_on_each_cpu+0xf8/0x124
[   42.957415] [<ffffffc00016ba90>] lru_add_drain_all+0x1c/0x24
[   42.967981] [<ffffffc0001a41f4>] migrate_prep+0x14/0x20
[   42.978058] [<ffffffc000167218>] alloc_contig_range+0xb8/0x26c
[   42.988780] [<ffffffc00049086c>] dma_alloc_from_contiguous+0xa4/0x12c
[   43.000175] [<ffffffc0000928cc>] __dma_alloc_coherent+0xb0/0x118
[   43.011078] [<ffffffc000092a00>] __dma_alloc_noncoherent+0xcc/0x158
[   43.022284] [<ffffffc000198c3c>] dma_pool_alloc+0xf0/0x1c4
[   43.032642] [<ffffffc0004ec254>] ehci_qh_alloc+0x4c/0xc4
[   43.042805] [<ffffffc0004ee2e4>] ehci_init+0x13c/0x3b8
[   43.052756] [<ffffffc0004ee580>] sunxi_ehci_setup+0x20/0x38
[   43.063154] [<ffffffc0004db748>] usb_add_hcd+0x1c8/0x5a8
[   43.073240] [<ffffffc0004f243c>] sunxi_insmod_ehci+0x118/0x218
[   43.083892] [<ffffffc0004f25b4>] sunxi_usb_enable_ehci+0x78/0x88
[   43.094751] [<ffffffc00050e0a8>] usb_msg_center+0x88/0x104
[   43.105049] [<ffffffc00050d1d8>] usb_host_scan_thread+0x54/0x68
[   43.115827] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   43.125353] rpciod          S ffffffc0000853b8     0    43      2 0x00000000
[   43.137401] Call trace:
[   43.144321] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   43.154235] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   43.164245] [<ffffffc00071a940>] schedule+0x74/0x7c
[   43.173867] [<ffffffc0000cbf8c>] rescuer_thread+0x248/0x298
[   43.184265] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   43.193796] kvm_arch_timer  S ffffffc0000853b8     0    44      2 0x00000000
[   43.205848] Call trace:
[   43.212781] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   43.222709] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   43.232732] [<ffffffc00071a940>] schedule+0x74/0x7c
[   43.242368] [<ffffffc0000cbf8c>] rescuer_thread+0x248/0x298
[   43.252775] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   43.262311] khungtaskd      S ffffffc0000853b8     0    69      2 0x00000000
[   43.274370] Call trace:
[   43.281301] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   43.291227] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   43.301251] [<ffffffc00071a940>] schedule+0x74/0x7c
[   43.310888] [<ffffffc000718920>] schedule_timeout+0x230/0x27c
[   43.321484] [<ffffffc0007189a0>] schedule_timeout_interruptible+0x34/0x40
[   43.333237] [<ffffffc000121e94>] watchdog+0x60/0x250
[   43.342952] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   43.352443] kswapd0         S ffffffc0000853b8     0    70      2 0x00000000
[   43.364475] Call trace:
[   43.371418] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   43.381379] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   43.391418] [<ffffffc00071a940>] schedule+0x74/0x7c
[   43.401064] [<ffffffc0001717dc>] kswapd+0x2b4/0x45c
[   43.410664] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   43.420123] ksmd            S ffffffc0000853b8     0    71      2 0x00000000
[   43.432121] Call trace:
[   43.439027] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   43.448949] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   43.458954] [<ffffffc00071a940>] schedule+0x74/0x7c
[   43.468563] [<ffffffc00019f8c8>] ksm_scan_thread+0x91c/0xb44
[   43.479008] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   43.488459] fsnotify_mark   S ffffffc0000853b8     0    72      2 0x00000000
[   43.500451] Call trace:
[   43.507358] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   43.517279] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   43.527295] [<ffffffc00071a940>] schedule+0x74/0x7c
[   43.536921] [<ffffffc0001ed7d4>] fsnotify_mark_destroy+0x128/0x13c
[   43.548025] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   43.557589] ecryptfs-kthrea S ffffffc0000853b8     0    73      2 0x00000000
[   43.569703] Call trace:
[   43.576709] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   43.586726] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   43.596817] [<ffffffc00071a940>] schedule+0x74/0x7c
[   43.606497] [<ffffffc0002943b8>] ecryptfs_threadfn+0xcc/0x1bc
[   43.617129] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   43.626711] nfsiod          S ffffffc0000853b8     0    74      2 0x00000000
[   43.638838] Call trace:
[   43.645858] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   43.655903] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   43.666033] [<ffffffc00071a940>] schedule+0x74/0x7c
[   43.675766] [<ffffffc0000cbf8c>] rescuer_thread+0x248/0x298
[   43.686273] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   43.695914] kthrotld        S ffffffc0000853b8     0    87      2 0x00000000
[   43.708104] Call trace:
[   43.715188] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   43.725274] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   43.735407] [<ffffffc00071a940>] schedule+0x74/0x7c
[   43.745121] [<ffffffc0000cbf8c>] rescuer_thread+0x248/0x298
[   43.755596] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   43.765215] vsync proc 0    S ffffffc0000853b8     0    88      2 0x00000000
[   43.777403] Call trace:
[   43.784486] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   43.794579] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   43.804717] [<ffffffc00071a940>] schedule+0x74/0x7c
[   43.814432] [<ffffffc000409030>] vsync_thread+0x88/0xbc
[   43.824511] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   43.834116] vsync proc 1    S ffffffc0000853b8     0    89      2 0x00000000
[   43.846287] Call trace:
[   43.853354] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   43.863430] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   43.873552] [<ffffffc00071a940>] schedule+0x74/0x7c
[   43.883257] [<ffffffc000409030>] vsync_thread+0x88/0xbc
[   43.893327] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   43.902919] kworker/u8:1    S ffffffc0000853b8     0    90      2 0x00000000
[   43.915083] Call trace:
[   43.922151] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   43.932238] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   43.942381] [<ffffffc00071a940>] schedule+0x74/0x7c
[   43.952130] [<ffffffc0000cc80c>] worker_thread+0x2dc/0x320
[   43.962522] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   43.972116] kworker/1:2     S ffffffc0000853b8     0    91      2 0x00000000
[   43.984254] Call trace:
[   43.991299] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   44.001364] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   44.011524] [<ffffffc00071a940>] schedule+0x74/0x7c
[   44.021309] [<ffffffc0000cc80c>] worker_thread+0x2dc/0x320
[   44.031732] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   44.041359] cfinteractive   S ffffffc0000853b8     0    92      2 0x00000000
[   44.053530] Call trace:
[   44.060610] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   44.070708] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   44.080884] [<ffffffc00071a940>] schedule+0x74/0x7c
[   44.090666] [<ffffffc0005674d4>] cpufreq_interactive_speedchange_task+0x74/04
[   44.103246] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   44.112937] autohotplug     S ffffffc0000853b8     0    93      2 0x00000000
[   44.125171] Call trace:
[   44.132317] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   44.142484] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   44.152718] [<ffffffc00071a940>] schedule+0x74/0x7c
[   44.162547] [<ffffffc00056a490>] autohotplug_thread_task+0x3e0/0x544
[   44.173993] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   44.183688] irq/92-sunxi-mm S ffffffc0000853b8     0    94      2 0x00000000
[   44.195926] Call trace:
[   44.203083] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   44.213260] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   44.223515] [<ffffffc00071a940>] schedule+0x74/0x7c
[   44.233371] [<ffffffc0001241e8>] irq_thread+0x138/0x174
[   44.243572] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   44.253259] mmcqd/0         S ffffffc0000853b8     0    95      2 0x00000000
[   44.265489] Call trace:
[   44.272629] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   44.282787] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   44.293022] [<ffffffc00071a940>] schedule+0x74/0x7c
[   44.302865] [<ffffffc000580d18>] mmc_queue_thread+0x124/0x168
[   44.313642] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   44.323336] kworker/u8:2    D ffffffc0000853b8     0    96      2 0x00000000
[   44.335575] Call trace:
[   44.342723] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   44.352889] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   44.363134] [<ffffffc00071a940>] schedule+0x74/0x7c
[   44.372984] [<ffffffc000718724>] schedule_timeout+0x34/0x27c
[   44.383657] [<ffffffc000719e7c>] wait_for_common+0x118/0x158
[   44.394300] [<ffffffc000719ee4>] wait_for_completion+0x28/0x34
[   44.405103] [<ffffffc0000d252c>] kthread_create_on_node+0x94/0x118
[   44.416323] [<ffffffc0000ca400>] create_worker+0x10c/0x1c4
[   44.426787] [<ffffffc0000cc460>] manage_workers.isra.10+0x108/0x1d8
[   44.438122] [<ffffffc0000cc684>] worker_thread+0x154/0x320
[   44.448604] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   44.458274] irq/93-sunxi-mm S ffffffc0000853b8     0    97      2 0x00000000
[   44.470476] Call trace:
[   44.477563] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   44.487673] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   44.497872] [<ffffffc00071a940>] schedule+0x74/0x7c
[   44.507680] [<ffffffc0001241e8>] irq_thread+0x138/0x174
[   44.517881] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   44.527552] system          S ffffffc0000853b8     0    98      2 0x00000000
[   44.539757] Call trace:
[   44.546842] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   44.556951] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   44.567151] [<ffffffc00071a940>] schedule+0x74/0x7c
[   44.576957] [<ffffffc0005a033c>] ion_heap_deferred_free+0xa4/0x15c
[   44.588224] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   44.597921] hdmi proc       S ffffffc0000853b8     0   111      2 0x00000000
[   44.610155] Call trace:
[   44.617270] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   44.627404] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   44.637632] [<ffffffc00071a940>] schedule+0x74/0x7c
[   44.647466] [<ffffffc000718920>] schedule_timeout+0x230/0x27c
[   44.658255] [<ffffffc000435fe0>] hdmi_delay_ms+0x48/0x54
[   44.668529] [<ffffffc000436058>] hdmi_run_thread+0x6c/0x8c
[   44.678964] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   44.688609] deferwq         S ffffffc0000853b8     0   112      2 0x00000000
[   44.700829] Call trace:
[   44.707953] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   44.718050] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   44.728194] [<ffffffc00071a940>] schedule+0x74/0x7c
[   44.737905] [<ffffffc0000cbf8c>] rescuer_thread+0x248/0x298
[   44.748370] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   44.757948] dramfreq_task   S ffffffc0000853b8     0   113      2 0x00000000
[   44.770099] Call trace:
[   44.777160] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   44.787216] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   44.797336] [<ffffffc00071a940>] schedule+0x74/0x7c
[   44.807026] [<ffffffc0005b0250>] sunxi_dramfreq_task_func+0x54/0x84
[   44.818241] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   44.827811] kworker/0:2     S ffffffc0000853b8     0   114      2 0x00000000
[   44.839955] Call trace:
[   44.847002] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   44.857064] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   44.867213] [<ffffffc00071a940>] schedule+0x74/0x7c
[   44.876931] [<ffffffc0000cc80c>] worker_thread+0x2dc/0x320
[   44.887303] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   44.896885] kworker/u9:1    S ffffffc0000853b8     0   115      2 0x00000000
[   44.909044] Call trace:
[   44.916108] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   44.926174] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   44.936317] [<ffffffc00071a940>] schedule+0x74/0x7c
[   44.946027] [<ffffffc0000cc80c>] worker_thread+0x2dc/0x320
[   44.956388] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   44.965956] ext4-dio-unwrit S ffffffc0000853b8     0   116      2 0x00000000
[   44.978102] Call trace:
[   44.985157] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   44.995234] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   45.005397] [<ffffffc00071a940>] schedule+0x74/0x7c
[   45.015187] [<ffffffc0000cbf8c>] rescuer_thread+0x248/0x298
[   45.025735] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   45.035402] kmod            x ffffffc0000853b8     0   129      1 0x00000004
[   45.047632] Call trace:
[   45.054748] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   45.064876] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   45.075051] [<ffffffc00071a940>] schedule+0x74/0x7c
[   45.084804] [<ffffffc0000b3fc4>] do_exit+0x898/0x8e0
[   45.094625] [<ffffffc0000b40d8>] do_group_exit+0x7c/0xdc
[   45.104837] [<ffffffc0000b4158>] __wake_up_parent+0x0/0x40
[   45.115245] mount           x ffffffc0000853b8     0   131      1 0x00000004
[   45.127447] Call trace:
[   45.134553] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   45.144634] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   45.154775] [<ffffffc00071a940>] schedule+0x74/0x7c
[   45.164503] [<ffffffc0000b3fc4>] do_exit+0x898/0x8e0
[   45.174330] [<ffffffc0000b40d8>] do_group_exit+0x7c/0xdc
[   45.184542] [<ffffffc0000b4158>] __wake_up_parent+0x0/0x40
[   45.194926] mount           x ffffffc0000853b8     0   132      1 0x00000004
[   45.207085] Call trace:
[   45.214108] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   45.224117] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   45.234192] [<ffffffc00071a940>] schedule+0x74/0x7c
[   45.243885] [<ffffffc0000b3fc4>] do_exit+0x898/0x8e0
[   45.253671] [<ffffffc0000b40d8>] do_group_exit+0x7c/0xdc
[   45.263843] [<ffffffc0000b4158>] __wake_up_parent+0x0/0x40
[   45.274196] systemd-modules D ffffffc0000853b8     0   135      1 0x00000000
[   45.286351] Call trace:
[   45.293411] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   45.303442] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   45.313531] [<ffffffc00071a940>] schedule+0x74/0x7c
[   45.323211] [<ffffffc000718724>] schedule_timeout+0x34/0x27c
[   45.333760] [<ffffffc000719e7c>] wait_for_common+0x118/0x158
[   45.344313] [<ffffffc000719ee4>] wait_for_completion+0x28/0x34
[   45.355039] [<ffffffc0000d252c>] kthread_create_on_node+0x94/0x118
[   45.366163] [<ffffffc0000cdb80>] __alloc_workqueue_key+0x334/0x410
[   45.377385] [<ffffffbffc05d0a0>] $x+0xa0/0xec [cfg80211]
[   45.387502] [<ffffffc0000815b8>] do_one_initcall+0x8c/0x128
[   45.397900] [<ffffffc00010d8c8>] load_module+0x18a0/0x1e10
[   45.408214] [<ffffffc00010dfd0>] SyS_finit_module+0x8c/0xa0
[   45.418631] ureadahead      x ffffffc0000853b8     0   136      1 0x00000004
[   45.430732] Call trace:
[   45.437716] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   45.447670] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   45.457682] [<ffffffc00071a940>] schedule+0x74/0x7c
[   45.467282] [<ffffffc0000b3fc4>] do_exit+0x898/0x8e0
[   45.476978] [<ffffffc0000b40d8>] do_group_exit+0x7c/0xdc
[   45.487058] [<ffffffc0000b4158>] __wake_up_parent+0x0/0x40
[   45.497324] Sched Debug Version: v0.10, 3.10.104 #1
[   45.506937] ktime                                   : 36222.833766
[   45.517990] sched_clk                               : 45497.322062
[   45.529002] cpu_clk                                 : 45497.322144
[   45.539969] jiffies                                 : 4294940099
[   45.550738]
[   45.556477] sysctl_sched
[   45.563350]   .sysctl_sched_latency                    : 18.000000
[   45.574285]   .sysctl_sched_min_granularity            : 2.250000
[   45.585070]   .sysctl_sched_wakeup_granularity         : 3.000000
[   45.595810]   .sysctl_sched_child_runs_first           : 0
[   45.605851]   .sysctl_sched_features                   : 11835
[   45.616279]   .sysctl_sched_tunable_scaling            : 1 (logaritmic)
[   45.627574]
[   45.633193] cpu#0
[   45.639257]   .nr_running                    : 3
[   45.648252]   .load                          : 1024
[   45.657488]   .nr_switches                   : 2046
[   45.666682]   .nr_load_updates               : 2562
[   45.675867]   .nr_uninterruptible            : -4
[   45.684850]   .next_balance                  : 4294.937725
[   45.694710]   .curr->pid                     : 30
[   45.703702]   .clock                         : 13846.732708
[   45.713648]   .cpu_load[0]                   : 1024
[   45.722763]   .cpu_load[1]                   : 1024
[   45.731808]   .cpu_load[2]                   : 1024
[   45.740791]   .cpu_load[3]                   : 1024
[   45.749741]   .cpu_load[4]                   : 1024
[   45.758651]   .yld_count                     : 0
[   45.767258]   .sched_count                   : 2050
[   45.776142]   .sched_goidle                  : 576
[   45.784905]   .avg_idle                      : 1000000
[   45.793994]   .ttwu_count                    : 1509
[   45.802744]   .ttwu_local                    : 745
[   45.811350]
[   45.811350] cfs_rq[0]:/
[   45.822234]   .exec_clock                    : 553.871009
[   45.831483]   .MIN_vruntime                  : 0.000001
[   45.840539]   .min_vruntime                  : 556.825864
[   45.849767]   .max_vruntime                  : 0.000001
[   45.858730]   .spread                        : 0.000000
[   45.867636]   .spread0                       : 0.000000
[   45.876478]   .nr_spread_over                : 8
[   45.884646]   .nr_running                    : 1
[   45.892795]   .load                          : 1024
[   45.901221]   .runnable_load_avg             : 294
[   45.909543]   .blocked_load_avg              : 0
[   45.917673]   .tg_load_avg                   : 294
[   45.925961]   .tg_load_contrib               : 294
[   45.934208]   .tg_runnable_contrib           : 441
[   45.942420]   .tg->runnable_avg              : 441
[   45.950604]   .tg->usage_avg                 : 441
[   45.958760]   .tg->cfs_bandwidth.timer_active: 0
[   45.966720]   .throttled                     : 0
[   45.974633]   .throttle_count                : 0
[   45.982484]   .avg->runnable_avg_sum         : 20560
[   45.990700]   .avg->runnable_avg_period      : 47010
[   45.998901]
[   45.998901] rt_rq[0]:
[   46.008433]   .rt_nr_running                 : 2
[   46.016227]   .rt_throttled                  : 0
[   46.023999]   .rt_time                       : 0.000000
[   46.032400]   .rt_runtime                    : 950.000000
[   46.040935]
[   46.040935] runnable tasks:
[   46.040935]             task   PID         tree-key  switches  prio     execp
[   46.040935] -----------------------------------------------------------------
[   46.079867]         kthreadd     2         3.000000       104    98         /
[   46.094862]       watchdog/0    11        -2.989422         4     0        -/
[   46.109869] R    kworker/0:1    30       556.825864        37   120       55/
[   46.124940]
[   46.129617] cpu#1
[   46.134743]   .nr_running                    : 0
[   46.142854]   .load                          : 0
[   46.150937]   .nr_switches                   : 4414
[   46.159265]   .nr_load_updates               : 3589
[   46.167609]   .nr_uninterruptible            : 7
[   46.175672]   .next_balance                  : 4294.940113
[   46.184724]   .curr->pid                     : 0
[   46.192824]   .clock                         : 46183.335620
[   46.201990]   .cpu_load[0]                   : 0
[   46.210100]   .cpu_load[1]                   : 0
[   46.218167]   .cpu_load[2]                   : 0
[   46.226198]   .cpu_load[3]                   : 0
[   46.234197]   .cpu_load[4]                   : 0
[   46.242163]   .yld_count                     : 0
[   46.250143]   .sched_count                   : 4430
[   46.258432]   .sched_goidle                  : 1649
[   46.266735]   .avg_idle                      : 1000000
[   46.275360]   .ttwu_count                    : 2184
[   46.283701]   .ttwu_local                    : 1411
[   46.292033]
[   46.292033] cfs_rq[1]:/
[   46.302222]   .exec_clock                    : 3053.436419
[   46.311236]   .MIN_vruntime                  : 0.000001
[   46.319983]   .min_vruntime                  : 3031.980399
[   46.329016]   .max_vruntime                  : 0.000001
[   46.337772]   .spread                        : 0.000000
[   46.346508]   .spread0                       : 2475.154535
[   46.355518]   .nr_spread_over                : 19
[   46.363675]   .nr_running                    : 0
[   46.371740]   .load                          : 0
[   46.379800]   .runnable_load_avg             : 0
[   46.387883]   .blocked_load_avg              : 0
[   46.395956]   .tg_load_avg                   : 294
[   46.404232]   .tg_load_contrib               : 0
[   46.412310]   .tg_runnable_contrib           : 0
[   46.420379]   .tg->runnable_avg              : 441
[   46.428638]   .tg->usage_avg                 : 441
[   46.436887]   .tg->cfs_bandwidth.timer_active: 0
[   46.444979]   .throttled                     : 0
[   46.453085]   .throttle_count                : 0
[   46.461177]   .avg->runnable_avg_sum         : 0
[   46.469281]   .avg->runnable_avg_period      : 47824
[   46.477743]
[   46.477743] rt_rq[1]:
[   46.487815]   .rt_nr_running                 : 0
[   46.495881]   .rt_throttled                  : 0
[   46.503945]   .rt_time                       : 0.027224
[   46.512664]   .rt_runtime                    : 950.000000
[   46.521598]
[   46.521598] runnable tasks:
[   46.521598]             task   PID         tree-key  switches  prio     execp
[   46.521598] -----------------------------------------------------------------
[   46.562146]
[   46.567075] cpu#2
[   46.572480]   .nr_running                    : 0
[   46.580799]   .load                          : 0
[   46.588980]   .nr_switches                   : 231
[   46.597208]   .nr_load_updates               : 3347
[   46.605491]   .nr_uninterruptible            : 1
[   46.613426]   .next_balance                  : 4294.940129
[   46.622269]   .curr->pid                     : 0
[   46.630178]   .clock                         : 46626.135743
[   46.639155]   .cpu_load[0]                   : 0
[   46.647087]   .cpu_load[1]                   : 0
[   46.654997]   .cpu_load[2]                   : 0
[   46.662882]   .cpu_load[3]                   : 0
[   46.670738]   .cpu_load[4]                   : 0
[   46.678551]   .yld_count                     : 0
[   46.686342]   .sched_count                   : 233
[   46.694319]   .sched_goidle                  : 102
[   46.702272]   .avg_idle                      : 1000000
[   46.710642]   .ttwu_count                    : 73
[   46.718555]   .ttwu_local                    : 49
[   46.726477]
[   46.726477] cfs_rq[2]:/
[   46.736274]   .exec_clock                    : 352.157446
[   46.745003]   .MIN_vruntime                  : 0.000001
[   46.753560]   .min_vruntime                  : 393.817984
[   46.762302]   .max_vruntime                  : 0.000001
[   46.770843]   .spread                        : 0.000000
[   46.779393]   .spread0                       : -163.007880
[   46.788218]   .nr_spread_over                : 6
[   46.796112]   .nr_running                    : 0
[   46.803981]   .load                          : 0
[   46.811833]   .runnable_load_avg             : 0
[   46.819691]   .blocked_load_avg              : 0
[   46.827553]   .tg_load_avg                   : 294
[   46.835615]   .tg_load_contrib               : 0
[   46.843481]   .tg_runnable_contrib           : 0
[   46.851335]   .tg->runnable_avg              : 441
[   46.859391]   .tg->usage_avg                 : 441
[   46.867449]   .tg->cfs_bandwidth.timer_active: 0
[   46.875335]   .throttled                     : 0
[   46.883242]   .throttle_count                : 0
[   46.891130]   .avg->runnable_avg_sum         : 0
[   46.899033]   .avg->runnable_avg_period      : 47958
[   46.907312]
[   46.907312] rt_rq[2]:
[   46.917039]   .rt_nr_running                 : 0
[   46.924923]   .rt_throttled                  : 0
[   46.932777]   .rt_time                       : 0.027757
[   46.941323]   .rt_runtime                    : 950.000000
[   46.950055]
[   46.950055] runnable tasks:
[   46.950055]             task   PID         tree-key  switches  prio     execp
[   46.950055] -----------------------------------------------------------------
[   46.989794]
[   46.994539] cpu#3
[   46.999749]   .nr_running                    : 0
[   47.007947]   .load                          : 0
[   47.016128]   .nr_switches                   : 2063
[   47.024608]   .nr_load_updates               : 3387
[   47.033010]   .nr_uninterruptible            : 0
[   47.040999]   .next_balance                  : 4294.940111
[   47.049833]   .curr->pid                     : 0
[   47.057730]   .clock                         : 47049.255456
[   47.066695]   .cpu_load[0]                   : 0
[   47.074619]   .cpu_load[1]                   : 0
[   47.082521]   .cpu_load[2]                   : 0
[   47.090398]   .cpu_load[3]                   : 0
[   47.098244]   .cpu_load[4]                   : 0
[   47.106046]   .yld_count                     : 0
[   47.113828]   .sched_count                   : 2066
[   47.121891]   .sched_goidle                  : 889
[   47.129840]   .avg_idle                      : 1000000
[   47.138202]   .ttwu_count                    : 769
[   47.146205]   .ttwu_local                    : 296
[   47.154216]
[   47.154216] cfs_rq[3]:/
[   47.163997]   .exec_clock                    : 75.060463
[   47.172621]   .MIN_vruntime                  : 0.000001
[   47.181167]   .min_vruntime                  : 85.712190
[   47.189799]   .max_vruntime                  : 0.000001
[   47.198326]   .spread                        : 0.000000
[   47.206865]   .spread0                       : -471.113674
[   47.215690]   .nr_spread_over                : 6
[   47.223581]   .nr_running                    : 0
[   47.231455]   .load                          : 0
[   47.239309]   .runnable_load_avg             : 0
[   47.247166]   .blocked_load_avg              : 0
[   47.255031]   .tg_load_avg                   : 294
[   47.263099]   .tg_load_contrib               : 0
[   47.270974]   .tg_runnable_contrib           : 0
[   47.278834]   .tg->runnable_avg              : 441
[   47.286896]   .tg->usage_avg                 : 441
[   47.294958]   .tg->cfs_bandwidth.timer_active: 0
[   47.302847]   .throttled                     : 0
[   47.310758]   .throttle_count                : 0
[   47.318649]   .avg->runnable_avg_sum         : 0
[   47.326556]   .avg->runnable_avg_period      : 48494
[   47.334842]
[   47.334842] rt_rq[3]:
[   47.344577]   .rt_nr_running                 : 0
[   47.352465]   .rt_throttled                  : 0
[   47.360325]   .rt_time                       : 0.027183
[   47.368873]   .rt_runtime                    : 950.000000
[   47.377608]
[   47.377608] runnable tasks:
[   47.377608]             task   PID         tree-key  switches  prio     execp
[   47.377608] -----------------------------------------------------------------
[   47.417357]
[   72.869423] BUG: soft lockup - CPU#0 stuck for 23s! [kworker/0:1:30]
[   72.879677] Modules linked in: cfg80211(+)
[   72.887450]
[   72.892327] CPU: 0 PID: 30 Comm: kworker/0:1 Not tainted 3.10.104 #1
[   72.902684] Workqueue: events start_work
[   72.910316] task: ffffffc078b52f80 ti: ffffffc078b54000 task.ti: ffffffc078b0
[   72.921857] PC is at __do_softirq+0xb4/0x2d8
[   72.929766] LR is at __do_softirq+0x30/0x2d8
[   72.937671] pc : [<ffffffc0000b5fb4>] lr : [<ffffffc0000b5f30>] pstate: 40005
[   72.949131] sp : ffffffc078b57910
[   72.956127] x29: ffffffc078b57910 x28: ffffffc000a6e0c0
[   72.965366] x27: ffffffc000a6e000 x26: ffffffc078b57910
[   72.974608] x25: 0000000000000000 x24: 000000000000000a
[   72.983865] x23: 0000000080000145 x22: ffffffc078b57a40
[   72.993114] x21: ffffffc078b54000 x20: 000000000000001e
[   73.002380] x19: 0000000000000002 x18: 0000000000000013
[   73.011650] x17: 000000000000000e x16: 0000000000000007
[   73.020893] x15: 0000000000000001 x14: 0000000000000007
[   73.030143] x13: 000000000000000e x12: ffffffc078b57900
[   73.039419] x11: 0000000000000007 x10: 000000000000000e
[   73.048722] x9 : 0000000225c17d03 x8 : 000000001420e251
[   73.058058] x7 : 0007270e004baf00 x6 : ffffffc078b54000
[   73.067426] x5 : 0000000029aaaaab x4 : 0000000037d243f2
[   73.076818] x3 : 0000000000000020 x2 : ffffffc000be4900
[   73.086235] x1 : ffffffc000be4900 x0 : 0000000000000000
[   73.095666]
[   73.095666] PC: 0xffffffc0000b5f34:
[   73.108317] 5f34  b0004dc1 9272c746 f940a022 8b020000 f9003fa0 f94008c0 b9402
[   73.121115] 5f54  2a0203e2 12147842 b9001402 912402a2 b98054c0 d37ae400 b8600
[   73.133995] 5f74  11040000 b90050c0 b0004ddb b94054c0 f90043b5 9103037c aa068
[   73.146935] 5f94  f90037a1 b9008ba0 f94043a0 91240001 b98056a0 d37ae400 b820f
[   73.159935] 5fb4  d2800014 91030360 8b140000 f9003ba0 360009f3 f0004d40 93430
[   73.173011] 5fd4  b94052b7 d538d082 8b364800 2a1603f9 91002000 b8626801 11001
[   73.186169] 5ff4  d503201f 14000017 b94056a1 52800800 f0003382 1ac00c20 f9470
[   73.199408] 6014  f8606840 9ac12400 360001c0 b94052a0 11000400 b90052a0 d0000
[   73.212724]
[   73.212724] LR: 0xffffffc0000b5eb0:
[   73.226766] 5eb0  a8c37bfd d65f03c0 a9be7bfd 910003fd f9000bf3 aa0003f3 aa1ef
[   73.240263] 5ed0  f9404661 aa1303e0 d63f0020 340000c0 a9418662 aa1303e0 52802
[   73.253826] 5ef0  94008215 f9400bf3 a8c27bfd d65f03c0 a9b77bfd 910003fd a9015
[   73.267456] 5f10  a90363f7 a9046bf9 a90573fb aa1e03e0 f0005975 d503201f 52802
[   73.281155] 5f30  910003fa b0004dc1 9272c746 f940a022 8b020000 f9003fa0 f9402
[   73.294931] 5f50  b9008fa2 2a0203e2 12147842 b9001402 912402a2 b98054c0 d37a3
[   73.308774] 5f70  b94050c0 11040000 b90050c0 b0004ddb b94054c0 f90043b5 91035
[   73.322689] 5f90  52800158 f90037a1 b9008ba0 f94043a0 91240001 b98056a0 d37af
[   73.336679]
[   73.336679] SP: 0xffffffc078b57890:
[   73.352020] 7890  0000001e 00000000 78b54000 ffffffc0 78b57a40 ffffffc0 80000
[   73.366159] 78b0  0000000a 00000000 00000000 00000000 78b57910 ffffffc0 00a60
[   73.380320] 78d0  00a6e0c0 ffffffc0 78b57910 ffffffc0 000b5f30 ffffffc0 78b50
[   73.394534] 78f0  000b5fb4 ffffffc0 40000145 00000000 000001c0 00000000 00000
[   73.408777] 7910  78b579a0 ffffffc0 000b62c4 ffffffc0 000001c0 00000000 00000
[   73.423055] 7930  00000000 00000000 78b57a40 ffffffc0 80000145 00000000 00000
[   73.437355] 7950  00000000 00000000 00000140 00000000 00000001 00000000 78b50
[   73.451689] 7970  78805840 ffffffc0 00a6e000 ffffffc0 78b579c0 ffffffc0 ffff0
[   73.466097]
[   73.466097] X1: 0xffffffc000be4880:
[   73.482329] 4880  00000000 00000000 00000000 00000000 00bb7770 ffffffc0 00000
[   73.496912] 48a0  00000000 00000000 0000000f 00000000 0000000f 00000000 00000
[   73.511418] 48c0  0000000f 00000000 00000000 00000000 0000000f 00000000 00000
[   73.525778] 48e0  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   73.539976] 4900  00000282 00000160 0000004e 00000007 00000000 00000000 00000
[   73.554104] 4920  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   73.568166] 4940  00000000 000003b1 0000003b 00000003 00000000 00000000 00000
[   73.582195] 4960  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   73.596159]
[   73.596159] X2: 0xffffffc000be4880:
[   73.611311] 4880  00000000 00000000 00000000 00000000 00bb7770 ffffffc0 00000
[   73.625230] 48a0  00000000 00000000 0000000f 00000000 0000000f 00000000 00000
[   73.639170] 48c0  0000000f 00000000 00000000 00000000 0000000f 00000000 00000
[   73.653010] 48e0  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   73.666762] 4900  00000282 00000160 0000004e 00000007 00000000 00000000 00000
[   73.680497] 4920  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   73.694222] 4940  00000000 000003b1 0000003b 00000003 00000000 00000000 00000
[   73.707913] 4960  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   73.721585]
[   73.721585] X6: 0xffffffc078b53f80:
[   73.736277] 3f80  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   73.750098] 3fa0  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   73.763914] 3fc0  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   73.777703] 3fe0  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   73.791466] 4000  00000002 00000000 ffffffff ffffffff 78b52f80 ffffffc0 00a70
[   73.805271] 4020  000c2808 ffffffc0 00000000 00000000 00000000 00000000 00000
[   73.819123] 4040  00000000 00000000 00000000 00000000 00010104 00000000 57ac0
[   73.832968] 4060  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   73.846797]
[   73.846797] X12: 0xffffffc078b57880:
[   73.861915] 7880  00000013 00000000 00000002 00000000 0000001e 00000000 78b50
[   73.875871] 78a0  78b57a40 ffffffc0 80000145 00000000 0000000a 00000000 00000
[   73.889770] 78c0  78b57910 ffffffc0 00a6e000 ffffffc0 00a6e0c0 ffffffc0 78b50
[   73.903652] 78e0  000b5f30 ffffffc0 78b57910 ffffffc0 000b5fb4 ffffffc0 40000
[   73.917499] 7900  000001c0 00000000 0000001e 00000000 78b579a0 ffffffc0 000b0
[   73.931334] 7920  000001c0 00000000 0000001e 00000000 00000000 00000000 78b50
[   73.945111] 7940  80000145 00000000 00000001 00000000 00000000 00000000 00000
[   73.958825] 7960  00000001 00000000 78b54000 ffffffc0 78805840 ffffffc0 00a60
[   73.972516]
[   73.972516] X21: 0xffffffc078b53f80:
[   73.987172] 3f80  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   74.000869] 3fa0  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   74.014458] 3fc0  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   74.027958] 3fe0  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   74.041361] 4000  00000002 00000000 ffffffff ffffffff 78b52f80 ffffffc0 00a70
[   74.054746] 4020  000c2808 ffffffc0 00000000 00000000 00000000 00000000 00000
[   74.068128] 4040  00000000 00000000 00000000 00000000 00010104 00000000 57ac0
[   74.081461] 4060  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   74.094717]
[   74.094717] X22: 0xffffffc078b579c0:
[   74.108534] 79c0  78b579e0 ffffffc0 00084574 ffffffc0 00a62000 ffffffc0 00000
[   74.121814] 79e0  78b57a10 ffffffc0 000813f8 ffffffc0 00c52640 ffffffc0 00000
[   74.135015] 7a00  78b57a40 ffffffc0 0000400c ffffff80 78b57b60 ffffffc0 00080
[   74.148197] 7a20  00000140 00000000 7880fe0c ffffffc0 78b57b60 ffffffc0 00710
[   74.161355] 7a40  00000006 00000000 00000140 00000000 00000000 00000000 00000
[   74.174509] 7a60  0000003c 00000000 78b57bd8 ffffffc0 00000000 00000000 00000
[   74.187653] 7a80  77145ac0 ffffffc0 00000000 00000000 0bdd084f 0a000705 0eaa5
[   74.200840] 7aa0  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   74.214044]
[   74.214044] X26: 0xffffffc078b57890:
[   74.227748] 7890  0000001e 00000000 78b54000 ffffffc0 78b57a40 ffffffc0 80000
[   74.240970] 78b0  0000000a 00000000 00000000 00000000 78b57910 ffffffc0 00a60
[   74.254132] 78d0  00a6e0c0 ffffffc0 78b57910 ffffffc0 000b5f30 ffffffc0 78b50
[   74.267339] 78f0  000b5fb4 ffffffc0 40000145 00000000 000001c0 00000000 00000
[   74.280617] 7910  78b579a0 ffffffc0 000b62c4 ffffffc0 000001c0 00000000 00000
[   74.293930] 7930  00000000 00000000 78b57a40 ffffffc0 80000145 00000000 00000
[   74.307274] 7950  00000000 00000000 00000140 00000000 00000001 00000000 78b50
[   74.320657] 7970  78805840 ffffffc0 00a6e000 ffffffc0 78b579c0 ffffffc0 ffff0
[   74.334123]
[   74.334123] X27: 0xffffffc000a6df80:
[   74.348520] df80  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   74.362087] dfa0  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   74.375539] dfc0  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   74.388968] dfe0  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   74.402394] e000  00000e12 00000e12 00000000 00000000 00000000 00000000 00000
[   74.415832] e020  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   74.429264] e040  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   74.442681] e060  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   74.456087]
[   74.456087] X28: 0xffffffc000a6e040:
[   74.470358] e040  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   74.483861] e060  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   74.497251] e080  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   74.510639] e0a0  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   74.524029] e0c0  000b6880 ffffffc0 000bdb80 ffffffc0 00617a10 ffffffc0 00610
[   74.537497] e0e0  003ade80 ffffffc0 003ae4b0 ffffffc0 000b6998 ffffffc0 000e0
[   74.550927] e100  000d6b38 ffffffc0 0012bbcc ffffffc0 00000000 00000000 00000
[   74.564326] e120  00000000 00000000 00000000 00000000 00000000 00000000 00000
[   74.577727]
[   74.577727] X29: 0xffffffc078b57890:
[   74.591974] 7890  0000001e 00000000 78b54000 ffffffc0 78b57a40 ffffffc0 80000
[   74.605466] 78b0  0000000a 00000000 00000000 00000000 78b57910 ffffffc0 00a60
[   74.618899] 78d0  00a6e0c0 ffffffc0 78b57910 ffffffc0 000b5f30 ffffffc0 78b50
[   74.632343] 78f0  000b5fb4 ffffffc0 40000145 00000000 000001c0 00000000 00000
[   74.645792] 7910  78b579a0 ffffffc0 000b62c4 ffffffc0 000001c0 00000000 00000
[   74.659219] 7930  00000000 00000000 78b57a40 ffffffc0 80000145 00000000 00000
[   74.672613] 7950  00000000 00000000 00000140 00000000 00000001 00000000 78b50
[   74.686021] 7970  78805840 ffffffc0 00a6e000 ffffffc0 78b579c0 ffffffc0 ffff0
[   74.699489]
[   74.705517]   task                        PC stack   pid father
[   74.716393] systemd         D ffffffc0000853b8     0     1      0 0x00000000
[   74.728590] Call trace:
[   74.735614] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   74.745690] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   74.755892] [<ffffffc00071a940>] schedule+0x74/0x7c
[   74.765746] [<ffffffc000718724>] schedule_timeout+0x34/0x27c
[   74.776427] [<ffffffc000719e7c>] wait_for_common+0x118/0x158
[   74.787060] [<ffffffc000719ee4>] wait_for_completion+0x28/0x34
[   74.797877] [<ffffffc0000d252c>] kthread_create_on_node+0x94/0x118
[   74.809120] [<ffffffc00011f778>] audit_receive+0x244/0x7c8
[   74.819540] [<ffffffc000642be4>] netlink_unicast+0x114/0x1c0
[   74.830173] [<ffffffc000642fe4>] netlink_sendmsg+0x274/0x2d0
[   74.840713] [<ffffffc000602d3c>] sock_sendmsg+0x94/0xb4
[   74.850782] [<ffffffc000604e54>] SyS_sendto+0xc8/0xf4
[   74.860657] kthreadd        R  running task        0     2      0 0x00000000
[   74.872803] Call trace:
[   74.879809] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   74.889837] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   74.899902] [<ffffffc00071a940>] schedule+0x74/0x7c
[   74.909554] [<ffffffc0000d2fdc>] kthreadd+0x100/0x180
[   74.919323] ksoftirqd/0     S ffffffc0000853b8     0     3      2 0x00000000
[   74.931379] Call trace:
[   74.938260] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   74.948144] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   74.958087] [<ffffffc00071a940>] schedule+0x74/0x7c
[   74.967606] [<ffffffc0000dae38>] smpboot_thread_fn+0x200/0x258
[   74.978199] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   74.987634] kworker/0:0     S ffffffc0000853b8     0     4      2 0x00000000
[   74.999624] Call trace:
[   75.006451] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   75.016228] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   75.026107] [<ffffffc00071a940>] schedule+0x74/0x7c
[   75.035527] [<ffffffc0000cc80c>] worker_thread+0x2dc/0x320
[   75.045665] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   75.055073] kworker/0:0H    S ffffffc0000853b8     0     5      2 0x00000000
[   75.067084] Call trace:
[   75.074019] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   75.083998] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   75.094106] [<ffffffc00071a940>] schedule+0x74/0x7c
[   75.103865] [<ffffffc0000cc80c>] worker_thread+0x2dc/0x320
[   75.114238] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   75.123855] kworker/u8:0    S ffffffc0000853b8     0     6      2 0x00000000
[   75.135965] Call trace:
[   75.143014] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   75.153119] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   75.163349] [<ffffffc00071a940>] schedule+0x74/0x7c
[   75.173152] [<ffffffc0000cc80c>] worker_thread+0x2dc/0x320
[   75.183637] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   75.193333] migration/0     S ffffffc0000853b8     0     7      2 0x00000000
[   75.205585] Call trace:
[   75.212670] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   75.222785] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   75.232915] [<ffffffc00071a940>] schedule+0x74/0x7c
[   75.242641] [<ffffffc0000dae38>] smpboot_thread_fn+0x200/0x258
[   75.253411] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   75.262991] rcu_preempt     S ffffffc0000853b8     0     8      2 0x00000000
[   75.275132] Call trace:
[   75.282169] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   75.292208] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   75.302283] [<ffffffc00071a940>] schedule+0x74/0x7c
[   75.311896] [<ffffffc000718920>] schedule_timeout+0x230/0x27c
[   75.322480] [<ffffffc00012c7e8>] rcu_gp_kthread+0x30c/0x4bc
[   75.332837] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   75.342303] rcu_bh          S ffffffc0000853b8     0     9      2 0x00000000
[   75.354308] Call trace:
[   75.361223] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   75.371156] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   75.381184] [<ffffffc00071a940>] schedule+0x74/0x7c
[   75.390820] [<ffffffc00012c568>] rcu_gp_kthread+0x8c/0x4bc
[   75.401149] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   75.410693] rcu_sched       S ffffffc0000853b8     0    10      2 0x00000000
[   75.422780] Call trace:
[   75.429761] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   75.439777] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   75.449874] [<ffffffc00071a940>] schedule+0x74/0x7c
[   75.459584] [<ffffffc00012c568>] rcu_gp_kthread+0x8c/0x4bc
[   75.469931] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   75.479488] watchdog/0      R  running task        0    11      2 0x00000000
[   75.491589] Call trace:
[   75.498594] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   75.508616] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   75.518732] [<ffffffc00071a940>] schedule+0x74/0x7c
[   75.528417] [<ffffffc0000dae38>] smpboot_thread_fn+0x200/0x258
[   75.539149] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   75.548709] watchdog/1      S ffffffc0000853b8     0    12      2 0x00000000
[   75.560840] Call trace:
[   75.567875] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   75.577912] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   75.588028] [<ffffffc00071a940>] schedule+0x74/0x7c
[   75.597715] [<ffffffc0000dae38>] smpboot_thread_fn+0x200/0x258
[   75.608452] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   75.618012] migration/1     S ffffffc0000853b8     0    13      2 0x00000000
[   75.630143] Call trace:
[   75.637179] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   75.647224] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   75.657353] [<ffffffc00071a940>] schedule+0x74/0x7c
[   75.667053] [<ffffffc0000dae38>] smpboot_thread_fn+0x200/0x258
[   75.677796] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   75.687365] ksoftirqd/1     S ffffffc0000853b8     0    14      2 0x00000000
[   75.699504] Call trace:
[   75.706547] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   75.716599] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   75.726732] [<ffffffc00071a940>] schedule+0x74/0x7c
[   75.736436] [<ffffffc0000dae38>] smpboot_thread_fn+0x200/0x258
[   75.747187] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   75.756763] kworker/1:0     S ffffffc0000853b8     0    15      2 0x00000000
[   75.768914] Call trace:
[   75.775969] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   75.786035] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   75.796185] [<ffffffc00071a940>] schedule+0x74/0x7c
[   75.805906] [<ffffffc0000cc80c>] worker_thread+0x2dc/0x320
[   75.816282] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   75.825866] kworker/1:0H    S ffffffc0000853b8     0    16      2 0x00000000
[   75.838025] Call trace:
[   75.845088] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   75.855156] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   75.865304] [<ffffffc00071a940>] schedule+0x74/0x7c
[   75.875024] [<ffffffc0000cc80c>] worker_thread+0x2dc/0x320
[   75.885395] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   75.894974] watchdog/2      S ffffffc0000853b8     0    17      2 0x00000000
[   75.907126] Call trace:
[   75.914184] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   75.924264] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   75.934419] [<ffffffc00071a940>] schedule+0x74/0x7c
[   75.944179] [<ffffffc0000dae38>] smpboot_thread_fn+0x200/0x258
[   75.954969] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   75.964581] migration/2     S ffffffc0000853b8     0    18      2 0x00000000
[   75.976733] Call trace:
[   75.983797] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   75.993879] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   76.004043] [<ffffffc00071a940>] schedule+0x74/0x7c
[   76.013814] [<ffffffc0000dae38>] smpboot_thread_fn+0x200/0x258
[   76.024617] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   76.034238] ksoftirqd/2     S ffffffc0000853b8     0    19      2 0x00000000
[   76.046402] Call trace:
[   76.053479] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   76.063574] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   76.073753] [<ffffffc00071a940>] schedule+0x74/0x7c
[   76.083539] [<ffffffc0000dae38>] smpboot_thread_fn+0x200/0x258
[   76.094356] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   76.104003] kworker/2:0     S ffffffc0000853b8     0    20      2 0x00000000
[   76.116194] Call trace:
[   76.123293] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   76.133410] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   76.143604] [<ffffffc00071a940>] schedule+0x74/0x7c
[   76.153399] [<ffffffc0000cc80c>] worker_thread+0x2dc/0x320
[   76.163833] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   76.173469] kworker/2:0H    S ffffffc0000853b8     0    21      2 0x00000000
[   76.185650] Call trace:
[   76.192741] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   76.202850] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   76.213037] [<ffffffc00071a940>] schedule+0x74/0x7c
[   76.222824] [<ffffffc0000cc80c>] worker_thread+0x2dc/0x320
[   76.233253] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   76.242885] watchdog/3      S ffffffc0000853b8     0    22      2 0x00000000
[   76.255060] Call trace:
[   76.262146] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   76.272249] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   76.282432] [<ffffffc00071a940>] schedule+0x74/0x7c
[   76.292219] [<ffffffc0000dae38>] smpboot_thread_fn+0x200/0x258
[   76.303037] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   76.312674] migration/3     S ffffffc0000853b8     0    23      2 0x00000000
[   76.324851] Call trace:
[   76.331940] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   76.342048] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   76.352234] [<ffffffc00071a940>] schedule+0x74/0x7c
[   76.362021] [<ffffffc0000dae38>] smpboot_thread_fn+0x200/0x258
[   76.372841] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   76.382478] ksoftirqd/3     S ffffffc0000853b8     0    24      2 0x00000000
[   76.394655] Call trace:
[   76.401742] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   76.411851] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   76.422041] [<ffffffc00071a940>] schedule+0x74/0x7c
[   76.431836] [<ffffffc0000dae38>] smpboot_thread_fn+0x200/0x258
[   76.442663] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   76.452308] kworker/3:0     S ffffffc0000853b8     0    25      2 0x00000000
[   76.464497] Call trace:
[   76.471593] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   76.481707] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   76.491906] [<ffffffc00071a940>] schedule+0x74/0x7c
[   76.501711] [<ffffffc0000cc80c>] worker_thread+0x2dc/0x320
[   76.512155] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   76.521800] kworker/3:0H    S ffffffc0000853b8     0    26      2 0x00000000
[   76.533988] Call trace:
[   76.541090] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   76.551208] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   76.561409] [<ffffffc00071a940>] schedule+0x74/0x7c
[   76.571213] [<ffffffc0000cc80c>] worker_thread+0x2dc/0x320
[   76.581655] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   76.591298] khelper         S ffffffc0000853b8     0    27      2 0x00000000
[   76.603485] Call trace:
[   76.610582] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   76.620693] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   76.630878] [<ffffffc00071a940>] schedule+0x74/0x7c
[   76.640667] [<ffffffc0000cbf8c>] rescuer_thread+0x248/0x298
[   76.651196] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   76.660832] kdevtmpfs       S ffffffc0000853b8     0    28      2 0x00000000
[   76.673011] Call trace:
[   76.680098] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   76.690204] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   76.700386] [<ffffffc00071a940>] schedule+0x74/0x7c
[   76.710175] [<ffffffc000490538>] devtmpfsd+0x12c/0x154
[   76.720208] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   76.729825] netns           S ffffffc0000853b8     0    29      2 0x00000000
[   76.741983] Call trace:
[   76.749052] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   76.759138] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   76.769307] [<ffffffc00071a940>] schedule+0x74/0x7c
[   76.779082] [<ffffffc0000cbf8c>] rescuer_thread+0x248/0x298
[   76.789598] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   76.799218] kworker/0:1     R  running task        0    30      2 0x00000002
[   76.811382] Workqueue: events start_work
[   76.820097] Call trace:
[   76.827174] [<ffffffc000088388>] dump_backtrace+0x0/0x118
[   76.837554] [<ffffffc0000884c4>] show_stack+0x24/0x30
[   76.847541] [<ffffffc0000e2a74>] sched_show_task+0xd4/0xe0
[   76.857964] [<ffffffc0000e2af0>] show_state_filter+0x70/0xa8
[   76.868554] [<ffffffc000122600>] watchdog_timer_fn+0x270/0x2fc
[   76.879323] [<ffffffc0000d5e7c>] __run_hrtimer+0x174/0x2d4
[   76.889728] [<ffffffc0000d69b4>] hrtimer_interrupt+0x128/0x230
[   76.900530] [<ffffffc000587804>] arch_timer_handler_phys+0x3c/0x4c
[   76.911722] [<ffffffc000126920>] handle_percpu_devid_irq+0xf0/0x1c8
[   76.923010] [<ffffffc000122a08>] generic_handle_irq+0x34/0x4c
[   76.933692] [<ffffffc000084570>] handle_IRQ+0x8c/0xac
[   76.943584] [<ffffffc0000813f8>] gic_handle_irq+0x60/0x8c
[   76.953840] Exception stack(0xffffffc078b577d0 to 0xffffffc078b578f0)
[   76.965311] 77c0:                                     00000002 00000000 00000
[   76.978792] 77e0: 78b57910 ffffffc0 000b5fb4 ffffffc0 00000000 00000000 00be0
[   76.992298] 7800: 00be4900 ffffffc0 00000020 00000000 37d243f2 00000000 29aa0
[   77.005826] 7820: 78b54000 ffffffc0 004baf00 0007270e 1420e251 00000000 25c12
[   77.019330] 7840: 0000000e 00000000 00000007 00000000 78b57900 ffffffc0 00000
[   77.032845] 7860: 00000007 00000000 00000001 00000000 00000007 00000000 00000
[   77.046324] 7880: 00000013 00000000 00000002 00000000 0000001e 00000000 78b50
[   77.059806] 78a0: 78b57a40 ffffffc0 80000145 00000000 0000000a 00000000 00000
[   77.073308] 78c0: 78b57910 ffffffc0 00a6e000 ffffffc0 00a6e0c0 ffffffc0 78b50
[   77.086828] 78e0: 000b5f30 ffffffc0 78b57910 ffffffc0
[   77.096899] [<ffffffc000083dc0>] el1_irq+0x80/0xe4
[   77.106658] [<ffffffc0000b62c4>] do_softirq+0x54/0x64
[   77.116678] [<ffffffc0000b653c>] irq_exit+0x7c/0xc0
[   77.126472] [<ffffffc000084574>] handle_IRQ+0x90/0xac
[   77.136462] [<ffffffc0000813f8>] gic_handle_irq+0x60/0x8c
[   77.146840] Exception stack(0xffffffc078b57a20 to 0xffffffc078b57b40)
[   77.158422] 7a20: 00000140 00000000 7880fe0c ffffffc0 78b57b60 ffffffc0 00710
[   77.172006] 7a40: 00000006 00000000 00000140 00000000 00000000 00000000 00000
[   77.185582] 7a60: 0000003c 00000000 78b57bd8 ffffffc0 00000000 00000000 00000
[   77.199119] 7a80: 77145ac0 ffffffc0 00000000 00000000 0bdd084f 0a000705 0eaa5
[   77.212681] 7aa0: 00000000 00000000 00000000 00000000 00000000 00000000 00000
[   77.226278] 7ac0: 00000007 00000000 0000000e 00000000 00000000 00000000 00000
[   77.239847] 7ae0: 7880fe0c ffffffc0 ffffffed 00000000 00000077 00000000 78800
[   77.253438] 7b00: 7880fe0c ffffffc0 00000000 00000000 00000140 00000000 00000
[   77.267027] 7b20: 00000000 00000000 78b57b60 ffffffc0 00124d0c ffffffc0 78b50
[   77.280628] [<ffffffc000083dc0>] el1_irq+0x80/0xe4
[   77.290503] [<ffffffc000124d0c>] __setup_irq+0x318/0x3e0
[   77.300938] [<ffffffc000124f4c>] request_threaded_irq+0xe0/0x124
[   77.312165] [<ffffffc00040d0bc>] disp_sys_register_irq+0x88/0x98
[   77.323404] [<ffffffc00041aec0>] disp_hdmi_enable+0x1d4/0x278
[   77.334357] [<ffffffc00040edf0>] disp_device_attached_and_enable+0x1bc/0x1d4
[   77.346772] [<ffffffc00040efa8>] bsp_disp_device_switch+0xbc/0xe4
[   77.358112] [<ffffffc000405dbc>] start_work+0x174/0x1f0
[   77.368473] [<ffffffc0000cb754>] process_one_work+0x27c/0x42c
[   77.379401] [<ffffffc0000cc738>] worker_thread+0x208/0x320
[   77.390054] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   77.399934] kworker/1:1     S ffffffc0000853b8     0    31      2 0x00000000
[   77.412377] Call trace:
[   77.419723] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   77.430042] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   77.440421] [<ffffffc00071a940>] schedule+0x74/0x7c
[   77.450390] [<ffffffc0000cc80c>] worker_thread+0x2dc/0x320
[   77.461048] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   77.470938] kworker/2:1     S ffffffc0000853b8     0    32      2 0x00000000
[   77.483385] Call trace:
[   77.490725] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   77.501040] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   77.511412] [<ffffffc00071a940>] schedule+0x74/0x7c
[   77.521395] [<ffffffc0000cc80c>] worker_thread+0x2dc/0x320
[   77.532032] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   77.541901] kworker/3:1     S ffffffc0000853b8     0    33      2 0x00000000
[   77.554342] Call trace:
[   77.561679] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   77.572026] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   77.582447] [<ffffffc00071a940>] schedule+0x74/0x7c
[   77.592474] [<ffffffc0000cc80c>] worker_thread+0x2dc/0x320
[   77.603161] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   77.613072] writeback       S ffffffc0000853b8     0    34      2 0x00000000
[   77.625532] Call trace:
[   77.632880] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   77.643242] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   77.653646] [<ffffffc00071a940>] schedule+0x74/0x7c
[   77.663587] [<ffffffc0000cbf8c>] rescuer_thread+0x248/0x298
[   77.674272] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   77.684064] bioset          S ffffffc0000853b8     0    35      2 0x00000000
[   77.696405] Call trace:
[   77.703606] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   77.713836] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   77.724159] [<ffffffc00071a940>] schedule+0x74/0x7c
[   77.734077] [<ffffffc0000cbf8c>] rescuer_thread+0x248/0x298
[   77.744744] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   77.754511] crypto          S ffffffc0000853b8     0    36      2 0x00000000
[   77.766823] Call trace:
[   77.774039] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   77.784280] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   77.794613] [<ffffffc00071a940>] schedule+0x74/0x7c
[   77.804560] [<ffffffc0000cbf8c>] rescuer_thread+0x248/0x298
[   77.815242] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   77.824982] kworker/u9:0    S ffffffc0000853b8     0    37      2 0x00000000
[   77.837252] Call trace:
[   77.844432] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   77.854577] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   77.864786] [<ffffffc00071a940>] schedule+0x74/0x7c
[   77.874636] [<ffffffc0000cc80c>] worker_thread+0x2dc/0x320
[   77.885140] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   77.894870] kblockd         S ffffffc0000853b8     0    38      2 0x00000000
[   77.907110] Call trace:
[   77.914181] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   77.924266] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   77.934427] [<ffffffc00071a940>] schedule+0x74/0x7c
[   77.944185] [<ffffffc0000cbf8c>] rescuer_thread+0x248/0x298
[   77.954716] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   77.964361] khubd           S ffffffc0000853b8     0    39      2 0x00000000
[   77.976540] Call trace:
[   77.983608] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   77.993682] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   78.003837] [<ffffffc00071a940>] schedule+0x74/0x7c
[   78.013606] [<ffffffc0004d9758>] hub_thread+0xc64/0xe30
[   78.023720] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   78.033319] md              S ffffffc0000853b8     0    40      2 0x00000000
[   78.045463] Call trace:
[   78.052513] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   78.062580] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   78.072730] [<ffffffc00071a940>] schedule+0x74/0x7c
[   78.082484] [<ffffffc0000cbf8c>] rescuer_thread+0x248/0x298
[   78.092979] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   78.102580] devfreq_wq      S ffffffc0000853b8     0    41      2 0x00000000
[   78.114726] Call trace:
[   78.121779] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   78.131850] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   78.142005] [<ffffffc00071a940>] schedule+0x74/0x7c
[   78.151765] [<ffffffc0000cbf8c>] rescuer_thread+0x248/0x298
[   78.162264] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   78.171869] usb_host_chose  D ffffffc0000853b8     0    42      2 0x00000000
[   78.184015] Call trace:
[   78.191077] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   78.201155] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   78.211320] [<ffffffc00071a940>] schedule+0x74/0x7c
[   78.221090] [<ffffffc000718724>] schedule_timeout+0x34/0x27c
[   78.231680] [<ffffffc000719e7c>] wait_for_common+0x118/0x158
[   78.242242] [<ffffffc000719ee4>] wait_for_completion+0x28/0x34
[   78.252964] [<ffffffc0000cb0d8>] flush_work+0xf8/0x11c
[   78.262935] [<ffffffc0000ccca4>] schedule_on_each_cpu+0xf8/0x124
[   78.273887] [<ffffffc00016ba90>] lru_add_drain_all+0x1c/0x24
[   78.284463] [<ffffffc0001a41f4>] migrate_prep+0x14/0x20
[   78.294550] [<ffffffc000167218>] alloc_contig_range+0xb8/0x26c
[   78.305283] [<ffffffc00049086c>] dma_alloc_from_contiguous+0xa4/0x12c
[   78.316690] [<ffffffc0000928cc>] __dma_alloc_coherent+0xb0/0x118
[   78.327610] [<ffffffc000092a00>] __dma_alloc_noncoherent+0xcc/0x158
[   78.338824] [<ffffffc000198c3c>] dma_pool_alloc+0xf0/0x1c4
[   78.349191] [<ffffffc0004ec254>] ehci_qh_alloc+0x4c/0xc4
[   78.359363] [<ffffffc0004ee2e4>] ehci_init+0x13c/0x3b8
[   78.369324] [<ffffffc0004ee580>] sunxi_ehci_setup+0x20/0x38
[   78.379730] [<ffffffc0004db748>] usb_add_hcd+0x1c8/0x5a8
[   78.389823] [<ffffffc0004f243c>] sunxi_insmod_ehci+0x118/0x218
[   78.400482] [<ffffffc0004f25b4>] sunxi_usb_enable_ehci+0x78/0x88
[   78.411348] [<ffffffc00050e0a8>] usb_msg_center+0x88/0x104
[   78.421652] [<ffffffc00050d1d8>] usb_host_scan_thread+0x54/0x68
[   78.432433] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   78.441962] rpciod          S ffffffc0000853b8     0    43      2 0x00000000
[   78.454017] Call trace:
[   78.460946] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   78.470869] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   78.480889] [<ffffffc00071a940>] schedule+0x74/0x7c
[   78.490520] [<ffffffc0000cbf8c>] rescuer_thread+0x248/0x298
[   78.500928] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   78.510467] kvm_arch_timer  S ffffffc0000853b8     0    44      2 0x00000000
[   78.522530] Call trace:
[   78.529471] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   78.539404] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   78.549431] [<ffffffc00071a940>] schedule+0x74/0x7c
[   78.559072] [<ffffffc0000cbf8c>] rescuer_thread+0x248/0x298
[   78.569484] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   78.579025] khungtaskd      S ffffffc0000853b8     0    69      2 0x00000000
[   78.591088] Call trace:
[   78.598022] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   78.607948] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   78.617974] [<ffffffc00071a940>] schedule+0x74/0x7c
[   78.627609] [<ffffffc000718920>] schedule_timeout+0x230/0x27c
[   78.638201] [<ffffffc0007189a0>] schedule_timeout_interruptible+0x34/0x40
[   78.649950] [<ffffffc000121e94>] watchdog+0x60/0x250
[   78.659661] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   78.669146] kswapd0         S ffffffc0000853b8     0    70      2 0x00000000
[   78.681174] Call trace:
[   78.688114] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   78.698073] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   78.708110] [<ffffffc00071a940>] schedule+0x74/0x7c
[   78.717755] [<ffffffc0001717dc>] kswapd+0x2b4/0x45c
[   78.727351] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   78.736805] ksmd            S ffffffc0000853b8     0    71      2 0x00000000
[   78.748802] Call trace:
[   78.755707] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   78.765628] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   78.775630] [<ffffffc00071a940>] schedule+0x74/0x7c
[   78.785234] [<ffffffc00019f8c8>] ksm_scan_thread+0x91c/0xb44
[   78.795673] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   78.805118] fsnotify_mark   S ffffffc0000853b8     0    72      2 0x00000000
[   78.817106] Call trace:
[   78.824006] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   78.833923] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   78.843934] [<ffffffc00071a940>] schedule+0x74/0x7c
[   78.853558] [<ffffffc0001ed7d4>] fsnotify_mark_destroy+0x128/0x13c
[   78.864659] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   78.874218] ecryptfs-kthrea S ffffffc0000853b8     0    73      2 0x00000000
[   78.886328] Call trace:
[   78.893322] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   78.903327] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   78.913407] [<ffffffc00071a940>] schedule+0x74/0x7c
[   78.923073] [<ffffffc0002943b8>] ecryptfs_threadfn+0xcc/0x1bc
[   78.933695] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   78.943266] nfsiod          S ffffffc0000853b8     0    74      2 0x00000000
[   78.955383] Call trace:
[   78.962394] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   78.972430] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   78.982550] [<ffffffc00071a940>] schedule+0x74/0x7c
[   78.992274] [<ffffffc0000cbf8c>] rescuer_thread+0x248/0x298
[   79.002770] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   79.012400] kthrotld        S ffffffc0000853b8     0    87      2 0x00000000
[   79.024578] Call trace:
[   79.031652] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   79.041728] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   79.051850] [<ffffffc00071a940>] schedule+0x74/0x7c
[   79.061553] [<ffffffc0000cbf8c>] rescuer_thread+0x248/0x298
[   79.072013] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   79.081617] vsync proc 0    S ffffffc0000853b8     0    88      2 0x00000000
[   79.093789] Call trace:
[   79.100857] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   79.110935] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   79.121058] [<ffffffc00071a940>] schedule+0x74/0x7c
[   79.130760] [<ffffffc000409030>] vsync_thread+0x88/0xbc
[   79.140830] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   79.150423] vsync proc 1    S ffffffc0000853b8     0    89      2 0x00000000
[   79.162583] Call trace:
[   79.169638] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   79.179699] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   79.189806] [<ffffffc00071a940>] schedule+0x74/0x7c
[   79.199496] [<ffffffc000409030>] vsync_thread+0x88/0xbc
[   79.209552] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   79.219130] kworker/u8:1    S ffffffc0000853b8     0    90      2 0x00000000
[   79.231277] Call trace:
[   79.238331] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   79.248403] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   79.258531] [<ffffffc00071a940>] schedule+0x74/0x7c
[   79.268273] [<ffffffc0000cc80c>] worker_thread+0x2dc/0x320
[   79.278653] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   79.288234] kworker/1:2     S ffffffc0000853b8     0    91      2 0x00000000
[   79.300361] Call trace:
[   79.307399] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   79.317451] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   79.327594] [<ffffffc00071a940>] schedule+0x74/0x7c
[   79.337365] [<ffffffc0000cc80c>] worker_thread+0x2dc/0x320
[   79.347772] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   79.357383] cfinteractive   S ffffffc0000853b8     0    92      2 0x00000000
[   79.369536] Call trace:
[   79.376599] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   79.386682] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   79.396843] [<ffffffc00071a940>] schedule+0x74/0x7c
[   79.406610] [<ffffffc0005674d4>] cpufreq_interactive_speedchange_task+0x74/04
[   79.419176] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   79.428854] autohotplug     S ffffffc0000853b8     0    93      2 0x00000000
[   79.441077] Call trace:
[   79.448209] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   79.458361] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   79.468582] [<ffffffc00071a940>] schedule+0x74/0x7c
[   79.478396] [<ffffffc00056a490>] autohotplug_thread_task+0x3e0/0x544
[   79.489828] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   79.499511] irq/92-sunxi-mm S ffffffc0000853b8     0    94      2 0x00000000
[   79.511737] Call trace:
[   79.518884] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   79.529049] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   79.539293] [<ffffffc00071a940>] schedule+0x74/0x7c
[   79.549139] [<ffffffc0001241e8>] irq_thread+0x138/0x174
[   79.559331] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   79.569008] mmcqd/0         S ffffffc0000853b8     0    95      2 0x00000000
[   79.581227] Call trace:
[   79.588358] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   79.598506] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   79.608738] [<ffffffc00071a940>] schedule+0x74/0x7c
[   79.618575] [<ffffffc000580d18>] mmc_queue_thread+0x124/0x168
[   79.629345] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   79.639032] kworker/u8:2    D ffffffc0000853b8     0    96      2 0x00000000
[   79.651261] Call trace:
[   79.658401] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   79.668555] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   79.678790] [<ffffffc00071a940>] schedule+0x74/0x7c
[   79.688630] [<ffffffc000718724>] schedule_timeout+0x34/0x27c
[   79.699290] [<ffffffc000719e7c>] wait_for_common+0x118/0x158
[   79.709921] [<ffffffc000719ee4>] wait_for_completion+0x28/0x34
[   79.720710] [<ffffffc0000d252c>] kthread_create_on_node+0x94/0x118
[   79.731913] [<ffffffc0000ca400>] create_worker+0x10c/0x1c4
[   79.742363] [<ffffffc0000cc460>] manage_workers.isra.10+0x108/0x1d8
[   79.753682] [<ffffffc0000cc684>] worker_thread+0x154/0x320
[   79.764148] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   79.773803] irq/93-sunxi-mm S ffffffc0000853b8     0    97      2 0x00000000
[   79.785995] Call trace:
[   79.793073] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   79.803179] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   79.813376] [<ffffffc00071a940>] schedule+0x74/0x7c
[   79.823183] [<ffffffc0001241e8>] irq_thread+0x138/0x174
[   79.833376] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   79.843043] system          S ffffffc0000853b8     0    98      2 0x00000000
[   79.855245] Call trace:
[   79.862328] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   79.872436] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   79.882626] [<ffffffc00071a940>] schedule+0x74/0x7c
[   79.892431] [<ffffffc0005a033c>] ion_heap_deferred_free+0xa4/0x15c
[   79.903698] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   79.913398] hdmi proc       S ffffffc0000853b8     0   111      2 0x00000000
[   79.925630] Call trace:
[   79.932743] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   79.942880] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   79.953107] [<ffffffc00071a940>] schedule+0x74/0x7c
[   79.962943] [<ffffffc000718920>] schedule_timeout+0x230/0x27c
[   79.973735] [<ffffffc000435fe0>] hdmi_delay_ms+0x48/0x54
[   79.984010] [<ffffffc000436058>] hdmi_run_thread+0x6c/0x8c
[   79.994446] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   80.004091] deferwq         S ffffffc0000853b8     0   112      2 0x00000000
[   80.016317] Call trace:
[   80.023448] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   80.033552] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   80.043701] [<ffffffc00071a940>] schedule+0x74/0x7c
[   80.053419] [<ffffffc0000cbf8c>] rescuer_thread+0x248/0x298
[   80.063888] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   80.073471] dramfreq_task   S ffffffc0000853b8     0   113      2 0x00000000
[   80.085628] Call trace:
[   80.092694] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   80.102756] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   80.112884] [<ffffffc00071a940>] schedule+0x74/0x7c
[   80.122582] [<ffffffc0005b0250>] sunxi_dramfreq_task_func+0x54/0x84
[   80.133805] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   80.143384] kworker/0:2     S ffffffc0000853b8     0   114      2 0x00000000
[   80.155538] Call trace:
[   80.162594] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   80.172665] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   80.182824] [<ffffffc00071a940>] schedule+0x74/0x7c
[   80.192552] [<ffffffc0000cc80c>] worker_thread+0x2dc/0x320
[   80.202933] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   80.212524] kworker/u9:1    S ffffffc0000853b8     0   115      2 0x00000000
[   80.224690] Call trace:
[   80.231759] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   80.241832] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   80.251984] [<ffffffc00071a940>] schedule+0x74/0x7c
[   80.261706] [<ffffffc0000cc80c>] worker_thread+0x2dc/0x320
[   80.272080] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   80.281665] ext4-dio-unwrit S ffffffc0000853b8     0   116      2 0x00000000
[   80.293827] Call trace:
[   80.300900] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   80.310998] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   80.321182] [<ffffffc00071a940>] schedule+0x74/0x7c
[   80.330989] [<ffffffc0000cbf8c>] rescuer_thread+0x248/0x298
[   80.341557] [<ffffffc0000d27b8>] kthread+0xb4/0xbc
[   80.351243] kmod            x ffffffc0000853b8     0   129      1 0x00000004
[   80.363494] Call trace:
[   80.370631] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   80.380779] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   80.390972] [<ffffffc00071a940>] schedule+0x74/0x7c
[   80.400740] [<ffffffc0000b3fc4>] do_exit+0x898/0x8e0
[   80.410577] [<ffffffc0000b40d8>] do_group_exit+0x7c/0xdc
[   80.420801] [<ffffffc0000b4158>] __wake_up_parent+0x0/0x40
[   80.431219] mount           x ffffffc0000853b8     0   131      1 0x00000004
[   80.443433] Call trace:
[   80.450551] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   80.460643] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   80.470795] [<ffffffc00071a940>] schedule+0x74/0x7c
[   80.480536] [<ffffffc0000b3fc4>] do_exit+0x898/0x8e0
[   80.490374] [<ffffffc0000b40d8>] do_group_exit+0x7c/0xdc
[   80.500597] [<ffffffc0000b4158>] __wake_up_parent+0x0/0x40
[   80.510993] mount           x ffffffc0000853b8     0   132      1 0x00000004
[   80.523164] Call trace:
[   80.530199] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   80.540221] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   80.550309] [<ffffffc00071a940>] schedule+0x74/0x7c
[   80.560016] [<ffffffc0000b3fc4>] do_exit+0x898/0x8e0
[   80.569814] [<ffffffc0000b40d8>] do_group_exit+0x7c/0xdc
[   80.579997] [<ffffffc0000b4158>] __wake_up_parent+0x0/0x40
[   80.590359] systemd-modules D ffffffc0000853b8     0   135      1 0x00000000
[   80.602523] Call trace:
[   80.609593] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   80.619628] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   80.629719] [<ffffffc00071a940>] schedule+0x74/0x7c
[   80.639399] [<ffffffc000718724>] schedule_timeout+0x34/0x27c
[   80.649950] [<ffffffc000719e7c>] wait_for_common+0x118/0x158
[   80.660504] [<ffffffc000719ee4>] wait_for_completion+0x28/0x34
[   80.671232] [<ffffffc0000d252c>] kthread_create_on_node+0x94/0x118
[   80.682359] [<ffffffc0000cdb80>] __alloc_workqueue_key+0x334/0x410
[   80.693585] [<ffffffbffc05d0a0>] $x+0xa0/0xec [cfg80211]
[   80.703705] [<ffffffc0000815b8>] do_one_initcall+0x8c/0x128
[   80.714107] [<ffffffc00010d8c8>] load_module+0x18a0/0x1e10
[   80.724423] [<ffffffc00010dfd0>] SyS_finit_module+0x8c/0xa0
[   80.734838] ureadahead      x ffffffc0000853b8     0   136      1 0x00000004
[   80.746939] Call trace:
[   80.753922] [<ffffffc0000853b8>] __switch_to+0x7c/0x88
[   80.763877] [<ffffffc00071a6b4>] __schedule+0x4fc/0x714
[   80.773890] [<ffffffc00071a940>] schedule+0x74/0x7c
[   80.783490] [<ffffffc0000b3fc4>] do_exit+0x898/0x8e0
[   80.793186] [<ffffffc0000b40d8>] do_group_exit+0x7c/0xdc
[   80.803265] [<ffffffc0000b4158>] __wake_up_parent+0x0/0x40
[   80.813533] Sched Debug Version: v0.10, 3.10.104 #1
[   80.823146] ktime                                   : 72113.289533
[   80.834200] sched_clk                               : 80813.530479
[   80.845211] cpu_clk                                 : 80813.530561
[   80.856178] jiffies                                 : 4294943699
[   80.866947]
[   80.872686] sysctl_sched
[   80.879557]   .sysctl_sched_latency                    : 18.000000
[   80.890489]   .sysctl_sched_min_granularity            : 2.250000
[   80.901271]   .sysctl_sched_wakeup_granularity         : 3.000000
[   80.912010]   .sysctl_sched_child_runs_first           : 0
[   80.922049]   .sysctl_sched_features                   : 11835
[   80.932474]   .sysctl_sched_tunable_scaling            : 1 (logaritmic)
[   80.943770]
[   80.949389] cpu#0
[   80.955449]   .nr_running                    : 3
[   80.964440]   .load                          : 1024
[   80.973669]   .nr_switches                   : 2046
[   80.982859]   .nr_load_updates               : 5149
[   80.992039]   .nr_uninterruptible            : -4
[   81.001017]   .next_balance                  : 4294.937725
[   81.010876]   .curr->pid                     : 30
[   81.019867]   .clock                         : 13846.732708
[   81.029811]   .cpu_load[0]                   : 1024
[   81.038923]   .cpu_load[1]                   : 1024
[   81.047964]   .cpu_load[2]                   : 1024
[   81.056941]   .cpu_load[3]                   : 1024
[   81.065886]   .cpu_load[4]                   : 1024
[   81.074794]   .yld_count                     : 0
[   81.083400]   .sched_count                   : 2050
[   81.092285]   .sched_goidle                  : 576
[   81.101047]   .avg_idle                      : 1000000
[   81.110137]   .ttwu_count                    : 4040
[   81.118890]   .ttwu_local                    : 745
[   81.127498]
[   81.127498] cfs_rq[0]:/
[   81.138380]   .exec_clock                    : 553.871009
[   81.147628]   .MIN_vruntime                  : 0.000001
[   81.156685]   .min_vruntime                  : 556.825864
[   81.165914]   .max_vruntime                  : 0.000001
[   81.174878]   .spread                        : 0.000000
[   81.183783]   .spread0                       : 0.000000
[   81.192630]   .nr_spread_over                : 8
[   81.200803]   .nr_running                    : 1
[   81.208958]   .load                          : 1024
[   81.217388]   .runnable_load_avg             : 294
[   81.225711]   .blocked_load_avg              : 0
[   81.233843]   .tg_load_avg                   : 294
[   81.242135]   .tg_load_contrib               : 294
[   81.250385]   .tg_runnable_contrib           : 441
[   81.258600]   .tg->runnable_avg              : 441
[   81.266784]   .tg->usage_avg                 : 441
[   81.274940]   .tg->cfs_bandwidth.timer_active: 0
[   81.282904]   .throttled                     : 0
[   81.290823]   .throttle_count                : 0
[   81.298682]   .avg->runnable_avg_sum         : 20560
[   81.306902]   .avg->runnable_avg_period      : 47010
[   81.315107]
[   81.315107] rt_rq[0]:
[   81.324652]   .rt_nr_running                 : 2
[   81.332450]   .rt_throttled                  : 0
[   81.340221]   .rt_time                       : 0.000000
[   81.348623]   .rt_runtime                    : 950.000000
[   81.357160]
[   81.357160] runnable tasks:
[   81.357160]             task   PID         tree-key  switches  prio     execp
[   81.357160] -----------------------------------------------------------------
[   81.396098]         kthreadd     2         3.000000       104    98         /
[   81.411091]       watchdog/0    11        -2.989422         4     0        -/
[   81.426100] R    kworker/0:1    30       556.825864        37   120       55/
[   81.441171]
[   81.445846] cpu#1
[   81.450969]   .nr_running                    : 0
[   81.459078]   .load                          : 0
[   81.467159]   .nr_switches                   : 6304
[   81.475485]   .nr_load_updates               : 7178
[   81.483831]   .nr_uninterruptible            : 7
[   81.491893]   .next_balance                  : 4294.943737
[   81.500944]   .curr->pid                     : 0
[   81.509045]   .clock                         : 81508.935579
[   81.518213]   .cpu_load[0]                   : 0
[   81.526327]   .cpu_load[1]                   : 0
[   81.534395]   .cpu_load[2]                   : 0
[   81.542426]   .cpu_load[3]                   : 0
[   81.550428]   .cpu_load[4]                   : 0
[   81.558400]   .yld_count                     : 0
[   81.566383]   .sched_count                   : 6320
[   81.574680]   .sched_goidle                  : 2561
[   81.582990]   .avg_idle                      : 1000000
[   81.591618]   .ttwu_count                    : 3159
[   81.599960]   .ttwu_local                    : 2384
[   81.608292]
[   81.608292] cfs_rq[1]:/
[   81.618480]   .exec_clock                    : 3061.372256
[   81.627493]   .MIN_vruntime                  : 0.000001
[   81.636240]   .min_vruntime                  : 3034.241426
[   81.645273]   .max_vruntime                  : 0.000001
[   81.654029]   .spread                        : 0.000000
[   81.662766]   .spread0                       : 2477.415562
[   81.671776]   .nr_spread_over                : 19
[   81.679934]   .nr_running                    : 0
[   81.687996]   .load                          : 0
[   81.696051]   .runnable_load_avg             : 0
[   81.704133]   .blocked_load_avg              : 0
[   81.712206]   .tg_load_avg                   : 294
[   81.720480]   .tg_load_contrib               : 0
[   81.728558]   .tg_runnable_contrib           : 0
[   81.736628]   .tg->runnable_avg              : 441
[   81.744887]   .tg->usage_avg                 : 441
[   81.753138]   .tg->cfs_bandwidth.timer_active: 0
[   81.761231]   .throttled                     : 0
[   81.769340]   .throttle_count                : 0
[   81.777432]   .avg->runnable_avg_sum         : 0
[   81.785537]   .avg->runnable_avg_period      : 47887
[   81.794000]
[   81.794000] rt_rq[1]:
[   81.804070]   .rt_nr_running                 : 0
[   81.812134]   .rt_throttled                  : 0
[   81.820198]   .rt_time                       : 0.023165
[   81.828913]   .rt_runtime                    : 950.000000
[   81.837841]
[   81.837841] runnable tasks:
[   81.837841]             task   PID         tree-key  switches  prio     execp
[   81.837841] -----------------------------------------------------------------
[   81.878380]
[   81.883309] cpu#2
[   81.888714]   .nr_running                    : 0
[   81.897033]   .load                          : 0
[   81.905214]   .nr_switches                   : 503
[   81.913444]   .nr_load_updates               : 6936
[   81.921728]   .nr_uninterruptible            : 1
[   81.929659]   .next_balance                  : 4294.943718
[   81.938499]   .curr->pid                     : 0
[   81.946402]   .clock                         : 81941.895620
[   81.955373]   .cpu_load[0]                   : 0
[   81.963303]   .cpu_load[1]                   : 0
[   81.971208]   .cpu_load[2]                   : 0
[   81.979088]   .cpu_load[3]                   : 0
[   81.986937]   .cpu_load[4]                   : 0
[   81.994744]   .yld_count                     : 0
[   82.002528]   .sched_count                   : 505
[   82.010502]   .sched_goidle                  : 237
[   82.018454]   .avg_idle                      : 1000000
[   82.026820]   .ttwu_count                    : 209
[   82.034826]   .ttwu_local                    : 185
[   82.042842]
[   82.042842] cfs_rq[2]:/
[   82.052637]   .exec_clock                    : 353.582319
[   82.061363]   .MIN_vruntime                  : 0.000001
[   82.069917]   .min_vruntime                  : 393.817984
[   82.078654]   .max_vruntime                  : 0.000001
[   82.087191]   .spread                        : 0.000000
[   82.095737]   .spread0                       : -163.007880
[   82.104561]   .nr_spread_over                : 6
[   82.112453]   .nr_running                    : 0
[   82.120324]   .load                          : 0
[   82.128174]   .runnable_load_avg             : 0
[   82.136026]   .blocked_load_avg              : 0
[   82.143884]   .tg_load_avg                   : 294
[   82.151943]   .tg_load_contrib               : 0
[   82.159806]   .tg_runnable_contrib           : 0
[   82.167654]   .tg->runnable_avg              : 441
[   82.175708]   .tg->usage_avg                 : 441
[   82.183766]   .tg->cfs_bandwidth.timer_active: 0
[   82.191650]   .throttled                     : 0
[   82.199550]   .throttle_count                : 0
[   82.207426]   .avg->runnable_avg_sum         : 0
[   82.215320]   .avg->runnable_avg_period      : 48369
[   82.223594]
[   82.223594] rt_rq[2]:
[   82.233310]   .rt_nr_running                 : 0
[   82.241188]   .rt_throttled                  : 0
[   82.249036]   .rt_time                       : 0.022140
[   82.257574]   .rt_runtime                    : 950.000000
[   82.266301]
[   82.266301] runnable tasks:
[   82.266301]             task   PID         tree-key  switches  prio     execp
[   82.266301] -----------------------------------------------------------------
[   82.306016]
[   82.310755] cpu#3
[   82.315959]   .nr_running                    : 0
[   82.324154]   .load                          : 0
[   82.332327]   .nr_switches                   : 7394
[   82.340801]   .nr_load_updates               : 6976
[   82.349197]   .nr_uninterruptible            : 0
[   82.357179]   .next_balance                  : 4294.943714
[   82.366004]   .curr->pid                     : 0
[   82.373895]   .clock                         : 82365.015538
[   82.382856]   .cpu_load[0]                   : 0
[   82.390773]   .cpu_load[1]                   : 0
[   82.398667]   .cpu_load[2]                   : 0
[   82.406540]   .cpu_load[3]                   : 0
[   82.414385]   .cpu_load[4]                   : 0
[   82.422190]   .yld_count                     : 0
[   82.429975]   .sched_count                   : 7397
[   82.438040]   .sched_goidle                  : 3552
[   82.446085]   .avg_idle                      : 1000000
[   82.454452]   .ttwu_count                    : 910
[   82.462458]   .ttwu_local                    : 431
[   82.470477]
[   82.470477] cfs_rq[3]:/
[   82.480269]   .exec_clock                    : 86.442514
[   82.488893]   .MIN_vruntime                  : 0.000001
[   82.497439]   .min_vruntime                  : 87.230494
[   82.506070]   .max_vruntime                  : 0.000001
[   82.514597]   .spread                        : 0.000000
[   82.523134]   .spread0                       : -469.595370
[   82.531956]   .nr_spread_over                : 6
[   82.539844]   .nr_running                    : 0
[   82.547713]   .load                          : 0
[   82.555561]   .runnable_load_avg             : 0
[   82.563416]   .blocked_load_avg              : 0
[   82.571279]   .tg_load_avg                   : 294
[   82.579342]   .tg_load_contrib               : 0
[   82.587208]   .tg_runnable_contrib           : 0
[   82.595059]   .tg->runnable_avg              : 441
[   82.603115]   .tg->usage_avg                 : 441
[   82.611176]   .tg->cfs_bandwidth.timer_active: 0
[   82.619066]   .throttled                     : 0
[   82.626970]   .throttle_count                : 0
[   82.634857]   .avg->runnable_avg_sum         : 0
[   82.642758]   .avg->runnable_avg_period      : 48659
[   82.651039]
[   82.651039] rt_rq[3]:
[   82.660767]   .rt_nr_running                 : 0
[   82.668651]   .rt_throttled                  : 0
[   82.676503]   .rt_time                       : 0.022509
[   82.685051]   .rt_runtime                    : 950.000000
[   82.693783]
[   82.693783] runnable tasks:
[   82.693783]             task   PID         tree-key  switches  prio     execp
[   82.693783] -----------------------------------------------------------------
[   82.733519]
[   82.738277] INFO: rcu_preempt self-detected stall on CPU[   82.738940] INFO:)
[   82.738950] Task dump for CPU 0:
[   82.738953] kworker/0:1     R  running task        0    30      2 0x00000002
[   82.738961] Workqueue: events start_work
[   82.738963] Call trace:
[   82.738968] [<ffffffc0000853b8>] __switch_to+0x7c/0x88

[   82.804985]  { 0}  (t=6994 jiffies g=18446744073709551343 c=1844674407370955)
[   82.821215] CPU: 0 PID: 30 Comm: kworker/0:1 Not tainted 3.10.104 #1
[   82.831936] Workqueue: events start_work
[   82.840024] Call trace:
[   82.846489] [<ffffffc000088388>] dump_backtrace+0x0/0x118
[   82.856277] [<ffffffc0000884c4>] show_stack+0x24/0x30
[   82.865692] [<ffffffc000716b2c>] dump_stack+0x20/0x28
[   82.875086] [<ffffffc00012cc28>] rcu_check_callbacks+0x290/0x780
[   82.885563] [<ffffffc0000be9ac>] update_process_times+0x48/0x7c
[   82.895963] [<ffffffc0001021e4>] tick_sched_handle.isra.7+0x58/0x6c
[   82.906771] [<ffffffc000102240>] tick_sched_timer+0x48/0x70
[   82.916849] [<ffffffc0000d5e7c>] __run_hrtimer+0x174/0x2d4
[   82.926880] [<ffffffc0000d69b4>] hrtimer_interrupt+0x128/0x230
[   82.937343] [<ffffffc000587804>] arch_timer_handler_phys+0x3c/0x4c
[   82.948248] [<ffffffc000126920>] handle_percpu_devid_irq+0xf0/0x1c8
[   82.959282] [<ffffffc000122a08>] generic_handle_irq+0x34/0x4c
[   82.969771] [<ffffffc000084570>] handle_IRQ+0x8c/0xac
[   82.979527] [<ffffffc0000813f8>] gic_handle_irq+0x60/0x8c
[   82.989681] Exception stack(0xffffffc078b577d0 to 0xffffffc078b578f0)
[   83.001058] 77c0:                                     00000002 00000000 00000
[   83.014476] 77e0: 78b57910 ffffffc0 000b5fb4 ffffffc0 00000000 00000000 00be0
[   83.027949] 7800: 00be4900 ffffffc0 00000020 00000000 37d243f2 00000000 29aa0
[   83.041485] 7820: 78b54000 ffffffc0 004baf00 0007270e 1420e251 00000000 25c12
[   83.055039] 7840: 0000000e 00000000 00000007 00000000 78b57900 ffffffc0 00000
[   83.068642] 7860: 00000007 00000000 00000001 00000000 00000007 00000000 00000
[   83.082257] 7880: 00000013 00000000 00000002 00000000 0000001e 00000000 78b50
[   83.095888] 78a0: 78b57a40 ffffffc0 80000145 00000000 0000000a 00000000 00000
[   83.109556] 78c0: 78b57910 ffffffc0 00a6e000 ffffffc0 00a6e0c0 ffffffc0 78b50
[   83.123279] 78e0: 000b5f30 ffffffc0 78b57910 ffffffc0
[   83.133565] [<ffffffc000083dc0>] el1_irq+0x80/0xe4
[   83.143607] [<ffffffc0000b62c4>] do_softirq+0x54/0x64
[   83.153959] [<ffffffc0000b653c>] irq_exit+0x7c/0xc0
[   83.164127] [<ffffffc000084574>] handle_IRQ+0x90/0xac
[   83.174500] [<ffffffc0000813f8>] gic_handle_irq+0x60/0x8c
[   83.185273] Exception stack(0xffffffc078b57a20 to 0xffffffc078b57b40)
[   83.197284] 7a20: 00000140 00000000 7880fe0c ffffffc0 78b57b60 ffffffc0 00710
[   83.211317] 7a40: 00000006 00000000 00000140 00000000 00000000 00000000 00000
[   83.225398] 7a60: 0000003c 00000000 78b57bd8 ffffffc0 00000000 00000000 00000
[   83.239488] 7a80: 77145ac0 ffffffc0 00000000 00000000 0bdd084f 0a000705 0eaa5
[   83.253622] 7aa0: 00000000 00000000 00000000 00000000 00000000 00000000 00000
[   83.267779] 7ac0: 00000007 00000000 0000000e 00000000 00000000 00000000 00000
[   83.281939] 7ae0: 7880fe0c ffffffc0 ffffffed 00000000 00000077 00000000 78800
[   83.296130] 7b00: 7880fe0c ffffffc0 00000000 00000000 00000140 00000000 00000
[   83.310349] 7b20: 00000000 00000000 78b57b60 ffffffc0 00124d0c ffffffc0 78b50
[   83.324615] [<ffffffc000083dc0>] el1_irq+0x80/0xe4
[   83.335219] [<ffffffc000124d0c>] __setup_irq+0x318/0x3e0
[   83.346420] [<ffffffc000124f4c>] request_threaded_irq+0xe0/0x124
[   83.358429] [<ffffffc00040d0bc>] disp_sys_register_irq+0x88/0x98
[   83.370470] [<ffffffc00041aec0>] disp_hdmi_enable+0x1d4/0x278
[   83.382241] [<ffffffc00040edf0>] disp_device_attached_and_enable+0x1bc/0x1d4
[   83.395488] [<ffffffc00040efa8>] bsp_disp_device_switch+0xbc/0xe4
[   83.407729] [<ffffffc000405dbc>] start_work+0x174/0x1f0
[   83.418963] [<ffffffc0000cb754>] process_one_work+0x27c/0x42c
[   83.430674] [<ffffffc0000cc738>] worker_thread+0x208/0x320
[   83.441975] [<ffffffc0000d27b8>] kthread+0xb4/0xbc

HID_SUNPLUS not recognized

You can you please set HID_SUNPLUS=y for future builds? It doesn't make the kernel THAT much bigger...

Adding overlayfs to kernel 3.10.x

As discussed, Volumo needs an overlayfs backport in kernel 3.10.x
I have used the patches, based on the work of Adi Linden (https://github.com/adilinden/overlayfs-patches) several times. They always apply without issues, provided the version matches.
For your kernel I used 'overlayfs.v18-3.10-rc7.patch'

Regression testing was done with this test-suite: http://git.infradead.org/users/dhowells/unionmount-testsuite.git
I will gladly repeat the testing after the patch has been applied.

Apt package for linux-image-extra-3.10.101-4-pine64-longsleep missing?

Hi there,

I'm attempting to install Docker on your Ubuntu Xenial builds for Pine64, and I'm attempting to install aufs support, and in doing so, I'm running sudo apt-get install linux-image-extra-3.10.101-4-pine64-longsleep and coming up empty:

No package matching 'linux-image-extra-3.10.101-4-pine64-longsleep' is available

Do you have any suggestions? I looked at https://launchpad.net/~longsleep and saw no packages listed there. Is there a PPA that I need to add? Does that package not exist?

I apologize if I've posted this issue in the wrong place.

Thanks,
Faun

unhandled level 1 translation fault (11)

Aug 17 16:49:07 localhost kernel: abrt-hook-ccpp[28134]: unhandled level 1 translation fault (11) at 0x00000000, esr 0x92000005
Aug 17 16:49:07 localhost kernel: pgd = ffffffc0753f9000
Aug 17 16:49:07 localhost kernel: [00000000] *pgd=0000000000000000
Aug 17 16:49:07 localhost kernel:
Aug 17 16:49:07 localhost kernel: CPU: 3 PID: 28134 Comm: abrt-hook-ccpp Tainted: G           O 3.10.105-0-pine64-longsleep #3
Aug 17 16:49:07 localhost kernel: task: ffffffc078a5e380 ti: ffffffc074fa4000 task.ti: ffffffc074fa4000
Aug 17 16:49:07 localhost kernel: PC is at 0x7f863750d0
Aug 17 16:49:07 localhost kernel: LR is at 0x7f863751a0
Aug 17 16:49:07 localhost kernel: pc : [<0000007f863750d0>] lr : [<0000007f863751a0>] pstate: a0000000
Aug 17 16:49:07 localhost kernel: sp : 0000007ff8ff5360
Aug 17 16:49:07 localhost kernel: x29: 0000007ff8ff5360 x28: 0000000000000000
Aug 17 16:49:07 localhost kernel: x27: 0000000000000000 x26: 0000000000000024
Aug 17 16:49:07 localhost kernel: x25: 0000007ff8ff65d0 x24: 0000000000000000
Aug 17 16:49:07 localhost kernel: x23: 0000000000000000 x22: 0000000000000000
Aug 17 16:49:07 localhost kernel: x21: 0000007f8666fd88 x20: 0000000000000000
Aug 17 16:49:07 localhost kernel: x19: 0000000000000000 x18: 0000007ff8ff5130
Aug 17 16:49:07 localhost kernel: x17: 0000007f863750b4 x16: 0000007f863a63e0
Aug 17 16:49:07 localhost kernel: x15: 0000007f85c8bf30 x14: ffffffffffffffff
Aug 17 16:49:07 localhost kernel: x13: ffffffffffffffff x12: 0000000000000005
Aug 17 16:49:07 localhost kernel: x11: 0000000000000000 x10: 0000000000000000
Aug 17 16:49:07 localhost kernel: x9 : 1999999999999999 x8 : ffffffffffffffff
Aug 17 16:49:07 localhost kernel: x7 : 000000558c122ad0 x6 : 000000558c122b20
Aug 17 16:49:07 localhost kernel: x5 : 0000007ff8ff7fbf x4 : 0000007f861cbe48
Aug 17 16:49:07 localhost kernel: x3 : 0000000000000005 x2 : 000000000000000a
Aug 17 16:49:07 localhost kernel: x1 : 00000000000011f0 x0 : 0000000000000000
Aug 17 16:49:07 localhost kernel:
Aug 17 16:49:07 localhost kernel: Process 28134(abrt-hook-ccpp) has RLIMIT_CORE set to 1
Aug 17 16:49:07 localhost kernel: Aborting core

No eMMC memory detected

No eMMC memory detected. Is there a specific compilation to do or is it a driver problem ? (The support of the pine64 informed me that it was possible that the driver of my chip eMMC is 5.0)

clock_gettime CLOCK_MONOTONIC is not as monotonic increasing as Rust expects it to be

So, I'm not totally sure where to put this, but I think it might be a Pine64/Kernel related issue.

I have a problem with random crashes of the rust compiler (1.13) on my Pine64:

error: internal compiler error: unexpected panic

note: the compiler unexpectedly panicked. this is a bug.

note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports

thread 'rustc' panicked at 'other was less than the current instant', /buildslave/rust-buildbot/slave/beta-dist-rustc-cross-host-linux/build/src/libstd/sys/unix/time.rs:276
note: Run with `RUST_BACKTRACE=1` for a backtrace.

As the message "other was less than the current instant" struck me as quite odd I had a look at the source code there and apparently they make sure that two subsequent calls to clock_gettime(CLOCK_MONOTONIC... always have a positive delta (https://github.com/rust-lang/rust/blame/master/src/libstd/sys/unix/time.rs#L276, commit is rust-lang/rust@c6eb852)

According to the Linux docs that should be the case:

CLOCK_MONOTONIC
Clock that cannot be set and represents monotonic time since some unspecified starting point.

So this made me take out my rusty C knowledge to test that out:

#include <stddef.h>
#include <stdio.h>
#include <time.h>
#include <sys/sysinfo.h>

struct timespec diff(struct timespec start, struct timespec end)
{
  struct timespec temp;
  if ((end.tv_nsec-start.tv_nsec)<0) {
    temp.tv_sec = end.tv_sec-start.tv_sec-1;
    temp.tv_nsec = 1000000000+end.tv_nsec-start.tv_nsec;
  } else {
    temp.tv_sec = end.tv_sec-start.tv_sec;
    temp.tv_nsec = end.tv_nsec-start.tv_nsec;
  }
  return temp;
}


int main(void){
  int i = 0;
  struct timespec monotime;
  struct timespec oldtime;
  struct timespec delta; 
  
  for (i = 0; i <= 1000000; i++) {
    clock_gettime(CLOCK_MONOTONIC, &monotime);

    if (oldtime.tv_sec > 0) {
      delta = diff(oldtime, monotime);
      printf("\rRounds: %i", i);
      if (delta.tv_sec < 0 || delta.tv_nsec < 0) {
        printf("\n");
        printf("Now (%lld.%.9ld) is before old (%lld.%.9ld)\n", (long long)monotime.tv_sec, monotime.tv_nsec, (long long)oldtime.tv_sec, oldtime.tv_nsec);
        return 1;
      }

    }
    
    oldtime = monotime;
    
  }

  printf("\n");
  return 0;
}

Having some load I can reproduce that:

Rounds: 211246
Now (86066.040429675) is before old (86066.040514135)
 18:03:05 up 23:54,  3 users,  load average: 2.04, 2.07, 2.35
Rounds: 16864
Now (86071.079399025) is before old (86071.079483486)
 18:03:10 up 23:54,  3 users,  load average: 2.20, 2.10, 2.36
Rounds: 12103
Now (86072.960532639) is before old (86072.960617099)
 18:03:12 up 23:54,  3 users,  load average: 2.34, 2.14, 2.37
Rounds: 10335
Now (86075.120457845) is before old (86075.120542306)
 18:03:14 up 23:54,  3 users,  load average: 2.34, 2.14, 2.37
Rounds: 72514
Now (86091.604185538) is before old (86091.604269999)
 18:03:31 up 23:54,  3 users,  load average: 2.85, 2.26, 2.41
Rounds: 41445
Now (86103.709183057) is before old (86103.709267517)
 18:03:43 up 23:55,  3 users,  load average: 3.41, 2.41, 2.46
Rounds: 1000000
 18:10:41 up 1 day, 2 min,  3 users,  load average: 0.17, 0.87, 1.73
Rounds: 1000000
 18:15:03 up 1 day, 6 min,  2 users,  load average: 0.09, 0.42, 1.33

So my question is: is this a bug? Should that always be monotonic increasing? I have OpenNTPd running, but as this clock should not be settable this should not be an issue (plus NTP log messages in syslog do not correlate with my tests)

I'm running

Linux campine 3.10.104-1-pine64-longsleep #103 SMP PREEMPT Sun Oct 23 13:09:48 CEST 2016 aarch64 GNU/Linux

network interface config is broken and swap does not work after update kernel to 104-1

I update the version of kernel from 102 to 104-1, then reboot it, the content of the eth0 is loss and it's content is changed to following:

# vim etc/sysconfig/network-scripts/ifcfg-eth0 
audio: no matching devices available
2010-01-01 00:00:18,833 WARNING  tuned.plugins.base: instance video: no matching devices available
2010-01-01 00:00
bash

ip rule + ip route isolate host. Bug?

I'm trying to use SSLH in transparent mode. as per the instruction this require some iptables+ ip instructions as follows:

iptables -t mangle -N SSLH
iptables -t mangle -A OUTPUT --protocol tcp --out-interface eth0 --sport 22 --jump SSLH
iptables -t mangle -A OUTPUT --protocol tcp --out-interface eth0 --sport 4443 --jump SSLH
iptables -t mangle -A SSLH --jump MARK --set-mark 1
iptables -t mangle -A SSLH --jump ACCEPT
ip rule add fwmark 1 lookup 100
ip route add local 0.0.0.0/0 dev lo table 100

The problem is that once the last one is given the box became unreachable (tested on several pine64 distro, same result).
The very same instructions works fine with other linux boxes, even with arm processors, and even some kernel older than 3.10.
It seems as if the kernel (or some module) "fwmarks" all the packets instead of just the selected ones, hence disrupting the network connectivity.
Once the instructions are given no traffic from the box to the lan works either.
Could this depend on some quirks on this kernel?

Thanks

Error compiling sun4i-emac.o: implicit declaration of function ‘writesl’

Hi Simon.

I was trying to build this kernel with some more stuff built as modules, and got this:

CC [M] drivers/net/ethernet/allwinner/sun4i-emac.o
drivers/net/ethernet/allwinner/sun4i-emac.c: In function ‘emac_outblk_32bit’:
drivers/net/ethernet/allwinner/sun4i-emac.c:200:2: error: implicit declaration of function ‘writesl’ [-Werror=implicit-function-declaration]
writesl(reg, data, round_up(count, 4) / 4);
^
drivers/net/ethernet/allwinner/sun4i-emac.c: In function ‘emac_inblk_32bit’:
drivers/net/ethernet/allwinner/sun4i-emac.c:205:2: error: implicit declaration of function ‘readsl’ [-Werror=implicit-function-declaration]
readsl(reg, data, round_up(count, 4) / 4);
^
drivers/net/ethernet/allwinner/sun4i-emac.c: In function ‘emac_start_xmit’:
drivers/net/ethernet/allwinner/sun4i-emac.c:490:2: error: implicit declaration of function ‘dev_consume_skb_any’ [-Werror=implicit-function-declaration]
dev_consume_skb_any(skb);
^
cc1: some warnings being treated as errors

tree after:

commit 2d4c3da
Author: Simon Eisenmann [email protected]
Date: Mon Feb 22 23:23:57 2016 +0100

Hacked KVM so it actually works. Thanks to @apritzel for remembering the bug and what to fix.

custom .config file (started with sun50iw1p1smp_linux_defconfig ), but with existing stuff not touched.

Any ideas? Some missing header includes?

I am using gcc 5.3.1-16, and doing native compilation.

3.10.107

Any chance I could get you to update to 3.10.107? :)

USB WiFi dongle

I am trying to plug a usb wifi dongle but without success. Actually I tried several of them and none works. When I try to compile the modules it fails.

Is there a plan to make usb wifi dongle work?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.