vanes

Members
  • Posts

    120
  • Joined

  • Last visited

Posts posted by vanes

  1. 10 hours ago, itimpi said:

    you have 6 fields in the custom entry

     

    Thank you so much for watching, man.
    I fixed it to 5 fields, I'll see how it works, I'll write it helped or not ?
    I'm almost sure that the reason for this

     

    P.S. Thanks, @itimpi , Problem solved! 

  2. Hi, need some help. I try to limit the ARC to 2GB, this is my go file:

    #!/bin/bash
    #Zfs ARC size
    echo 2147483648 >> /sys/module/zfs/parameters/zfs_arc_max
    # Start the Management Utility
    /usr/local/sbin/emhttp &

    I edited go-file, rebooted, then checked  cat /proc/spl/kstat/zfs/arcstats

    it seems the size has not changed, it is still 4gb max

    root@Tower:~# cat /proc/spl/kstat/zfs/arcstats
    
    13 1 0x01 96 26112 40241515841 4620213926208
    name                            type data
    hits                            4    702353
    misses                          4    4420
    demand_data_hits                4    94
    demand_data_misses              4    0
    demand_metadata_hits            4    700921
    demand_metadata_misses          4    3616
    prefetch_data_hits              4    0
    prefetch_data_misses            4    0
    prefetch_metadata_hits          4    1338
    prefetch_metadata_misses        4    804
    mru_hits                        4    30635
    mru_ghost_hits                  4    406
    mfu_hits                        4    670574
    mfu_ghost_hits                  4    571
    deleted                         4    258596
    mutex_miss                      4    0
    access_skip                     4    0
    evict_skip                      4    191
    evict_not_enough                4    50
    evict_l2_cached                 4    0
    evict_l2_eligible               4    34050764288
    evict_l2_ineligible             4    105383936
    evict_l2_skip                   4    0
    hash_elements                   4    32762
    hash_elements_max               4    33061
    hash_collisions                 4    7788
    hash_chains                     4    520
    hash_chain_max                  4    2
    p                               4    3998406656
    c                               4    4008861696
    c_min                           4    250553856
    c_max                           4    4008861696
    size                            4    3988219216
    compressed_size                 4    3836652032
    uncompressed_size               4    4142148608
    overhead_size                   4    139904512
    hdr_size                        4    10920384
    data_size                       4    3973056000
    metadata_size                   4    3500544
    dbuf_size                       4    410704
    dnode_size                      4    247104
    bonus_size                      4    84480
    anon_size                       4    51695616
    anon_evictable_data             4    0
    anon_evictable_metadata         4    0
    mru_size                        4    3924730368
    mru_evictable_data              4    3721777664
    mru_evictable_metadata          4    1073664
    mru_ghost_size                  4    121528832
    mru_ghost_evictable_data        4    93454336
    mru_ghost_evictable_metadata    4    28074496
    mfu_size                        4    130560
    mfu_evictable_data              4    0
    mfu_evictable_metadata          4    0
    mfu_ghost_size                  4    33736704
    mfu_ghost_evictable_data        4    3276800
    mfu_ghost_evictable_metadata    4    30459904
    l2_hits                         4    0
    l2_misses                       4    0
    l2_feeds                        4    0
    l2_rw_clash                     4    0
    l2_read_bytes                   4    0
    l2_write_bytes                  4    0
    l2_writes_sent                  4    0
    l2_writes_done                  4    0
    l2_writes_error                 4    0
    l2_writes_lock_retry            4    0
    l2_evict_lock_retry             4    0
    l2_evict_reading                4    0
    l2_evict_l1cached               4    0
    l2_free_on_write                4    0
    l2_abort_lowmem                 4    0
    l2_cksum_bad                    4    0
    l2_io_error                     4    0
    l2_size                         4    0
    l2_asize                        4    0
    l2_hdr_size                     4    0
    memory_throttle_count           4    0
    memory_direct_count             4    0
    memory_indirect_count           4    0
    memory_all_bytes                4    8017723392
    memory_free_bytes               4    3323105280
    memory_available_bytes          3    3197829120
    arc_no_grow                     4    0
    arc_tempreserve                 4    0
    arc_loaned_bytes                4    0
    arc_prune                       4    0
    arc_meta_used                   4    15163216
    arc_meta_limit                  4    3006646272
    arc_dnode_limit                 4    300664627
    arc_meta_max                    4    17378936
    arc_meta_min                    4    16777216
    sync_wait_for_async             4    0
    demand_hit_predictive_prefetch  4    0
    arc_need_free                   4    0
    arc_sys_free                    4    125276928

    Please help  me to limit ARC size....

     

    PS: When i run "echo 2147483648 >> /sys/module/zfs/parameters/zfs_arc_max" in terminal, it works. Arc max size is decreasing on the eyes along with the occupied RAM. Go file does not work for me. Can I make a script with "echo 2147483648 >> /sys/module/zfs/parameters/zfs_arc_max" and run it when array start? 

  3. Hi guys, i need some help. I am trying to run custom cron of my scrub scripts, but recieve this:

     

    unRaid crond[1825]: exit status 127 from user root * /usr/local/emhttp/plugins/user.scripts/startCustom.php /boot/config/plugins/user.scripts/scripts/Scrubc/script > /dev/null 2>&1

     

    my script is: (\config\plugins\user.scripts\scripts\Scrubc\script)

    #!/bin/bash
    /usr/local/emhttp/plugins/dynamix/scripts/notify -e "start_scrub_cache" -s "Scrub cache drive" -d "Scrub of cache drive started" -i "normal" -m "Scrubbing message"
    btrfs scrub start -rdB /mnt/cache > /boot/logs/scrub_cache.log
    if [ $? -eq 0 ]
    then
       /usr/local/emhttp/plugins/dynamix/scripts/notify -e "start_scrub_cache" -s "Scrub cache drive" -d "Scrub of cache drive finished" -i "normal" -m /boot/logs/scrub_cache.log
    else
       /usr/local/emhttp/plugins/dynamix/scripts/notify -e "start_scrub_cache" -s "Scrub cache drive" -d "Error in scrub of cache drive !" -i "alert" -m /boot/logs/scrub_cache.log
    fi

    cron-custom.jpg.c5b1f916ee45fb40636e32e608850e00.jpg

     

    Run/Run in Background works fine. Custom cron - dont.

  4. It seems I made it work

    I found https://rocket.chat/docs/installation/paas-deployments/aws/#5-configure-nginx-web-server-with-tlsssl , then edited file like this

     server {
     listen 443 ssl;
     server_name chat.my.domain.com;
     ssl_certificate /config/keys/letsencrypt/fullchain.pem;
     ssl_certificate_key /config/keys/letsencrypt/privkey.pem;
     ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
     ssl_prefer_server_ciphers on;
     ssl_ciphers 'EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH';
     root /config/www;
     add_header Strict-Transport-Security "max-age=31536000; includeSubDomains";
     index index.html index.htm;
     # Make site accessible from http://localhost/
     server_name localhost;
     location / {
         proxy_pass http://192.168.0.10:3000/;
         proxy_http_version 1.1;
         proxy_set_header Upgrade $http_upgrade;
         proxy_set_header Connection "upgrade";
         proxy_set_header Host $http_host;
         proxy_set_header X-Real-IP $remote_addr;
         proxy_set_header X-Forward-For $proxy_add_x_forwarded_for;
         proxy_set_header X-Forward-Proto http;
         proxy_set_header X-Nginx-Proxy true;
         proxy_redirect off;
     }
     }
     server {
     listen 80;
     server_name chat.my.domain.com;
     return 301 https://$host$request_uri;
     }

    now ios app can connect!

    ssllab shows A+

  5. Hi guys, need some help with Rocket-chat and letsencrypt docker container (linuxservers).

    I got running nextcloud and emby througt letsencrypt reverse proxy, everything is working fine, but I cant access from rocket chat ios app to my server.

    But I can connect to rocket chat in browser...

    Please help me to config nginx file in site-conf of letsencrypt appdata folder to get it working whith rocket chat 

    I tried this

    server {
            listen 80;
            server_name chat.vanes.mydomain.com;
            return 301 https://chat.vanes.mydomain.com$request_uri;
    }
    server {
    	listen 443 ssl;
    	server_name chat.vanes.mydomain.com;
    	root /config/www;
    	index index.html index.htm index.php;
    	include /config/nginx/ssl.conf;
    	client_max_body_size 0; add_header Strict-Transport-Security "max-age=31536000; includeSubDomains";
    	location / {
            proxy_pass http://192.168.0.10:3000/;
    	proxy_max_temp_file_size 2048m;
    	include /config/nginx/proxy.conf;
            }
    }

     

     

  6. I understand that it should be set to "No" for v disk`s and docker img shares located on HDD`s that are BTRFS formatted ? Should I recreate shares if I use SSD cache pool? Will it be better?

    to swich shares to "No" I should copy img files to somewhere else, recreate shares with "No" setings, and then copy img and appdata files back to this shares...

     is this right way? Or I need to recreate my vm`s and docker img after recreating shares?

    I'll do as @johnnie.black says. =))

  7. Hi, please someone explain about the share setting "Enable Copy-on-write"
    I found that my shares located on ssd pool it is set to:
    system share (docker img) is set to  "No"
    appdata share is set to "Auto"
    domains share (vDisks) is  set to  "Auto"
    is this correct, or I should recreate shares, and change all to "No"?
    Should I recreate VM`s or docker img?
    Does this affect performance and stability?

    Thanks!

  8. Replaced slow wd green with Samsund 850 120Gb x2 Raid1. 

    Some users report low write performance on this disks, freezes... etc 

    In my cases, I do not see any problems. Only good performance

     

    i am runnin win10 vm on 50Gb vdisk, and this is coping from array to vdisk which is on cache pool raid1. Wd Green`s speed was only 50 mb/sec. 

    850raid1.jpg

  9. 3 minutes ago, dmacias said:

    Also what settings are you using to shutdown (your Nut settings from the settings page)? What method are you using to shutdown? Battery level, runtime left or Time on Battery?

    i use Time on Battery method.

     

    4 minutes ago, dmacias said:

    Then install this nut version. Then try it out.

    I do not know how to install this file =)) I'm new to Linux =)) I ask, if not difficult, to write a short algorithm step by step

    Thanks

  10. v1 info

    root@unRaid:~# upsc ups
    battery.charge: 100
    battery.charge.low: 10
    battery.charge.warning: 20
    battery.mfr.date: CPS
    battery.runtime: 1191
    battery.runtime.low: 300
    battery.type: PbAcid
    battery.voltage: 13.8
    battery.voltage.nominal: 12
    device.mfr: CPS
    device.model: EX850E
    device.type: ups
    driver.name: usbhid-ups
    driver.parameter.pollfreq: 30
    driver.parameter.pollinterval: 2
    driver.parameter.port: auto
    driver.parameter.synchronous: no
    driver.version: 2.7.3
    driver.version.data: CyberPower HID 0.4
    driver.version.internal: 0.39
    input.transfer.high: 0
    input.transfer.low: 0
    input.voltage: 227.0
    input.voltage.nominal: 230
    output.voltage: 225.0
    ups.beeper.status: enabled
    ups.delay.shutdown: 20
    ups.delay.start: 30
    ups.load: 24
    ups.mfr: CPS
    ups.model: EX850E
    ups.productid: 0501
    ups.realpower.nominal: 490
    ups.status: OL
    ups.test.result: No test initiated
    ups.timer.shutdown: -60
    ups.timer.start: -60
    ups.vendorid: 0764

     

    root@unRaid:~# upscmd -l ups
    Instant commands supported on UPS [ups]:
    
    beeper.disable - Disable the UPS beeper
    beeper.enable - Enable the UPS beeper
    beeper.mute - Temporarily mute the UPS beeper
    beeper.off - Obsolete (use beeper.disable or beeper.mute)
    beeper.on - Obsolete (use beeper.enable)
    load.off - Turn off the load immediately
    load.off.delay - Turn off the load with a delay (seconds)
    load.on - Turn on the load immediately
    load.on.delay - Turn on the load with a delay (seconds)
    shutdown.return - Turn off the load and return when power is back
    shutdown.stayoff - Turn off the load and remain off
    shutdown.stop - Stop a shutdown in progress
    test.battery.start.deep - Start a deep battery test
    test.battery.start.quick - Start a quick battery test
    test.battery.stop - Stop the battery test

     

    root@unRaid:~# upsrw ups
    [battery.charge.low]
    Remaining battery level when UPS switches to LB (percent)
    Type: STRING
    Maximum length: 10
    Value: 10
    
    [battery.runtime.low]
    Remaining battery runtime when UPS switches to LB (seconds)
    Type: STRING
    Maximum length: 10
    Value: 300
    
    [input.transfer.high]
    High voltage transfer point (V)
    Type: STRING
    Maximum length: 10
    Value: 0
    
    [input.transfer.low]
    Low voltage transfer point (V)
    Type: STRING
    Maximum length: 10
    Value: 0
    
    [ups.delay.shutdown]
    Interval to wait after shutdown with delay command (seconds)
    Type: STRING
    Maximum length: 10
    Value: 20
    
    [ups.delay.start]
    Interval to wait before (re)starting the load (seconds)
    Type: STRING
    Maximum length: 10
    Value: 30

     

  11. This is friends output

    /volume1/homes/***$ upsc ups
    battery.charge: 100
    battery.charge.low: 10
    battery.charge.warning: 20
    battery.mfr.date: CPS
    battery.runtime: 908
    battery.runtime.low: 300
    battery.type: PbAcid
    battery.voltage: 9.2
    battery.voltage.nominal: 12
    device.mfr: CPS
    device.model: EX650E
    device.type: ups
    driver.name: usbhid-ups
    driver.parameter.pollfreq: 30
    driver.parameter.pollinterval: 5
    driver.parameter.port: auto
    driver.version: DSM6-1-15205-171017-1-gf424baa
    driver.version.data: CyberPower HID 0.3
    driver.version.internal: 0.38
    input.transfer.high: 0
    input.transfer.low: 0
    input.voltage: 218.0
    input.voltage.nominal: 230
    output.voltage: 217.0
    ups.beeper.status: enabled
    ups.delay.shutdown: 20
    ups.delay.start: 30
    ups.load: 31
    ups.mfr: CPS
    ups.model: EX650E
    ups.productid: 0501
    ups.realpower.nominal: 360
    ups.status: OL
    ups.test.result: No test initiated
    ups.timer.shutdown: -60
    ups.timer.start: -60
    ups.vendorid: 0764

    i tried:

     upsmon -c fsd  (from here http://networkupstools.org/docs/man/usbhid-ups.html)

     upsrw shutdown.stayoff ups

    tried APCPSD test (apctest  kilpower test)

    No reaction.....

  12. hi guys, need you help!

    I recently bought cheap UPS Cyberpower EX850E usb,

    I connected it, unraid detected it using APCUPSD and using NUT, everything is fine except one thing

    I can not make him turn off after server shutdown, so I want when power is applied again the server is turned on

    Bios settings after power loss set to "always on"

    here is Nut output: (upsc ups@localhost)

    battery.charge: 100
    battery.charge.low: 10
    battery.charge.warning: 20
    battery.mfr.date: CPS
    battery.runtime: 1241
    battery.runtime.low: 300
    battery.type: PbAcid
    battery.voltage: 13.8
    battery.voltage.nominal: 12
    device.mfr: CPS
    device.model: EX850E
    device.type: ups
    driver.name: usbhid-ups
    driver.parameter.pollfreq: 30
    driver.parameter.pollinterval: 2
    driver.parameter.port: auto
    driver.parameter.synchronous: no
    driver.version: 2.7.4.1
    driver.version.data: CyberPower HID 0.5
    driver.version.internal: 0.42
    input.transfer.high: 0
    input.transfer.low: 0
    input.voltage: 224.0
    input.voltage.nominal: 230
    output.voltage: 223.0
    ups.beeper.status: enabled
    ups.delay.shutdown: 20
    ups.delay.start: 30
    ups.load: 23
    ups.mfr: CPS
    ups.model: EX850E
    ups.productid: 0501
    ups.realpower.nominal: 490
    ups.status: OL
    ups.test.result: No test initiated
    ups.timer.shutdown: -60
    ups.timer.start: -60
    ups.vendorid: 0764

    Instant commands supported on UPS (upscmd -l)

    beeper.disable - Disable the UPS beeper
    beeper.enable - Enable the UPS beeper
    beeper.mute - Temporarily mute the UPS beeper
    beeper.off - Obsolete (use beeper.disable or beeper.mute)
    beeper.on - Obsolete (use beeper.enable)
    load.off - Turn off the load immediately
    load.off.delay - Turn off the load with a delay (seconds)
    load.on - Turn on the load immediately
    load.on.delay - Turn on the load with a delay (seconds)
    shutdown.return - Turn off the load and return when power is back
    shutdown.stayoff - Turn off the load and remain off
    shutdown.stop - Stop a shutdown in progress
    test.battery.start.deep - Start a deep battery test
    test.battery.start.quick - Start a quick battery test
    test.battery.stop - Stop the battery test
    upsrw ups
    [battery.charge.low]
    Remaining battery level when UPS switches to LB (percent)
    Type: STRING
    Maximum length: 10
    Value: 10
    
    [battery.runtime.low]
    Remaining battery runtime when UPS switches to LB (seconds)
    Type: STRING
    Maximum length: 10
    Value: 300
    
    [input.transfer.high]
    High voltage transfer point (V)
    Type: STRING
    Maximum length: 10
    Value: 0
    
    [input.transfer.low]
    Low voltage transfer point (V)
    Type: STRING
    Maximum length: 10
    Value: 0
    
    [ups.delay.shutdown]
    Interval to wait after shutdown with delay command (seconds)
    Type: STRING
    Maximum length: 10
    Value: 20
    
    [ups.delay.start]
    Interval to wait before (re)starting the load (seconds)
    Type: STRING
    Maximum length: 10
    Value: 30

    please help =)

     

    UPD: my friend use such UPS whith synology nas, that use NUT, and everything works perfect. Power cut > shutdown > ups-off, and when power retained it starts

  13. 8 hours ago, dmacias said:

    I saw your RC6 call traces thread about Emby. https://lime-technology.com/forums/topic/70083-rc6-call-traces/?tab=comments#comment-641788

    Are you still getting them with 6.5? I am getting the exact same errors with 6.5 and Emby Server. Had to roll back to 6.4.1.

     

    Here's the Diagnostics from 6.5 before rolling back

     

    server-diagnostics-20180314-1752.zip

    There was no more! I continue to observe.

  14. i desided to test 2 streams at a time via emby and recieved this...

    emby server docker and client windows 10vm (3 out of 4 cores) on the same host

    is it unraid or vm or emby or docker issue??unraid-diagnostics-20180313-2005.zip

    Mar 13 18:40:34 unRaid kernel: 
    Mar 13 19:27:56 unRaid kernel: BUG: unable to handle kernel NULL pointer dereference at 0000000000000038
    Mar 13 19:27:56 unRaid kernel: IP: tcp_push+0x4e/0xee
    Mar 13 19:27:56 unRaid kernel: PGD 8000000212442067 P4D 8000000212442067 PUD 21aafe067 PMD 0 
    Mar 13 19:27:56 unRaid kernel: Oops: 0002 [#1] PREEMPT SMP PTI
    Mar 13 19:27:56 unRaid kernel: Modules linked in: xt_CHECKSUM iptable_mangle ipt_REJECT nf_reject_ipv4 ebtable_filter ebtables ip6table_filter ip6_tables vhost_net tun vhost tap xt_nat veth ipt_MASQUERADE nf_nat_masquerade_ipv4 iptable_nat nf_conntrack_ipv4 nf_defrag_ipv4 nf_nat_ipv4 iptable_filter ip_tables nf_nat xfs md_mod i915 iosf_mbi i2c_algo_bit drm_kms_helper drm intel_gtt agpgart syscopyarea sysfillrect sysimgblt fb_sys_fops nct6775 hwmon_vid x86_pkg_temp_thermal intel_powerclamp coretemp kvm_intel kvm crct10dif_pclmul crc32_pclmul crc32c_intel ghash_clmulni_intel pcbc aesni_intel aes_x86_64 crypto_simd glue_helper cryptd intel_cstate intel_uncore intel_rapl_perf r8169 mxm_wmi i2c_i801 i2c_core mii ahci libahci wmi video backlight fan thermal acpi_pad button
    Mar 13 19:27:56 unRaid kernel: CPU: 2 PID: 21142 Comm: EmbyServer Not tainted 4.14.25-unRAID #1
    Mar 13 19:27:56 unRaid kernel: Hardware name: MSI MS-7A74/B250M PRO-VD (MS-7A74), BIOS 1.90 01/29/2018
    Mar 13 19:27:56 unRaid kernel: task: ffff8801dba8e580 task.stack: ffffc90002c2c000
    Mar 13 19:27:56 unRaid kernel: RIP: 0010:tcp_push+0x4e/0xee
    Mar 13 19:27:56 unRaid kernel: RSP: 0018:ffffc90002c2fc70 EFLAGS: 00010246
    Mar 13 19:27:56 unRaid kernel: RAX: 0000000000000000 RBX: 00000000000005a8 RCX: 0000000000000000
    Mar 13 19:27:56 unRaid kernel: RDX: 0000000000000000 RSI: 0000000000000040 RDI: ffff88027194d500
    Mar 13 19:27:56 unRaid kernel: RBP: ffff8801dba8eea0 R08: 0000000000003890 R09: ffffffff8151db7d
    Mar 13 19:27:56 unRaid kernel: R10: ffff88027194d658 R11: 0000000000000000 R12: ffff88027194d500
    Mar 13 19:27:56 unRaid kernel: R13: 0000000000000000 R14: ffff880103b14c00 R15: 00000000ffffffe0
    Mar 13 19:27:56 unRaid kernel: FS:  0000150809477700(0000) GS:ffff88027ed00000(0000) knlGS:0000000000000000
    Mar 13 19:27:56 unRaid kernel: CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
    Mar 13 19:27:56 unRaid kernel: CR2: 0000000000000038 CR3: 0000000219582004 CR4: 00000000003626e0
    Mar 13 19:27:56 unRaid kernel: Call Trace:
    Mar 13 19:27:56 unRaid kernel: tcp_sendmsg_locked+0xa53/0xbac
    Mar 13 19:27:56 unRaid kernel: tcp_sendmsg+0x23/0x35
    Mar 13 19:27:56 unRaid kernel: sock_sendmsg+0x14/0x1e
    Mar 13 19:27:56 unRaid kernel: ___sys_sendmsg+0x1ab/0x229
    Mar 13 19:27:56 unRaid kernel: ? seccomp_run_filters+0xdc/0x106
    Mar 13 19:27:56 unRaid kernel: ? mem_cgroup_commit_charge+0x98/0xe3
    Mar 13 19:27:56 unRaid kernel: ? __seccomp_filter+0x26/0x1c5
    Mar 13 19:27:56 unRaid kernel: ? __sys_sendmsg+0x3c/0x5d
    Mar 13 19:27:56 unRaid kernel: __sys_sendmsg+0x3c/0x5d
    Mar 13 19:27:56 unRaid kernel: do_syscall_64+0xfe/0x107
    Mar 13 19:27:56 unRaid kernel: entry_SYSCALL_64_after_hwframe+0x3d/0xa2
    Mar 13 19:27:56 unRaid kernel: RIP: 0033:0x15081e636c6d
    Mar 13 19:27:56 unRaid kernel: RSP: 002b:0000150809476060 EFLAGS: 00000293 ORIG_RAX: 000000000000002e
    Mar 13 19:27:56 unRaid kernel: RAX: ffffffffffffffda RBX: 00001508094761c0 RCX: 000015081e636c6d
    Mar 13 19:27:56 unRaid kernel: RDX: 0000000000000000 RSI: 0000150809476070 RDI: 00000000000000a7
    Mar 13 19:27:56 unRaid kernel: RBP: 0000000000000000 R08: 00001507a663017c R09: 0000000000000000
    Mar 13 19:27:56 unRaid kernel: R10: 00001507a64844a8 R11: 0000000000000293 R12: 00000000000000a7
    Mar 13 19:27:56 unRaid kernel: R13: 000015073000fd50 R14: 0000150809476190 R15: 0000150809476070
    Mar 13 19:27:56 unRaid kernel: Code: d0 75 02 31 c0 41 89 f3 41 81 e3 00 80 00 00 74 1a 44 8b 8f 68 05 00 00 41 d1 e9 44 2b 8f 6c 06 00 00 44 03 8f 74 06 00 00 79 10 <80> 48 38 08 8b 8f 6c 06 00 00 89 8f 74 06 00 00 40 80 e6 01 74 
    Mar 13 19:27:56 unRaid kernel: RIP: tcp_push+0x4e/0xee RSP: ffffc90002c2fc70
    Mar 13 19:27:56 unRaid kernel: CR2: 0000000000000038
    Mar 13 19:27:56 unRaid kernel: ---[ end trace 9074e2880271d2e7 ]---
    Mar 13 19:28:14 unRaid kernel: BUG: unable to handle kernel NULL pointer dereference at 0000000000000038
    Mar 13 19:28:14 unRaid kernel: IP: tcp_push+0x4e/0xee
    Mar 13 19:28:14 unRaid kernel: PGD 8000000212442067 P4D 8000000212442067 PUD 21aafe067 PMD 0 
    Mar 13 19:28:14 unRaid kernel: Oops: 0002 [#2] PREEMPT SMP PTI
    Mar 13 19:28:14 unRaid kernel: Modules linked in: xt_CHECKSUM iptable_mangle ipt_REJECT nf_reject_ipv4 ebtable_filter ebtables ip6table_filter ip6_tables vhost_net tun vhost tap xt_nat veth ipt_MASQUERADE nf_nat_masquerade_ipv4 iptable_nat nf_conntrack_ipv4 nf_defrag_ipv4 nf_nat_ipv4 iptable_filter ip_tables nf_nat xfs md_mod i915 iosf_mbi i2c_algo_bit drm_kms_helper drm intel_gtt agpgart syscopyarea sysfillrect sysimgblt fb_sys_fops nct6775 hwmon_vid x86_pkg_temp_thermal intel_powerclamp coretemp kvm_intel kvm crct10dif_pclmul crc32_pclmul crc32c_intel ghash_clmulni_intel pcbc aesni_intel aes_x86_64 crypto_simd glue_helper cryptd intel_cstate intel_uncore intel_rapl_perf r8169 mxm_wmi i2c_i801 i2c_core mii ahci libahci wmi video backlight fan thermal acpi_pad button
    Mar 13 19:28:14 unRaid kernel: CPU: 3 PID: 21145 Comm: EmbyServer Tainted: G      D         4.14.25-unRAID #1
    Mar 13 19:28:14 unRaid kernel: Hardware name: MSI MS-7A74/B250M PRO-VD (MS-7A74), BIOS 1.90 01/29/2018
    Mar 13 19:28:14 unRaid kernel: task: ffff88021e30ab80 task.stack: ffffc90002c34000
    Mar 13 19:28:14 unRaid kernel: RIP: 0010:tcp_push+0x4e/0xee
    Mar 13 19:28:14 unRaid kernel: RSP: 0018:ffffc90002c37c70 EFLAGS: 00010246
    Mar 13 19:28:14 unRaid kernel: RAX: 0000000000000000 RBX: 00000000000005a8 RCX: 0000000000000000
    Mar 13 19:28:14 unRaid kernel: RDX: 0000000000000000 RSI: 0000000000000040 RDI: ffff8800057ba200
    Mar 13 19:28:14 unRaid kernel: RBP: ffff88021e30b4a0 R08: 0000000000003890 R09: ffffffff8151db7d
    Mar 13 19:28:14 unRaid kernel: R10: ffff8800057ba358 R11: 0000000000000000 R12: ffff8800057ba200
    Mar 13 19:28:14 unRaid kernel: R13: 0000000000000000 R14: ffff880103b14200 R15: 00000000ffffffe0
    Mar 13 19:28:14 unRaid kernel: FS:  0000150808635700(0000) GS:ffff88027ed80000(0000) knlGS:0000000000000000
    Mar 13 19:28:14 unRaid kernel: CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
    Mar 13 19:28:14 unRaid kernel: CR2: 0000000000000038 CR3: 0000000219582006 CR4: 00000000003626e0
    Mar 13 19:28:14 unRaid kernel: Call Trace:
    Mar 13 19:28:14 unRaid kernel: tcp_sendmsg_locked+0xa53/0xbac
    Mar 13 19:28:14 unRaid kernel: tcp_sendmsg+0x23/0x35
    Mar 13 19:28:14 unRaid kernel: sock_sendmsg+0x14/0x1e
    Mar 13 19:28:14 unRaid kernel: ___sys_sendmsg+0x1ab/0x229
    Mar 13 19:28:14 unRaid kernel: ? seccomp_run_filters+0xdc/0x106
    Mar 13 19:28:14 unRaid kernel: ? do_wp_page+0x278/0x3ff
    Mar 13 19:28:14 unRaid kernel: ? __seccomp_filter+0x26/0x1c5
    Mar 13 19:28:14 unRaid kernel: ? __sys_sendmsg+0x3c/0x5d
    Mar 13 19:28:14 unRaid kernel: __sys_sendmsg+0x3c/0x5d
    Mar 13 19:28:14 unRaid kernel: do_syscall_64+0xfe/0x107
    Mar 13 19:28:14 unRaid kernel: entry_SYSCALL_64_after_hwframe+0x3d/0xa2
    Mar 13 19:28:14 unRaid kernel: RIP: 0033:0x15081e636c6d
    Mar 13 19:28:14 unRaid kernel: RSP: 002b:0000150808634060 EFLAGS: 00000293 ORIG_RAX: 000000000000002e
    Mar 13 19:28:14 unRaid kernel: RAX: ffffffffffffffda RBX: 00001508086341c0 RCX: 000015081e636c6d
    Mar 13 19:28:14 unRaid kernel: RDX: 0000000000000000 RSI: 0000150808634070 RDI: 000000000000009c
    Mar 13 19:28:14 unRaid kernel: RBP: 0000000000000000 R08: 00001507a663017c R09: 0000000000000000
    Mar 13 19:28:14 unRaid kernel: R10: 00001507a64844a8 R11: 0000000000000293 R12: 000000000000009c
    Mar 13 19:28:14 unRaid kernel: R13: 000015075804ece0 R14: 0000150808634190 R15: 0000150808634070
    Mar 13 19:28:14 unRaid kernel: Code: d0 75 02 31 c0 41 89 f3 41 81 e3 00 80 00 00 74 1a 44 8b 8f 68 05 00 00 41 d1 e9 44 2b 8f 6c 06 00 00 44 03 8f 74 06 00 00 79 10 <80> 48 38 08 8b 8f 6c 06 00 00 89 8f 74 06 00 00 40 80 e6 01 74 
    Mar 13 19:28:14 unRaid kernel: RIP: tcp_push+0x4e/0xee RSP: ffffc90002c37c70
    Mar 13 19:28:14 unRaid kernel: CR2: 0000000000000038
    Mar 13 19:28:14 unRaid kernel: ---[ end trace 9074e2880271d2e8 ]---
    Mar 13 19:33:46 unRaid kernel: BUG: unable to handle kernel NULL pointer dereference at 0000000000000038
    Mar 13 19:33:46 unRaid kernel: IP: tcp_push+0x4e/0xee
    Mar 13 19:33:46 unRaid kernel: PGD 8000000212442067 P4D 8000000212442067 PUD 21aafe067 PMD 0 
    Mar 13 19:33:46 unRaid kernel: Oops: 0002 [#3] PREEMPT SMP PTI
    Mar 13 19:33:46 unRaid kernel: Modules linked in: xt_CHECKSUM iptable_mangle ipt_REJECT nf_reject_ipv4 ebtable_filter ebtables ip6table_filter ip6_tables vhost_net tun vhost tap xt_nat veth ipt_MASQUERADE nf_nat_masquerade_ipv4 iptable_nat nf_conntrack_ipv4 nf_defrag_ipv4 nf_nat_ipv4 iptable_filter ip_tables nf_nat xfs md_mod i915 iosf_mbi i2c_algo_bit drm_kms_helper drm intel_gtt agpgart syscopyarea sysfillrect sysimgblt fb_sys_fops nct6775 hwmon_vid x86_pkg_temp_thermal intel_powerclamp coretemp kvm_intel kvm crct10dif_pclmul crc32_pclmul crc32c_intel ghash_clmulni_intel pcbc aesni_intel aes_x86_64 crypto_simd glue_helper cryptd intel_cstate intel_uncore intel_rapl_perf r8169 mxm_wmi i2c_i801 i2c_core mii ahci libahci wmi video backlight fan thermal acpi_pad button
    Mar 13 19:33:46 unRaid kernel: CPU: 2 PID: 24989 Comm: EmbyServer Tainted: G      D         4.14.25-unRAID #1
    Mar 13 19:33:46 unRaid kernel: Hardware name: MSI MS-7A74/B250M PRO-VD (MS-7A74), BIOS 1.90 01/29/2018
    Mar 13 19:33:46 unRaid kernel: task: ffff8801012e6580 task.stack: ffffc9000a45c000
    Mar 13 19:33:46 unRaid kernel: RIP: 0010:tcp_push+0x4e/0xee
    Mar 13 19:33:46 unRaid kernel: RSP: 0018:ffffc9000a45fc70 EFLAGS: 00010246
    Mar 13 19:33:46 unRaid kernel: RAX: 0000000000000000 RBX: 00000000000005b4 RCX: 0000000000000000
    Mar 13 19:33:46 unRaid kernel: RDX: 0000000000000000 RSI: 0000000000000040 RDI: ffff88002e26cc80
    Mar 13 19:33:46 unRaid kernel: RBP: ffff8801012e6ea0 R08: 000000000000faf0 R09: ffffffff8151bec7
    Mar 13 19:33:46 unRaid kernel: R10: ffff88002e26cdd8 R11: 0000000000000000 R12: ffff88002e26cc80
    Mar 13 19:33:46 unRaid kernel: R13: 0000000000000000 R14: ffff88020afe4000 R15: 00000000ffffffe0
    Mar 13 19:33:46 unRaid kernel: FS:  0000150807dee700(0000) GS:ffff88027ed00000(0000) knlGS:0000000000000000
    Mar 13 19:33:46 unRaid kernel: CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
    Mar 13 19:33:46 unRaid kernel: CR2: 0000000000000038 CR3: 0000000219582006 CR4: 00000000003626e0
    Mar 13 19:33:46 unRaid kernel: Call Trace:
    Mar 13 19:33:46 unRaid kernel: tcp_sendmsg_locked+0xa53/0xbac
    Mar 13 19:33:46 unRaid kernel: tcp_sendmsg+0x23/0x35
    Mar 13 19:33:46 unRaid kernel: sock_sendmsg+0x14/0x1e
    Mar 13 19:33:46 unRaid kernel: ___sys_sendmsg+0x1ab/0x229
    Mar 13 19:33:46 unRaid kernel: ? seccomp_run_filters+0xdc/0x106
    Mar 13 19:33:46 unRaid kernel: ? generic_file_read_iter+0x595/0x6e4
    Mar 13 19:33:46 unRaid kernel: ? __seccomp_filter+0x26/0x1c5
    Mar 13 19:33:46 unRaid kernel: ? __vfs_read+0xde/0x101
    Mar 13 19:33:46 unRaid kernel: ? __sys_sendmsg+0x3c/0x5d
    Mar 13 19:33:46 unRaid kernel: __sys_sendmsg+0x3c/0x5d
    Mar 13 19:33:46 unRaid kernel: do_syscall_64+0xfe/0x107
    Mar 13 19:33:46 unRaid kernel: entry_SYSCALL_64_after_hwframe+0x3d/0xa2
    Mar 13 19:33:46 unRaid kernel: RIP: 0033:0x15081e636c6d
    Mar 13 19:33:46 unRaid kernel: RSP: 002b:0000150807ded060 EFLAGS: 00000293 ORIG_RAX: 000000000000002e
    Mar 13 19:33:46 unRaid kernel: RAX: ffffffffffffffda RBX: 0000150807ded1c0 RCX: 000015081e636c6d
    Mar 13 19:33:46 unRaid kernel: RDX: 0000000000000000 RSI: 0000150807ded070 RDI: 00000000000000c4
    Mar 13 19:33:46 unRaid kernel: RBP: 0000000000000000 R08: 00001507a663017c R09: 0000000000000000
    Mar 13 19:33:46 unRaid kernel: R10: 00001507a64844a8 R11: 0000000000000293 R12: 00000000000000c4
    Mar 13 19:33:46 unRaid kernel: R13: 000015072c203570 R14: 0000150807ded190 R15: 0000150807ded070
    Mar 13 19:33:46 unRaid kernel: Code: d0 75 02 31 c0 41 89 f3 41 81 e3 00 80 00 00 74 1a 44 8b 8f 68 05 00 00 41 d1 e9 44 2b 8f 6c 06 00 00 44 03 8f 74 06 00 00 79 10 <80> 48 38 08 8b 8f 6c 06 00 00 89 8f 74 06 00 00 40 80 e6 01 74 
    Mar 13 19:33:46 unRaid kernel: RIP: tcp_push+0x4e/0xee RSP: ffffc9000a45fc70
    Mar 13 19:33:46 unRaid kernel: CR2: 0000000000000038
    Mar 13 19:33:46 unRaid kernel: ---[ end trace 9074e2880271d2e9 ]---