Re: [Regression] Linux-Next Merge 25Jul2018 breaks mmc on Tegra.

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 





On 08/02/2018 07:23 AM, Adrian Hunter wrote:
On 02/08/18 14:09, Ming Lei wrote:
On Thu, Aug 02, 2018 at 01:47:29PM +0300, Adrian Hunter wrote:
On 02/08/18 13:33, Ming Lei wrote:
On Thu, Aug 02, 2018 at 01:09:31PM +0300, Adrian Hunter wrote:
On 31/07/18 19:25, Ming Lei wrote:
Hi Peter,

On Tue, Jul 31, 2018 at 08:47:45AM -0400, Peter Geis wrote:
Good Morning,

On 07/30/2018 09:38 PM, Ming Lei wrote:
Hi Peter,

Thanks for collecting the log.

On Mon, Jul 30, 2018 at 02:55:42PM -0400, Peter Geis wrote:


On 07/28/2018 09:37 AM, Ming Lei wrote:

...

[   10.887209] systemd--112     0.n.1 2411122us : blk_mq_make_request: make
rq -1
[   10.890274] kworker/-98      0...1 2411506us : blk_mq_free_request:
complete: rq -1
[   10.893313] systemd--107     0...1 2412025us : blk_mq_make_request: make
rq -1
[   10.896354] systemd--107     0.... 2412323us : mmc_mq_queue_rq: queue rq
-1, 0
[   10.899388] systemd--107     0.... 2412327us :
blk_mq_try_issue_list_directly: issue direct: rq -1, ret 0
[   10.902463] (direxec-111     1...1 2413829us : blk_mq_make_request: make
rq -1
[   10.905513] systemd--114     1...1 2415159us : blk_mq_make_request: make
rq -1

Above is the most interesting part in the log. MMC sets hw queue depth
as 1, and you are using none scheduler, that means the max number of
in-flight requests should be one, but the above log shows that there may
be 3 in-flight requests.

That's odd, I have CFQ set as the default, is something changing this during
boot?
CONFIG_CFQ_GROUP_IOSCHED=y
CONFIG_DEFAULT_IOSCHED="cfq"

No, now mmc has been converted to blk-mq, and the default mq io sched
should have been mq-deadline for mmc, but not sure why it is none in
your case.



That seems really weird, but it shouldn't be related with my two patches,
which won't change the tag allocation behaviour at all. However, what matters
may be that the patch speeds up the request dispatch. Maybe one bug
in lib/sbitmap.c block/blk-mq-tag.c.

Unfortunately rq->tag wasn't shown in the log because I forget to dump
it in the debug patch, so could you apply the following new debug patch and
provide us the log again? BTW, please attach the ftrace log in the reply
mail directly, then it may be parsed/looked easily.

I have resynced to the latest linux-next and applied your new patch.
The log is attached.

Of note, it took several boots this time before it would progress to where I
could grab the log.
Instead it was blocking the moment RW was requested.
Also of note, it seems only the emmc is affected, the SD card (mmcblk2) does
not trigger any errors.

>From the log you captured, seems there are three requests(33, 34, 60) blocked,
which should have been inside mmc, but still need to confirm, could you apply the
following one-line patch against the last debug patch and collect the log again?

diff --git a/drivers/mmc/core/queue.c b/drivers/mmc/core/queue.c
index d35f265cd5e0..ac2ffc5a8ed4 100644
--- a/drivers/mmc/core/queue.c
+++ b/drivers/mmc/core/queue.c
@@ -321,6 +321,8 @@ static blk_status_t mmc_mq_queue_rq(struct blk_mq_hw_ctx *hctx,
                                    !host->hold_retune;
         }

+       if (blk_queue_debug(q))
+               trace_printk("mmc before issue rq %d %d\n", req->internal_tag, req->tag);
         blk_mq_start_request(req);

         issued = mmc_blk_mq_issue_rq(mq, req);


Also see comments in mmc_mq_queue_rq():

	/*
	 * We use BLK_MQ_F_BLOCKING and have only 1 hardware queue, which means requests
	 * will not be dispatched in parallel.
	 */

which isn't correct, given blk-mq has multiple sw queue and mmc sets the queue depth
as > 1, and requests may be dispatched to the unique hw queue in parallel.

Adrian, Ulf Hansson and anyone, could you take a look at the warning of WARN_ON(host->cmd)
in sdhci_send_command()? Seems you only allow to queue one command, but not sure how you
guarantee that.

We didn't guarantee it, but it didn't happen before "blk-mq: issue directly
if hw queue isn't busy in case of 'none'".

OK, thanks for clarifying that, and as I mentioned what matters is the
timing change.

We did consider adding a mutex, refer
https://lore.kernel.org/lkml/CAPDyKFr8tiJXSL-weQjGJ3DfRrfv8ZAFY8=ZECLNgSe_43S8Rw@xxxxxxxxxxxxxx/

However the following might do, do you think?

If dispatch in parallel isn't supported, just wondering why not set hw
queue depth as 1? That way should be simple to fix this issue.

First, it isn't 1.  It is 2 for devices with no command queue because we
prepare a request while the previous one completes.  Otherwise it is the
command queue depth.

Could you share where the prepare function is? What does the prepare
function do?

The prepare function is mmc_pre_req().

The prepare function is to let the host controller DMA map the request.  On
some architectures that is sufficiently slow that there is a significant
performance benefit to doing that in advance.


If the device has no command queue, I understand there is only one
command which can be queued/issued to controller. If that is true, the queue
depth should be 1.


Secondly, we expect an elevator to be used, and the elevator needs a decent
number of requests to work with, and the default number of requests is
currently tied to the queue depth.

There are two queue depth, we are talking about hw queue depth, which
means how many commands the controller can queue at most. The other one
is scheduler queue depth, which is 2 times of hw queue depth at default.

We may improve this case a bit, now if hw queue depth is 1, the scheduler
queue depth is set as 2 at default, but this default depth isn't good, since
legacy sets scheduler queue depth as 128, even though the minimized
depth is 4.





diff --git a/drivers/mmc/core/queue.c b/drivers/mmc/core/queue.c
index 648eb6743ed5..6edffeed9953 100644
--- a/drivers/mmc/core/queue.c
+++ b/drivers/mmc/core/queue.c
@@ -238,10 +238,6 @@ static void mmc_mq_exit_request(struct blk_mq_tag_set *set, struct request *req,
  	mmc_exit_request(mq->queue, req);
  }
-/*
- * We use BLK_MQ_F_BLOCKING and have only 1 hardware queue, which means requests
- * will not be dispatched in parallel.
- */
  static blk_status_t mmc_mq_queue_rq(struct blk_mq_hw_ctx *hctx,
  				    const struct blk_mq_queue_data *bd)
  {
@@ -264,7 +260,7 @@ static blk_status_t mmc_mq_queue_rq(struct blk_mq_hw_ctx *hctx,
spin_lock_irq(q->queue_lock); - if (mq->recovery_needed) {
+	if (mq->recovery_needed || mq->busy) {
  		spin_unlock_irq(q->queue_lock);
  		return BLK_STS_RESOURCE;
  	}
@@ -291,6 +287,9 @@ static blk_status_t mmc_mq_queue_rq(struct blk_mq_hw_ctx *hctx,
  		break;
  	}
+ /* Parallel dispatch of requests is not supported at the moment */
+	mq->busy = true;
+
  	mq->in_flight[issue_type] += 1;
  	get_card = (mmc_tot_in_flight(mq) == 1);
  	cqe_retune_ok = (mmc_cqe_qcnt(mq) == 1);
@@ -333,9 +332,12 @@ static blk_status_t mmc_mq_queue_rq(struct blk_mq_hw_ctx *hctx,
  		mq->in_flight[issue_type] -= 1;
  		if (mmc_tot_in_flight(mq) == 0)
  			put_card = true;
+		mq->busy = false;
  		spin_unlock_irq(q->queue_lock);
  		if (put_card)
  			mmc_put_card(card, &mq->ctx);
+	} else {
+		WRITE_ONCE(mq->busy, false);
  	}
return ret;
diff --git a/drivers/mmc/core/queue.h b/drivers/mmc/core/queue.h
index 17e59d50b496..9bf3c9245075 100644
--- a/drivers/mmc/core/queue.h
+++ b/drivers/mmc/core/queue.h
@@ -81,6 +81,7 @@ struct mmc_queue {
  	unsigned int		cqe_busy;
  #define MMC_CQE_DCMD_BUSY	BIT(0)
  #define MMC_CQE_QUEUE_FULL	BIT(1)
+	bool			busy;
  	bool			use_cqe;
  	bool			recovery_needed;
  	bool			in_recovery;

Sorry, I am not familiar with mmc code, so can't comment on the above
patch.

Right, but if we return BLK_STS_RESOURCE to avoid parallel dispatch, do we
need to worry about ensuring the queue gets run later?

Yeah, blk-mq can cover that.

Peter, could you test if the diff I sent also fixes your original regression?


Good Morning,
I apologize for the delay in returning the log with the latest debug patch, but I encountered a new bug with the io scheduler enabled that I was trying to work around. Apparently with the io scheduler enabled, while it got rid of the warnings, I was still getting cache corruption after a period of time. This manifested itself as ENOMEM errors whenever accessing files that had been recently written, and those files showed up as ??????? when ls -al was run. After a reboot those files were available without issue, until written again.

I have attached the log from the latest test.

Break.

Adrian,
Your patch appears to have corrected the errors, and it boots without issue.
I will have to run an extended test to ensure the bug I just mentioned above does not manifest either.

Thanks everyone!
[   17.266845]  systemd-1       1.... 2858567us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.269701]  systemd-1       1.... 2858610us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.272537]  systemd-1       1.... 2858613us : blk_mq_try_issue_list_directly: issue direct: rq -1 1, ret 0
[   17.275415] kworker/-79      0.n.. 2859363us : blk_mq_free_request: complete: rq -1 1
[   17.278314]  systemd-1       1.... 2861279us : blk_mq_make_request: make rq -1 1
[   17.281192]  systemd-1       1.... 2861292us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.284050]  systemd-1       1.n.. 2861368us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.286892]  systemd-1       1.n.. 2861371us : blk_mq_try_issue_list_directly: issue direct: rq -1 1, ret 0
[   17.289780] kworker/-79      0.n.. 2862216us : blk_mq_free_request: complete: rq -1 1
[   17.292689]  systemd-1       1.n.. 2863782us : blk_mq_make_request: make rq -1 1
[   17.295569]  systemd-1       1.... 2863808us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.298433]  systemd-1       1.n.. 2863848us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.301275]  systemd-1       1.n.. 2863850us : blk_mq_try_issue_list_directly: issue direct: rq -1 1, ret 0
[   17.304168] kworker/-79      0.n.. 2864595us : blk_mq_free_request: complete: rq -1 1
[   17.307077]  systemd-1       1.n.. 2865660us : blk_mq_make_request: make rq -1 1
[   17.309967]  systemd-1       1.... 2865687us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.312866]  systemd-1       1.... 2865722us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.315746]  systemd-1       1.... 2865725us : blk_mq_try_issue_list_directly: issue direct: rq -1 1, ret 0
[   17.318683] kworker/-79      0.n.. 2866569us : blk_mq_free_request: complete: rq -1 1
[   17.321604]  systemd-1       1.... 2868012us : blk_mq_make_request: make rq -1 1
[   17.324492]  systemd-1       1.... 2868023us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.327396]  systemd-1       1.... 2868072us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.330271]  systemd-1       1.... 2868075us : blk_mq_try_issue_list_directly: issue direct: rq -1 1, ret 0
[   17.333205] kworker/-79      0.n.. 2868952us : blk_mq_free_request: complete: rq -1 1
[   17.336126]  systemd-1       1.... 2869989us : blk_mq_make_request: make rq -1 1
[   17.339012]  systemd-1       1.... 2870016us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.341911]  systemd-1       1.... 2870049us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.344799]  systemd-1       1.... 2870052us : blk_mq_try_issue_list_directly: issue direct: rq -1 1, ret 0
[   17.347733] kworker/-79      0.n.. 2870819us : blk_mq_free_request: complete: rq -1 1
[   17.350659]  systemd-1       1.n.. 2871912us : blk_mq_make_request: make rq -1 1
[   17.353550]  systemd-1       1.... 2871939us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.356448]  systemd-1       1.... 2872021us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.359324]  systemd-1       1.... 2872025us : blk_mq_try_issue_list_directly: issue direct: rq -1 1, ret 0
[   17.362255] kworker/-79      0.n.. 2872766us : blk_mq_free_request: complete: rq -1 1
[   17.365183]  systemd-1       1.... 2874064us : blk_mq_make_request: make rq -1 1
[   17.368071]  systemd-1       1.... 2874075us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.370972]  systemd-1       1.... 2874127us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.373847]  systemd-1       1.... 2874130us : blk_mq_try_issue_list_directly: issue direct: rq -1 1, ret 0
[   17.376784] kworker/-79      0.n.. 2874861us : blk_mq_free_request: complete: rq -1 1
[   17.379711]  systemd-1       1.... 2878366us : blk_mq_make_request: make rq -1 1
[   17.382599]  systemd-1       1.... 2878378us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.385497]  systemd-1       1.n.. 2878454us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.388378]  systemd-1       1.n.. 2878457us : blk_mq_try_issue_list_directly: issue direct: rq -1 1, ret 0
[   17.391315] kworker/-79      0.n.. 2879299us : blk_mq_free_request: complete: rq -1 1
[   17.394245]  systemd-1       1.... 2879867us : blk_mq_make_request: make rq -1 1
[   17.397168]  systemd-1       1.... 2879877us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.400098]  systemd-1       1.... 2879925us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.403026]  systemd-1       1.... 2879928us : blk_mq_try_issue_list_directly: issue direct: rq -1 1, ret 0
[   17.405980] kworker/-79      0.n.. 2880758us : blk_mq_free_request: complete: rq -1 1
[   17.408945]  systemd-1       1.... 2881914us : blk_mq_make_request: make rq -1 1
[   17.411908]  systemd-1       1.... 2881970us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.414892]  systemd-1       1.... 2882005us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.417836]  systemd-1       1.... 2882007us : blk_mq_try_issue_list_directly: issue direct: rq -1 1, ret 0
[   17.420793] kworker/-79      0.n.. 2882699us : blk_mq_free_request: complete: rq -1 1
[   17.423760]  systemd-1       1.n.. 2884060us : blk_mq_make_request: make rq -1 1
[   17.426719]  systemd-1       1.... 2884089us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.429696]  systemd-1       1.... 2884157us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.432633]  systemd-1       1.... 2884160us : blk_mq_try_issue_list_directly: issue direct: rq -1 1, ret 0
[   17.435589] kworker/-79      0.n.. 2885102us : blk_mq_free_request: complete: rq -1 1
[   17.438553]  systemd-1       1.... 2886136us : blk_mq_make_request: make rq -1 1
[   17.441512]  systemd-1       1.... 2886161us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.444491]  systemd-1       1.... 2886194us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.447428]  systemd-1       1.... 2886197us : blk_mq_try_issue_list_directly: issue direct: rq -1 1, ret 0
[   17.450378] kworker/-79      0.n.. 2886960us : blk_mq_free_request: complete: rq -1 1
[   17.453339]  systemd-1       1.... 2888161us : blk_mq_make_request: make rq -1 1
[   17.456295]  systemd-1       1.... 2888171us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.459270]  systemd-1       1.... 2888228us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.462207]  systemd-1       1.... 2888231us : blk_mq_try_issue_list_directly: issue direct: rq -1 1, ret 0
[   17.465160] kworker/-79      0.n.. 2888901us : blk_mq_free_request: complete: rq -1 1
[   17.468116]  systemd-1       1.... 2890440us : blk_mq_make_request: make rq -1 1
[   17.471071]  systemd-1       1.... 2890451us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.474044]  systemd-1       1.n.. 2890487us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.476983]  systemd-1       1.n.. 2890489us : blk_mq_try_issue_list_directly: issue direct: rq -1 1, ret 0
[   17.479936] kworker/-79      0.n.. 2891235us : blk_mq_free_request: complete: rq -1 1
[   17.482896]  systemd-1       1.... 2892641us : blk_mq_make_request: make rq -1 1
[   17.485848]  systemd-1       1.... 2892652us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.488820]  systemd-1       1.... 2892730us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.491754]  systemd-1       1.... 2892733us : blk_mq_try_issue_list_directly: issue direct: rq -1 1, ret 0
[   17.494707] kworker/-79      0.n.. 2893357us : blk_mq_free_request: complete: rq -1 1
[   17.497664]  systemd-1       1.... 2894764us : blk_mq_make_request: make rq -1 1
[   17.500609]  systemd-1       1.... 2894774us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.503578]  systemd-1       1.... 2894823us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.506508] kworker/-79      0.n.. 2895529us : blk_mq_free_request: complete: rq -1 1
[   17.509431]  systemd-1       1.... 2896818us : blk_mq_make_request: make rq -1 1
[   17.512342]  systemd-1       1.n.. 2896833us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.515267]  systemd-1       1.... 2896885us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.518182]  systemd-1       1.... 2896888us : blk_mq_try_issue_list_directly: issue direct: rq -1 1, ret 0
[   17.521123] kworker/-79      0.n.. 2897695us : blk_mq_free_request: complete: rq -1 1
[   17.524044]  systemd-1       1.... 2898713us : blk_mq_make_request: make rq -1 1
[   17.526963]  systemd-1       1.... 2898725us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.529891]  systemd-1       1.n.. 2898762us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.532805]  systemd-1       1.n.. 2898765us : blk_mq_try_issue_list_directly: issue direct: rq -1 1, ret 0
[   17.535751] kworker/-79      0.n.. 2899449us : blk_mq_free_request: complete: rq -1 1
[   17.538673]  systemd-1       1.n.. 2900522us : blk_mq_make_request: make rq -1 1
[   17.541591]  systemd-1       1.... 2900546us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.544525]  systemd-1       1.... 2900582us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.547444]  systemd-1       1.n.. 2900585us : blk_mq_try_issue_list_directly: issue direct: rq -1 1, ret 0
[   17.550395] kworker/-79      0.n.. 2901359us : blk_mq_free_request: complete: rq -1 1
[   17.553322]  systemd-1       1.... 2901947us : blk_mq_make_request: make rq -1 1
[   17.556243]  systemd-1       1.... 2901957us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.559175]  systemd-1       1.... 2902006us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.562099]  systemd-1       1.... 2902009us : blk_mq_try_issue_list_directly: issue direct: rq -1 1, ret 0
[   17.565045] kworker/-79      0.n.. 2902784us : blk_mq_free_request: complete: rq -1 1
[   17.567975]  systemd-1       1.n.. 2903975us : blk_mq_make_request: make rq -1 1
[   17.570888]  systemd-1       1.... 2903998us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.573816]  systemd-1       1.... 2904032us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.576736] kworker/-79      0.n.. 2904753us : blk_mq_free_request: complete: rq -1 1
[   17.579652]  systemd-1       1.... 2905050us : blk_mq_make_request: make rq -1 1
[   17.582533]  systemd-1       1.... 2905059us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.585427]  systemd-1       1.... 2905091us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.588295] kworker/-79      0.n.. 2905939us : blk_mq_free_request: complete: rq -1 1
[   17.591193]  systemd-1       1.n.. 2908272us : blk_mq_make_request: make rq -1 1
[   17.594070]  systemd-1       1.... 2908298us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.596927]  systemd-1       1.n.. 2908338us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.599768]  systemd-1       1.n.. 2908342us : blk_mq_try_issue_list_directly: issue direct: rq -1 1, ret 0
[   17.602652] kworker/-79      0.n.. 2909121us : blk_mq_free_request: complete: rq -1 1
[   17.605561]  systemd-1       1.... 2910425us : blk_mq_make_request: make rq -1 1
[   17.608445]  systemd-1       1.... 2910473us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.611304]  systemd-1       1.... 2910524us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.614145]  systemd-1       1.... 2910527us : blk_mq_try_issue_list_directly: issue direct: rq -1 1, ret 0
[   17.617036] kworker/-79      0.n.. 2911228us : blk_mq_free_request: complete: rq -1 1
[   17.619940]  systemd-1       1.n.. 2912199us : blk_mq_make_request: make rq -1 1
[   17.622825]  systemd-1       1.... 2912227us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.625690]  systemd-1       1.... 2912312us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.628536]  systemd-1       1.... 2912316us : blk_mq_try_issue_list_directly: issue direct: rq -1 1, ret 0
[   17.631428] kworker/-79      0.n.. 2913429us : blk_mq_free_request: complete: rq -1 1
[   17.634342]  systemd-1       1.n.. 2913875us : blk_mq_make_request: make rq -1 1
[   17.637226]  systemd-1       1.... 2913930us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.640095]  systemd-1       1.... 2913965us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.642939] kworker/-79      0.n.. 2914950us : blk_mq_free_request: complete: rq -1 1
[   17.645799]  systemd-1       1.... 2914998us : blk_mq_make_request: make rq -1 1
[   17.648675]  systemd-1       1.... 2915046us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.651551]  systemd-1       1.... 2915076us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.654394] kworker/-79      0.n.. 2915932us : blk_mq_free_request: complete: rq -1 1
[   17.657252]  systemd-1       1.... 2916046us : blk_mq_make_request: make rq -1 1
[   17.660118]  systemd-1       1.... 2916054us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.662977]  systemd-1       1.... 2916083us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.665781]  systemd-1       1.... 2916103us : blk_mq_make_request: make rq -1 2
[   17.668580]  systemd-1       1.n.. 2916109us : mmc_mq_queue_rq: mmc before issue rq -1 2
[   17.671386]  systemd-1       1.n.. 2916901us : blk_mq_free_request: complete: rq -1 1
[   17.674203]  systemd-1       1.n.. 2916907us : mmc_mq_queue_rq: queue rq -1 2, 0
[   17.676989]  systemd-1       1.... 2916941us : blk_mq_make_request: make rq -1 1
[   17.679740]  systemd-1       1.... 2916946us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.682499]  systemd-1       1.... 2917500us : blk_mq_free_request: complete: rq -1 2
[   17.685255]  systemd-1       1.... 2917505us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.688014]  systemd-1       1.n.. 2917526us : blk_mq_make_request: make rq -1 2
[   17.690749]  systemd-1       1.... 2917546us : mmc_mq_queue_rq: mmc before issue rq -1 2
[   17.693460]  systemd-1       1.... 2918107us : blk_mq_free_request: complete: rq -1 1
[   17.696181]  systemd-1       1.... 2918112us : mmc_mq_queue_rq: queue rq -1 2, 0
[   17.698886]  systemd-1       1.... 2918132us : blk_mq_make_request: make rq -1 1
[   17.701596]  systemd-1       1.... 2918164us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.704294]  systemd-1       1.... 2918714us : blk_mq_free_request: complete: rq -1 2
[   17.706961]  systemd-1       1.... 2918718us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.709621]  systemd-1       1.... 2918738us : blk_mq_make_request: make rq -1 2
[   17.712267]  systemd-1       1.... 2918743us : mmc_mq_queue_rq: mmc before issue rq -1 2
[   17.714939]  systemd-1       1.... 2919291us : blk_mq_free_request: complete: rq -1 1
[   17.717591]  systemd-1       1.... 2919296us : mmc_mq_queue_rq: queue rq -1 2, 0
[   17.720234]  systemd-1       1.... 2919316us : blk_mq_make_request: make rq -1 1
[   17.722874]  systemd-1       1.... 2919320us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.725534]  systemd-1       1.n.. 2919867us : blk_mq_free_request: complete: rq -1 2
[   17.728182]  systemd-1       1.n.. 2919871us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.730819]  systemd-1       1.n.. 2919910us : blk_mq_make_request: make rq -1 2
[   17.733444]  systemd-1       1.... 2919953us : mmc_mq_queue_rq: mmc before issue rq -1 2
[   17.736097]  systemd-1       1.... 2920454us : blk_mq_free_request: complete: rq -1 1
[   17.738728]  systemd-1       1.... 2920458us : mmc_mq_queue_rq: queue rq -1 2, 0
[   17.741314]  systemd-1       1.... 2920478us : blk_mq_make_request: make rq -1 1
[   17.743895]  systemd-1       1.n.. 2920483us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.746483]  systemd-1       1.... 2921033us : blk_mq_free_request: complete: rq -1 2
[   17.749086]  systemd-1       1.... 2921038us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.751661]  systemd-1       1.... 2921085us : blk_mq_make_request: make rq -1 2
[   17.754195]  systemd-1       1.... 2921090us : mmc_mq_queue_rq: mmc before issue rq -1 2
[   17.756742]  systemd-1       1.n.. 2921637us : blk_mq_free_request: complete: rq -1 1
[   17.759285]  systemd-1       1.n.. 2921642us : mmc_mq_queue_rq: queue rq -1 2, 0
[   17.761831]  systemd-1       1.n.. 2921681us : blk_mq_make_request: make rq -1 1
[   17.764351]  systemd-1       1.... 2921723us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.766855]  systemd-1       1.... 2922239us : blk_mq_free_request: complete: rq -1 2
[   17.769353]  systemd-1       1.... 2922244us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.771840]  systemd-1       1.n.. 2922265us : blk_mq_make_request: make rq -1 2
[   17.774329]  systemd-1       1.... 2922283us : mmc_mq_queue_rq: mmc before issue rq -1 2
[   17.776819]  systemd-1       1.... 2922849us : blk_mq_free_request: complete: rq -1 1
[   17.779309]  systemd-1       1.... 2922853us : mmc_mq_queue_rq: queue rq -1 2, 0
[   17.781787]  systemd-1       1.... 2922883us : blk_mq_make_request: make rq -1 1
[   17.784272]  systemd-1       1.... 2922887us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.786754]  systemd-1       1.... 2923453us : blk_mq_free_request: complete: rq -1 2
[   17.789236]  systemd-1       1.n.. 2923457us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.791706]  systemd-1       1.... 2923510us : blk_mq_make_request: make rq -1 2
[   17.794183]  systemd-1       1.... 2923514us : mmc_mq_queue_rq: mmc before issue rq -1 2
[   17.796675]  systemd-1       1.... 2924035us : blk_mq_free_request: complete: rq -1 1
[   17.799170]  systemd-1       1.... 2924040us : mmc_mq_queue_rq: queue rq -1 2, 0
[   17.801653]  systemd-1       1.... 2924060us : blk_mq_make_request: make rq -1 1
[   17.804133]  systemd-1       1.n.. 2924065us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.806617]  systemd-1       1.... 2924607us : blk_mq_free_request: complete: rq -1 2
[   17.809111]  systemd-1       1.... 2924611us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.811592]  systemd-1       1.... 2924645us : blk_mq_make_request: make rq -1 2
[   17.814072]  systemd-1       1.... 2924650us : mmc_mq_queue_rq: mmc before issue rq -1 2
[   17.816562]  systemd-1       1.n.. 2925197us : blk_mq_free_request: complete: rq -1 1
[   17.819048]  systemd-1       1.n.. 2925202us : mmc_mq_queue_rq: queue rq -1 2, 0
[   17.821529]  systemd-1       1.... 2925263us : blk_mq_make_request: make rq -1 1
[   17.824010]  systemd-1       1.... 2925268us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.826502]  systemd-1       1.... 2925795us : blk_mq_free_request: complete: rq -1 2
[   17.828989]  systemd-1       1.... 2925799us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.831476]  systemd-1       1.... 2925820us : blk_mq_make_request: make rq -1 2
[   17.833958]  systemd-1       1.... 2925824us : mmc_mq_queue_rq: mmc before issue rq -1 2
[   17.836456]  systemd-1       1.n.. 2926401us : blk_mq_free_request: complete: rq -1 1
[   17.838948]  systemd-1       1.n.. 2926406us : mmc_mq_queue_rq: queue rq -1 2, 0
[   17.841442]  systemd-1       1.... 2926466us : blk_mq_make_request: make rq -1 1
[   17.843925]  systemd-1       1.... 2926471us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.846425]  systemd-1       1.... 2927009us : blk_mq_free_request: complete: rq -1 2
[   17.848918]  systemd-1       1.n.. 2927014us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.851409]  systemd-1       1.n.. 2927082us : blk_mq_make_request: make rq -1 2
[   17.853894]  systemd-1       1.... 2927103us : mmc_mq_queue_rq: mmc before issue rq -1 2
[   17.856395]  systemd-1       1.... 2927610us : blk_mq_free_request: complete: rq -1 1
[   17.858891]  systemd-1       1.... 2927615us : mmc_mq_queue_rq: queue rq -1 2, 0
[   17.861375]  systemd-1       1.... 2927635us : blk_mq_make_request: make rq -1 1
[   17.863853]  systemd-1       1.... 2927689us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.866347]  systemd-1       1.... 2928194us : blk_mq_free_request: complete: rq -1 2
[   17.868844]  systemd-1       1.... 2928198us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.871327]  systemd-1       1.... 2928219us : blk_mq_make_request: make rq -1 2
[   17.873803]  systemd-1       1.... 2928223us : mmc_mq_queue_rq: mmc before issue rq -1 2
[   17.876294]  systemd-1       1.n.. 2928812us : blk_mq_free_request: complete: rq -1 1
[   17.878792]  systemd-1       1.n.. 2928817us : mmc_mq_queue_rq: queue rq -1 2, 0
[   17.881273]  systemd-1       1.n.. 2928857us : blk_mq_make_request: make rq -1 1
[   17.883751]  systemd-1       1.... 2928901us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.886245]  systemd-1       1.n.. 2929396us : blk_mq_free_request: complete: rq -1 2
[   17.888741]  systemd-1       1.n.. 2929400us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.891228]  systemd-1       1.... 2929461us : blk_mq_make_request: make rq -1 2
[   17.893715]  systemd-1       1.... 2929466us : mmc_mq_queue_rq: mmc before issue rq -1 2
[   17.896211]  systemd-1       1.... 2929983us : blk_mq_free_request: complete: rq -1 1
[   17.898702]  systemd-1       1.... 2929988us : mmc_mq_queue_rq: queue rq -1 2, 0
[   17.901185]  systemd-1       1.... 2930008us : blk_mq_make_request: make rq -1 1
[   17.903666]  systemd-1       1.... 2930012us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.906165]  systemd-1       1.n.. 2930587us : blk_mq_free_request: complete: rq -1 2
[   17.908663]  systemd-1       1.n.. 2930592us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.911150]  systemd-1       1.... 2930653us : blk_mq_make_request: make rq -1 2
[   17.913638]  systemd-1       1.... 2930657us : mmc_mq_queue_rq: mmc before issue rq -1 2
[   17.916138]  systemd-1       1.... 2931184us : blk_mq_free_request: complete: rq -1 1
[   17.918639]  systemd-1       1.... 2931189us : mmc_mq_queue_rq: queue rq -1 2, 0
[   17.921131]  systemd-1       1.... 2931257us : blk_mq_make_request: make rq -1 1
[   17.923617]  systemd-1       1.... 2931262us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.926111]  systemd-1       1.... 2931800us : blk_mq_free_request: complete: rq -1 2
[   17.928609]  systemd-1       1.... 2931805us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.931090]  systemd-1       1.... 2931834us : blk_mq_make_request: make rq -1 2
[   17.933572]  systemd-1       1.... 2931838us : mmc_mq_queue_rq: mmc before issue rq -1 2
[   17.936067]  systemd-1       1.... 2932406us : blk_mq_free_request: complete: rq -1 1
[   17.938563]  systemd-1       1.... 2932410us : mmc_mq_queue_rq: queue rq -1 2, 0
[   17.941050]  systemd-1       1.... 2932431us : blk_mq_make_request: make rq -1 1
[   17.943528]  systemd-1       1.... 2932435us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.946021]  systemd-1       1.... 2932995us : blk_mq_free_request: complete: rq -1 2
[   17.948506]  systemd-1       1.... 2932999us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.950986]  systemd-1       1.... 2933020us : blk_mq_make_request: make rq -1 2
[   17.953464]  systemd-1       1.... 2933024us : mmc_mq_queue_rq: mmc before issue rq -1 2
[   17.955957]  systemd-1       1.... 2933574us : blk_mq_free_request: complete: rq -1 1
[   17.958445]  systemd-1       1.... 2933578us : mmc_mq_queue_rq: queue rq -1 2, 0
[   17.960919]  systemd-1       1.... 2933598us : blk_mq_make_request: make rq -1 1
[   17.963392]  systemd-1       1.... 2933603us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.965882]  systemd-1       1.... 2934152us : blk_mq_free_request: complete: rq -1 2
[   17.968366]  systemd-1       1.... 2934156us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.970842]  systemd-1       1.... 2934192us : blk_mq_make_request: make rq -1 2
[   17.973317]  systemd-1       1.... 2934196us : mmc_mq_queue_rq: mmc before issue rq -1 2
[   17.975803]  systemd-1       1.... 2934735us : blk_mq_free_request: complete: rq -1 1
[   17.978280]  systemd-1       1.... 2934740us : mmc_mq_queue_rq: queue rq -1 2, 0
[   17.980751]  systemd-1       1.... 2934749us : blk_mq_make_request: make rq -1 1
[   17.983220]  systemd-1       1.... 2934753us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.985707]  systemd-1       1.... 2935346us : blk_mq_free_request: complete: rq -1 2
[   17.988189]  systemd-1       1.... 2935350us : mmc_mq_queue_rq: queue rq -1 1, 0
[   17.990659] kworker/-79      0.n.. 2935970us : blk_mq_free_request: complete: rq -1 1
[   17.993149]  systemd-1       1.... 2936007us : blk_mq_make_request: make rq -1 1
[   17.995642]  systemd-1       1.... 2936015us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   17.998142]  systemd-1       1.... 2936041us : mmc_mq_queue_rq: queue rq -1 1, 0
[   18.000618] kworker/-79      0.n.. 2936893us : blk_mq_free_request: complete: rq -1 1
[   18.003120]  systemd-1       1.... 2936955us : blk_mq_make_request: make rq -1 1
[   18.005622]  systemd-1       1.... 2936963us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   18.008135]  systemd-1       1.... 2936990us : mmc_mq_queue_rq: queue rq -1 1, 0
[   18.010621]  systemd-1       1.... 2937009us : blk_mq_make_request: make rq -1 2
[   18.013102]  systemd-1       1.... 2937013us : mmc_mq_queue_rq: mmc before issue rq -1 2
[   18.015590]  systemd-1       1.... 2937616us : blk_mq_free_request: complete: rq -1 1
[   18.018085]  systemd-1       1.... 2937621us : mmc_mq_queue_rq: queue rq -1 2, 0
[   18.020571]  systemd-1       1.... 2937641us : blk_mq_make_request: make rq -1 1
[   18.023052]  systemd-1       1.... 2937646us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   18.025545]  systemd-1       1.... 2938214us : blk_mq_free_request: complete: rq -1 2
[   18.028032]  systemd-1       1.... 2938219us : mmc_mq_queue_rq: queue rq -1 1, 0
[   18.030509]  systemd-1       1.... 2938239us : blk_mq_make_request: make rq -1 2
[   18.032983]  systemd-1       1.... 2938244us : mmc_mq_queue_rq: mmc before issue rq -1 2
[   18.035469]  systemd-1       1.... 2938818us : blk_mq_free_request: complete: rq -1 1
[   18.037955]  systemd-1       1.... 2938822us : mmc_mq_queue_rq: queue rq -1 2, 0
[   18.040434]  systemd-1       1.... 2938842us : blk_mq_make_request: make rq -1 1
[   18.042909]  systemd-1       1.... 2938847us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   18.045395]  systemd-1       1.... 2939395us : blk_mq_free_request: complete: rq -1 2
[   18.047878]  systemd-1       1.... 2939402us : mmc_mq_queue_rq: queue rq -1 1, 0
[   18.050359]  systemd-1       1.... 2939422us : blk_mq_make_request: make rq -1 2
[   18.052835]  systemd-1       1.... 2939427us : mmc_mq_queue_rq: mmc before issue rq -1 2
[   18.055334]  systemd-1       1.... 2939972us : blk_mq_free_request: complete: rq -1 1
[   18.057821]  systemd-1       1.... 2939977us : mmc_mq_queue_rq: queue rq -1 2, 0
[   18.060296]  systemd-1       1.... 2939997us : blk_mq_make_request: make rq -1 1
[   18.062767]  systemd-1       1.... 2940001us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   18.065256]  systemd-1       1.... 2940555us : blk_mq_free_request: complete: rq -1 2
[   18.067745]  systemd-1       1.... 2940559us : mmc_mq_queue_rq: queue rq -1 1, 0
[   18.070226]  systemd-1       1.... 2940580us : blk_mq_make_request: make rq -1 2
[   18.072705]  systemd-1       1.... 2940584us : mmc_mq_queue_rq: mmc before issue rq -1 2
[   18.075194]  systemd-1       1.... 2941133us : blk_mq_free_request: complete: rq -1 1
[   18.077682]  systemd-1       1.... 2941137us : mmc_mq_queue_rq: queue rq -1 2, 0
[   18.080158]  systemd-1       1.... 2941167us : blk_mq_make_request: make rq -1 1
[   18.082633]  systemd-1       1.... 2941171us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   18.085128]  systemd-1       1.... 2941738us : blk_mq_free_request: complete: rq -1 2
[   18.087620]  systemd-1       1.... 2941743us : mmc_mq_queue_rq: queue rq -1 1, 0
[   18.090102]  systemd-1       1.... 2941763us : blk_mq_make_request: make rq -1 2
[   18.092579]  systemd-1       1.... 2941767us : mmc_mq_queue_rq: mmc before issue rq -1 2
[   18.095076]  systemd-1       1.... 2942345us : blk_mq_free_request: complete: rq -1 1
[   18.097570]  systemd-1       1.... 2942349us : mmc_mq_queue_rq: queue rq -1 2, 0
[   18.100053]  systemd-1       1.... 2942370us : blk_mq_make_request: make rq -1 1
[   18.102564]  systemd-1       1.... 2942374us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   18.105089]  systemd-1       1.... 2942966us : blk_mq_free_request: complete: rq -1 2
[   18.107614]  systemd-1       1.... 2942971us : mmc_mq_queue_rq: queue rq -1 1, 0
[   18.110092]  systemd-1       1.... 2942991us : blk_mq_make_request: make rq -1 2
[   18.112562]  systemd-1       1.... 2942996us : mmc_mq_queue_rq: mmc before issue rq -1 2
[   18.115033]  systemd-1       1.... 2943543us : blk_mq_free_request: complete: rq -1 1
[   18.117501]  systemd-1       1.... 2943547us : mmc_mq_queue_rq: queue rq -1 2, 0
[   18.119968]  systemd-1       1.... 2943568us : blk_mq_make_request: make rq -1 1
[   18.122438]  systemd-1       1.... 2943572us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   18.124894]  systemd-1       1.... 2944357us : blk_mq_free_request: complete: rq -1 2
[   18.127354]  systemd-1       1.... 2944380us : mmc_mq_queue_rq: queue rq -1 1, 0
[   18.129805]  systemd-1       1.... 2944482us : blk_mq_make_request: make rq -1 2
[   18.132264]  systemd-1       1.... 2944503us : mmc_mq_queue_rq: mmc before issue rq -1 2
[   18.134736]  systemd-1       1.... 2945070us : blk_mq_free_request: complete: rq -1 1
[   18.137205]  systemd-1       1.... 2945093us : mmc_mq_queue_rq: queue rq -1 2, 0
[   18.139668]  systemd-1       1.... 2945193us : blk_mq_make_request: make rq -1 1
[   18.142128]  systemd-1       1.... 2945214us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   18.144592]  systemd-1       1.... 2945860us : blk_mq_free_request: complete: rq -1 2
[   18.147059]  systemd-1       1.... 2945883us : mmc_mq_queue_rq: queue rq -1 1, 0
[   18.149523]  systemd-1       1.... 2945983us : blk_mq_make_request: make rq -1 2
[   18.151983]  systemd-1       1.... 2946004us : mmc_mq_queue_rq: mmc before issue rq -1 2
[   18.154458]  systemd-1       1.... 2946710us : blk_mq_free_request: complete: rq -1 1
[   18.156930]  systemd-1       1.... 2946732us : mmc_mq_queue_rq: queue rq -1 2, 0
[   18.159395]  systemd-1       1.... 2946829us : blk_mq_make_request: make rq -1 1
[   18.161854]  systemd-1       1.... 2946850us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   18.164337]  systemd-1       1.... 2947529us : blk_mq_free_request: complete: rq -1 2
[   18.166813]  systemd-1       1.... 2947551us : mmc_mq_queue_rq: queue rq -1 1, 0
[   18.169284]  systemd-1       1.... 2947647us : blk_mq_make_request: make rq -1 2
[   18.171745]  systemd-1       1.... 2947669us : mmc_mq_queue_rq: mmc before issue rq -1 2
[   18.174223]  systemd-1       1.... 2948299us : blk_mq_free_request: complete: rq -1 1
[   18.176694]  systemd-1       1.... 2948320us : mmc_mq_queue_rq: queue rq -1 2, 0
[   18.179167]  systemd-1       1.... 2948421us : blk_mq_make_request: make rq -1 1
[   18.181638]  systemd-1       1.... 2948441us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   18.184121]  systemd-1       1.... 2949018us : blk_mq_free_request: complete: rq -1 2
[   18.186603]  systemd-1       1.... 2949024us : mmc_mq_queue_rq: queue rq -1 1, 0
[   18.189074]  systemd-1       1.... 2949046us : blk_mq_make_request: make rq -1 2
[   18.191543]  systemd-1       1.... 2949050us : mmc_mq_queue_rq: mmc before issue rq -1 2
[   18.194027]  systemd-1       1.... 2949608us : blk_mq_free_request: complete: rq -1 1
[   18.196507]  systemd-1       1.... 2949613us : mmc_mq_queue_rq: queue rq -1 2, 0
[   18.198975]  systemd-1       1.... 2949636us : blk_mq_make_request: make rq -1 1
[   18.201441]  systemd-1       1.... 2949640us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   18.203927]  systemd-1       1.... 2950187us : blk_mq_free_request: complete: rq -1 2
[   18.206417]  systemd-1       1.... 2950192us : mmc_mq_queue_rq: queue rq -1 1, 0
[   18.208883]  systemd-1       1.... 2950214us : blk_mq_make_request: make rq -1 2
[   18.211361]  systemd-1       1.... 2950219us : mmc_mq_queue_rq: mmc before issue rq -1 2
[   18.213848]  systemd-1       1.... 2950772us : blk_mq_free_request: complete: rq -1 1
[   18.216337]  systemd-1       1.... 2950777us : mmc_mq_queue_rq: queue rq -1 2, 0
[   18.218817]  systemd-1       1.... 2950797us : blk_mq_make_request: make rq -1 1
[   18.221292]  systemd-1       1.... 2950802us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   18.223780]  systemd-1       1.... 2951356us : blk_mq_free_request: complete: rq -1 2
[   18.226265]  systemd-1       1.... 2951361us : mmc_mq_queue_rq: queue rq -1 1, 0
[   18.228742]  systemd-1       1.... 2951393us : blk_mq_make_request: make rq -1 2
[   18.231213]  systemd-1       1.... 2951397us : mmc_mq_queue_rq: mmc before issue rq -1 2
[   18.233702]  systemd-1       1.... 2951981us : blk_mq_free_request: complete: rq -1 1
[   18.236192]  systemd-1       1.... 2951986us : mmc_mq_queue_rq: queue rq -1 2, 0
[   18.238672]  systemd-1       1.... 2952008us : blk_mq_make_request: make rq -1 1
[   18.241142]  systemd-1       1.... 2952013us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   18.243633]  systemd-1       1.... 2952602us : blk_mq_free_request: complete: rq -1 2
[   18.246123]  systemd-1       1.... 2952607us : mmc_mq_queue_rq: queue rq -1 1, 0
[   18.248596]  systemd-1       1.... 2952629us : blk_mq_make_request: make rq -1 2
[   18.251067]  systemd-1       1.... 2952634us : mmc_mq_queue_rq: mmc before issue rq -1 2
[   18.253556]  systemd-1       0.n.. 2953284us : blk_mq_free_request: complete: rq -1 1
[   18.256044]  systemd-1       0.n.. 2953289us : mmc_mq_queue_rq: queue rq -1 2, 0
[   18.258518] kworker/-79      0.n.. 2954207us : blk_mq_free_request: complete: rq -1 2
[   18.261013]  systemd-1       0.n.. 2954724us : blk_mq_make_request: make rq -1 43
[   18.263510]  systemd-1       0.... 2955004us : mmc_mq_queue_rq: mmc before issue rq -1 43
[   18.266018]  systemd-1       0.n.. 2955074us : mmc_mq_queue_rq: queue rq -1 43, 0
[   18.268502]  systemd-1       0.... 2955225us : blk_mq_make_request: make rq -1 44
[   18.270983]  systemd-1       0.n.. 2955230us : mmc_mq_queue_rq: mmc before issue rq -1 44
[   18.273481]  systemd-1       1.... 2955654us : blk_mq_free_request: complete: rq -1 43
[   18.275986]  systemd-1       1.... 2955659us : mmc_mq_queue_rq: queue rq -1 44, 0
[   18.278483]  systemd-1       1.... 2955680us : blk_mq_make_request: make rq -1 2
[   18.280976]  systemd-1       1.... 2955684us : mmc_mq_queue_rq: mmc before issue rq -1 2
[   18.283481]  systemd-1       1.... 2956243us : blk_mq_free_request: complete: rq -1 44
[   18.285983]  systemd-1       1.... 2956248us : mmc_mq_queue_rq: queue rq -1 2, 0
[   18.288475]  systemd-1       1.... 2956268us : blk_mq_make_request: make rq -1 3
[   18.290964]  systemd-1       1.... 2956272us : mmc_mq_queue_rq: mmc before issue rq -1 3
[   18.293473]  systemd-1       1.... 2956836us : blk_mq_free_request: complete: rq -1 2
[   18.295972]  systemd-1       1.... 2956841us : mmc_mq_queue_rq: queue rq -1 3, 0
[   18.298462]  systemd-1       1.... 2956862us : blk_mq_make_request: make rq -1 2
[   18.300942]  systemd-1       1.... 2956866us : mmc_mq_queue_rq: mmc before issue rq -1 2
[   18.303440]  systemd-1       1.... 2957427us : blk_mq_free_request: complete: rq -1 3
[   18.305937]  systemd-1       1.... 2957432us : mmc_mq_queue_rq: queue rq -1 2, 0
[   18.308425]  systemd-1       1.... 2957442us : blk_mq_make_request: make rq -1 3
[   18.310908]  systemd-1       1.... 2957446us : mmc_mq_queue_rq: mmc before issue rq -1 3
[   18.313405]  systemd-1       1.... 2958034us : blk_mq_free_request: complete: rq -1 2
[   18.315899]  systemd-1       1.... 2958039us : mmc_mq_queue_rq: queue rq -1 3, 0
[   18.318381] kworker/-79      0.n.. 2958804us : blk_mq_free_request: complete: rq -1 3
[   18.320886]  systemd-1       1.... 2958850us : blk_mq_make_request: make rq -1 3
[   18.323395]  systemd-1       1.... 2958858us : mmc_mq_queue_rq: mmc before issue rq -1 3
[   18.325908]  systemd-1       1.... 2958888us : mmc_mq_queue_rq: queue rq -1 3, 0
[   18.328396] kworker/-79      0.n.. 2959512us : blk_mq_free_request: complete: rq -1 3
[   18.330905]  systemd-1       1.... 2959566us : blk_mq_make_request: make rq -1 3
[   18.333420]  systemd-1       1.... 2959574us : mmc_mq_queue_rq: mmc before issue rq -1 3
[   18.335941]  systemd-1       1.... 2959601us : mmc_mq_queue_rq: queue rq -1 3, 0
[   18.338440]  systemd-1       1.... 2959619us : blk_mq_make_request: make rq -1 4
[   18.340935]  systemd-1       1.... 2959624us : mmc_mq_queue_rq: mmc before issue rq -1 4
[   18.343447]  systemd-1       1.... 2960216us : blk_mq_free_request: complete: rq -1 3
[   18.345956]  systemd-1       1.... 2960221us : mmc_mq_queue_rq: queue rq -1 4, 0
[   18.348460]  systemd-1       1.... 2960242us : blk_mq_make_request: make rq -1 3
[   18.350957]  systemd-1       1.... 2960246us : mmc_mq_queue_rq: mmc before issue rq -1 3
[   18.353471]  systemd-1       0.n.. 2960856us : blk_mq_free_request: complete: rq -1 4
[   18.355985]  systemd-1       0.n.. 2960860us : mmc_mq_queue_rq: queue rq -1 3, 0
[   18.358486]  systemd-1       0.... 2961173us : blk_mq_make_request: make rq -1 44
[   18.360998]  systemd-1       0.... 2961178us : mmc_mq_queue_rq: mmc before issue rq -1 44
[   18.363522]  systemd-1       0.n.. 2961470us : blk_mq_free_request: complete: rq -1 3
[   18.366043]  systemd-1       0.n.. 2961475us : mmc_mq_queue_rq: queue rq -1 44, 0
[   18.368558]  systemd-1       0.... 2961750us : blk_mq_make_request: make rq -1 45
[   18.371070]  systemd-1       0.n.. 2961763us : mmc_mq_queue_rq: mmc before issue rq -1 45
[   18.373607]  systemd-1       0.n.. 2962238us : blk_mq_free_request: complete: rq -1 44
[   18.376150]  systemd-1       0.n.. 2962243us : mmc_mq_queue_rq: queue rq -1 45, 0
[   18.378674]  systemd-1       0.... 2962357us : blk_mq_make_request: make rq -1 44
[   18.381200]  systemd-1       0.... 2962361us : mmc_mq_queue_rq: mmc before issue rq -1 44
[   18.383730]  systemd-1       1.... 2962809us : blk_mq_free_request: complete: rq -1 45
[   18.386251]  systemd-1       1.... 2962814us : mmc_mq_queue_rq: queue rq -1 44, 0
[   18.388766]  systemd-1       1.... 2962836us : blk_mq_make_request: make rq -1 3
[   18.391289]  systemd-1       1.... 2962841us : mmc_mq_queue_rq: mmc before issue rq -1 3
[   18.393821]  systemd-1       1.... 2963385us : blk_mq_free_request: complete: rq -1 44
[   18.396352]  systemd-1       1.... 2963390us : mmc_mq_queue_rq: queue rq -1 3, 0
[   18.398868]  systemd-1       1.... 2963411us : blk_mq_make_request: make rq -1 4
[   18.401383]  systemd-1       1.... 2963415us : mmc_mq_queue_rq: mmc before issue rq -1 4
[   18.403913]  systemd-1       1.... 2963973us : blk_mq_free_request: complete: rq -1 3
[   18.406440]  systemd-1       1.... 2963977us : mmc_mq_queue_rq: queue rq -1 4, 0
[   18.408953]  systemd-1       1.... 2963997us : blk_mq_make_request: make rq -1 3
[   18.411462]  systemd-1       1.... 2964001us : mmc_mq_queue_rq: mmc before issue rq -1 3
[   18.413994]  systemd-1       1.... 2964592us : blk_mq_free_request: complete: rq -1 4
[   18.416519]  systemd-1       1.... 2964596us : mmc_mq_queue_rq: queue rq -1 3, 0
[   18.419034]  systemd-1       1.... 2964617us : blk_mq_make_request: make rq -1 4
[   18.421548]  systemd-1       1.... 2964621us : mmc_mq_queue_rq: mmc before issue rq -1 4
[   18.424076]  systemd-1       1.... 2965198us : blk_mq_free_request: complete: rq -1 3
[   18.426605]  systemd-1       1.... 2965203us : mmc_mq_queue_rq: queue rq -1 4, 0
[   18.429128]  systemd-1       1.... 2965233us : blk_mq_make_request: make rq -1 3
[   18.431640]  systemd-1       1.... 2965237us : mmc_mq_queue_rq: mmc before issue rq -1 3
[   18.434171]  systemd-1       1.... 2965796us : blk_mq_free_request: complete: rq -1 4
[   18.436699]  systemd-1       1.... 2965800us : mmc_mq_queue_rq: queue rq -1 3, 0
[   18.439219]  systemd-1       1.... 2965820us : blk_mq_make_request: make rq -1 4
[   18.441734]  systemd-1       1.... 2965825us : mmc_mq_queue_rq: mmc before issue rq -1 4
[   18.444243]  systemd-1       1.... 2966408us : blk_mq_free_request: complete: rq -1 3
[   18.446752]  systemd-1       1.... 2966412us : mmc_mq_queue_rq: queue rq -1 4, 0
[   18.449258]  systemd-1       1.... 2966433us : blk_mq_make_request: make rq -1 3
[   18.451769]  systemd-1       1.... 2966439us : mmc_mq_queue_rq: mmc before issue rq -1 3
[   18.454271]  systemd-1       1.... 2966989us : blk_mq_free_request: complete: rq -1 4
[   18.456773]  systemd-1       1.... 2966994us : mmc_mq_queue_rq: queue rq -1 3, 0
[   18.459264]  systemd-1       1.... 2967014us : blk_mq_make_request: make rq -1 4
[   18.461760]  systemd-1       1.... 2967019us : mmc_mq_queue_rq: mmc before issue rq -1 4
[   18.464273]  systemd-1       1.... 2967568us : blk_mq_free_request: complete: rq -1 3
[   18.466774]  systemd-1       1.... 2967572us : mmc_mq_queue_rq: queue rq -1 4, 0
[   18.469278]  systemd-1       1.... 2967592us : blk_mq_make_request: make rq -1 3
[   18.471770]  systemd-1       1.... 2967596us : mmc_mq_queue_rq: mmc before issue rq -1 3
[   18.474276]  systemd-1       1.... 2968145us : blk_mq_free_request: complete: rq -1 4
[   18.476782]  systemd-1       1.... 2968150us : mmc_mq_queue_rq: queue rq -1 3, 0
[   18.479278]  systemd-1       1.... 2968169us : blk_mq_make_request: make rq -1 4
[   18.481770]  systemd-1       1.... 2968173us : mmc_mq_queue_rq: mmc before issue rq -1 4
[   18.484272]  systemd-1       1.... 2968770us : blk_mq_free_request: complete: rq -1 3
[   18.486772]  systemd-1       1.... 2968775us : mmc_mq_queue_rq: queue rq -1 4, 0
[   18.489253]  systemd-1       1.... 2968795us : blk_mq_make_request: make rq -1 3
[   18.491729]  systemd-1       1.... 2968800us : mmc_mq_queue_rq: mmc before issue rq -1 3
[   18.494220]  systemd-1       1.... 2969374us : blk_mq_free_request: complete: rq -1 4
[   18.496704]  systemd-1       1.... 2969378us : mmc_mq_queue_rq: queue rq -1 3, 0
[   18.499177]  systemd-1       1.... 2969398us : blk_mq_make_request: make rq -1 4
[   18.501644]  systemd-1       1.... 2969402us : mmc_mq_queue_rq: mmc before issue rq -1 4
[   18.504124]  systemd-1       1.... 2969994us : blk_mq_free_request: complete: rq -1 3
[   18.506599]  systemd-1       1.... 2969998us : mmc_mq_queue_rq: queue rq -1 4, 0
[   18.509065]  systemd-1       1.... 2970019us : blk_mq_make_request: make rq -1 3
[   18.511529]  systemd-1       1.... 2970023us : mmc_mq_queue_rq: mmc before issue rq -1 3
[   18.514012]  systemd-1       1.... 2970593us : blk_mq_free_request: complete: rq -1 4
[   18.516487]  systemd-1       1.... 2970597us : mmc_mq_queue_rq: queue rq -1 3, 0
[   18.518950]  systemd-1       1.... 2970618us : blk_mq_make_request: make rq -1 4
[   18.521408]  systemd-1       1.... 2970622us : mmc_mq_queue_rq: mmc before issue rq -1 4
[   18.523880]  systemd-1       1.... 2971193us : blk_mq_free_request: complete: rq -1 3
[   18.526354]  systemd-1       1.... 2971197us : mmc_mq_queue_rq: queue rq -1 4, 0
[   18.528818]  systemd-1       1.... 2971217us : blk_mq_make_request: make rq -1 3
[   18.531269]  systemd-1       1.... 2971222us : mmc_mq_queue_rq: mmc before issue rq -1 3
[   18.533743]  systemd-1       0.n.. 2971804us : blk_mq_free_request: complete: rq -1 4
[   18.536218]  systemd-1       0.n.. 2971808us : mmc_mq_queue_rq: queue rq -1 3, 0
[   18.538681]  systemd-1       0.... 2971962us : blk_mq_make_request: make rq -1 44
[   18.541147]  systemd-1       0.n.. 2971976us : mmc_mq_queue_rq: mmc before issue rq -1 44
[   18.543629]  systemd-1       1.... 2972373us : blk_mq_free_request: complete: rq -1 3
[   18.546112]  systemd-1       1.... 2972378us : mmc_mq_queue_rq: queue rq -1 44, 0
[   18.548595]  systemd-1       1.... 2972398us : blk_mq_make_request: make rq -1 3
[   18.551064]  systemd-1       1.... 2972402us : mmc_mq_queue_rq: mmc before issue rq -1 3
[   18.553551]  systemd-1       1.... 2972967us : blk_mq_free_request: complete: rq -1 44
[   18.556035]  systemd-1       1.... 2972972us : mmc_mq_queue_rq: queue rq -1 3, 0
[   18.558517]  systemd-1       1.... 2972993us : blk_mq_make_request: make rq -1 4
[   18.560989]  systemd-1       1.... 2972997us : mmc_mq_queue_rq: mmc before issue rq -1 4
[   18.563474]  systemd-1       1.... 2973548us : blk_mq_free_request: complete: rq -1 3
[   18.565972]  systemd-1       1.... 2973553us : mmc_mq_queue_rq: queue rq -1 4, 0
[   18.568451]  systemd-1       1.... 2973573us : blk_mq_make_request: make rq -1 3
[   18.570926]  systemd-1       1.... 2973578us : mmc_mq_queue_rq: mmc before issue rq -1 3
[   18.573414]  systemd-1       1.... 2974155us : blk_mq_free_request: complete: rq -1 4
[   18.575904]  systemd-1       1.... 2974160us : mmc_mq_queue_rq: queue rq -1 3, 0
[   18.578387]  systemd-1       1.... 2974180us : blk_mq_make_request: make rq -1 4
[   18.580864]  systemd-1       1.... 2974184us : mmc_mq_queue_rq: mmc before issue rq -1 4
[   18.583354]  systemd-1       1.... 2974753us : blk_mq_free_request: complete: rq -1 3
[   18.585840]  systemd-1       1.... 2974758us : mmc_mq_queue_rq: queue rq -1 4, 0
[   18.588320]  systemd-1       1.... 2974787us : blk_mq_make_request: make rq -1 3
[   18.590792]  systemd-1       1.... 2974792us : mmc_mq_queue_rq: mmc before issue rq -1 3
[   18.593280]  systemd-1       1.... 2975360us : blk_mq_free_request: complete: rq -1 4
[   18.595770]  systemd-1       1.... 2975364us : mmc_mq_queue_rq: queue rq -1 3, 0
[   18.598247]  systemd-1       1.... 2975385us : blk_mq_make_request: make rq -1 4
[   18.600718]  systemd-1       1.... 2975389us : mmc_mq_queue_rq: mmc before issue rq -1 4
[   18.603204]  systemd-1       1.... 2975960us : blk_mq_free_request: complete: rq -1 3
[   18.605691]  systemd-1       1.... 2975964us : mmc_mq_queue_rq: queue rq -1 4, 0
[   18.608170]  systemd-1       1.... 2975984us : blk_mq_make_request: make rq -1 3
[   18.610644]  systemd-1       1.... 2975989us : mmc_mq_queue_rq: mmc before issue rq -1 3
[   18.613134]  systemd-1       1.... 2976543us : blk_mq_free_request: complete: rq -1 4
[   18.615623]  systemd-1       1.... 2976548us : mmc_mq_queue_rq: queue rq -1 3, 0
[   18.618099]  systemd-1       1.... 2976567us : blk_mq_make_request: make rq -1 4
[   18.620572]  systemd-1       1.... 2976571us : mmc_mq_queue_rq: mmc before issue rq -1 4
[   18.623061]  systemd-1       0.n.. 2977159us : blk_mq_free_request: complete: rq -1 3
[   18.625553]  systemd-1       0.n.. 2977164us : mmc_mq_queue_rq: queue rq -1 4, 0
[   18.628034]  systemd-1       0.... 2977320us : blk_mq_make_request: make rq -1 44
[   18.630520]  systemd-1       0.n.. 2977333us : mmc_mq_queue_rq: mmc before issue rq -1 44
[   18.633016]  systemd-1       1.... 2977731us : blk_mq_free_request: complete: rq -1 4
[   18.635514]  systemd-1       1.... 2977735us : mmc_mq_queue_rq: queue rq -1 44, 0
[   18.638004]  systemd-1       1.... 2977755us : blk_mq_make_request: make rq -1 4
[   18.640489]  systemd-1       1.... 2977759us : mmc_mq_queue_rq: mmc before issue rq -1 4
[   18.642988]  systemd-1       1.... 2978320us : blk_mq_free_request: complete: rq -1 44
[   18.645489]  systemd-1       1.... 2978325us : mmc_mq_queue_rq: queue rq -1 4, 0
[   18.647978]  systemd-1       1.... 2978334us : blk_mq_make_request: make rq -1 5
[   18.650461]  systemd-1       1.... 2978338us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   18.652960]  systemd-1       1.... 2978926us : blk_mq_free_request: complete: rq -1 4
[   18.655456]  systemd-1       1.... 2978930us : mmc_mq_queue_rq: queue rq -1 5, 0
[   18.657939] kworker/-79      0.n.. 2979597us : blk_mq_free_request: complete: rq -1 5
[   18.660448]  systemd-1       1.... 2979653us : blk_mq_make_request: make rq -1 5
[   18.662951]  systemd-1       1.... 2979661us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   18.665458]  systemd-1       1.... 2979688us : mmc_mq_queue_rq: queue rq -1 5, 0
[   18.667940]  systemd-1       1.... 2979721us : blk_mq_make_request: make rq -1 6
[   18.670418]  systemd-1       1.... 2979725us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   18.672915]  systemd-1       1.... 2980311us : blk_mq_free_request: complete: rq -1 5
[   18.675406]  systemd-1       1.... 2980315us : mmc_mq_queue_rq: queue rq -1 6, 0
[   18.677889]  systemd-1       1.... 2980335us : blk_mq_make_request: make rq -1 5
[   18.680364]  systemd-1       1.... 2980339us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   18.682858]  systemd-1       1.... 2980799us : blk_mq_free_request: complete: rq -1 6
[   18.685342]  systemd-1       1.... 2980804us : mmc_mq_queue_rq: queue rq -1 5, 0
[   18.687823]  systemd-1       1.... 2980825us : blk_mq_make_request: make rq -1 6
[   18.690297]  systemd-1       1.... 2980829us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   18.692791]  systemd-1       1.... 2981402us : blk_mq_free_request: complete: rq -1 5
[   18.695277]  systemd-1       1.... 2981407us : mmc_mq_queue_rq: queue rq -1 6, 0
[   18.697756]  systemd-1       1.... 2981426us : blk_mq_make_request: make rq -1 5
[   18.700231]  systemd-1       1.... 2981431us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   18.702724]  systemd-1       1.... 2982012us : blk_mq_free_request: complete: rq -1 6
[   18.705218]  systemd-1       1.... 2982016us : mmc_mq_queue_rq: queue rq -1 5, 0
[   18.707701]  systemd-1       1.... 2982044us : blk_mq_make_request: make rq -1 6
[   18.710181]  systemd-1       1.... 2982049us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   18.712678]  systemd-1       1.... 2982591us : blk_mq_free_request: complete: rq -1 5
[   18.715172]  systemd-1       1.... 2982596us : mmc_mq_queue_rq: queue rq -1 6, 0
[   18.717655]  systemd-1       1.... 2982616us : blk_mq_make_request: make rq -1 5
[   18.720133]  systemd-1       1.... 2982620us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   18.722628]  systemd-1       1.... 2983183us : blk_mq_free_request: complete: rq -1 6
[   18.725131]  systemd-1       1.... 2983187us : mmc_mq_queue_rq: queue rq -1 5, 0
[   18.727616]  systemd-1       1.... 2983208us : blk_mq_make_request: make rq -1 6
[   18.730094]  systemd-1       1.... 2983212us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   18.732591]  systemd-1       1.... 2983944us : blk_mq_free_request: complete: rq -1 5
[   18.735094]  systemd-1       1.... 2983966us : mmc_mq_queue_rq: queue rq -1 6, 0
[   18.737583]  systemd-1       1.... 2984067us : blk_mq_make_request: make rq -1 5
[   18.740069]  systemd-1       1.... 2984088us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   18.742572]  systemd-1       1.... 2984473us : blk_mq_free_request: complete: rq -1 6
[   18.745071]  systemd-1       1.... 2984478us : mmc_mq_queue_rq: queue rq -1 5, 0
[   18.747558]  systemd-1       1.... 2984511us : blk_mq_make_request: make rq -1 6
[   18.750041]  systemd-1       1.... 2984515us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   18.752534]  systemd-1       1.... 2985075us : blk_mq_free_request: complete: rq -1 5
[   18.755020]  systemd-1       1.... 2985080us : mmc_mq_queue_rq: queue rq -1 6, 0
[   18.757498]  systemd-1       1.... 2985103us : blk_mq_make_request: make rq -1 5
[   18.759967]  systemd-1       1.... 2985108us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   18.762453]  systemd-1       1.... 2985679us : blk_mq_free_request: complete: rq -1 6
[   18.764939]  systemd-1       1.... 2985684us : mmc_mq_queue_rq: queue rq -1 5, 0
[   18.767415]  systemd-1       1.... 2985705us : blk_mq_make_request: make rq -1 6
[   18.769887]  systemd-1       1.... 2985710us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   18.772369]  systemd-1       1.... 2986293us : blk_mq_free_request: complete: rq -1 5
[   18.774859]  systemd-1       1.... 2986299us : mmc_mq_queue_rq: queue rq -1 6, 0
[   18.777339]  systemd-1       1.... 2986320us : blk_mq_make_request: make rq -1 5
[   18.779812]  systemd-1       1.... 2986324us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   18.782279]  systemd-1       0.n.. 2986920us : blk_mq_free_request: complete: rq -1 6
[   18.784745]  systemd-1       0.n.. 2986926us : mmc_mq_queue_rq: queue rq -1 5, 0
[   18.787207]  systemd-1       0.... 2987121us : blk_mq_make_request: make rq -1 44
[   18.789677]  systemd-1       0.... 2987127us : mmc_mq_queue_rq: mmc before issue rq -1 44
[   18.792161]  systemd-1       1.... 2987492us : blk_mq_free_request: complete: rq -1 5
[   18.794648]  systemd-1       1.... 2987497us : mmc_mq_queue_rq: queue rq -1 44, 0
[   18.797123]  systemd-1       1.... 2987520us : blk_mq_make_request: make rq -1 5
[   18.799596]  systemd-1       1.... 2987524us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   18.802081]  systemd-1       1.... 2988077us : blk_mq_free_request: complete: rq -1 44
[   18.804565]  systemd-1       1.... 2988083us : mmc_mq_queue_rq: queue rq -1 5, 0
[   18.807046]  systemd-1       1.... 2988105us : blk_mq_make_request: make rq -1 6
[   18.809525]  systemd-1       1.... 2988109us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   18.812018]  systemd-1       1.... 2988659us : blk_mq_free_request: complete: rq -1 5
[   18.814507]  systemd-1       1.... 2988664us : mmc_mq_queue_rq: queue rq -1 6, 0
[   18.816989]  systemd-1       1.... 2988685us : blk_mq_make_request: make rq -1 5
[   18.819464]  systemd-1       1.... 2988690us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   18.821956]  systemd-1       1.... 2989243us : blk_mq_free_request: complete: rq -1 6
[   18.824446]  systemd-1       1.... 2989248us : mmc_mq_queue_rq: queue rq -1 5, 0
[   18.826924]  systemd-1       1.... 2989271us : blk_mq_make_request: make rq -1 6
[   18.829396]  systemd-1       1.... 2989276us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   18.831884]  systemd-1       1.... 2989844us : blk_mq_free_request: complete: rq -1 5
[   18.834377]  systemd-1       1.... 2989849us : mmc_mq_queue_rq: queue rq -1 6, 0
[   18.836848]  systemd-1       1.... 2989870us : blk_mq_make_request: make rq -1 5
[   18.839324]  systemd-1       1.... 2989874us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   18.841820]  systemd-1       1.... 2990454us : blk_mq_free_request: complete: rq -1 6
[   18.844312]  systemd-1       1.... 2990459us : mmc_mq_queue_rq: queue rq -1 5, 0
[   18.846794]  systemd-1       1.... 2990480us : blk_mq_make_request: make rq -1 6
[   18.849267]  systemd-1       1.... 2990485us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   18.851755]  systemd-1       1.... 2991068us : blk_mq_free_request: complete: rq -1 5
[   18.854241]  systemd-1       1.... 2991073us : mmc_mq_queue_rq: queue rq -1 6, 0
[   18.856720]  systemd-1       1.... 2991094us : blk_mq_make_request: make rq -1 5
[   18.859194]  systemd-1       1.... 2991098us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   18.861683]  systemd-1       1.... 2991683us : blk_mq_free_request: complete: rq -1 6
[   18.864169]  systemd-1       1.... 2991688us : mmc_mq_queue_rq: queue rq -1 5, 0
[   18.866642]  systemd-1       1.... 2991709us : blk_mq_make_request: make rq -1 6
[   18.869106]  systemd-1       1.... 2991713us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   18.871597]  systemd-1       1.... 2992270us : blk_mq_free_request: complete: rq -1 5
[   18.874085]  systemd-1       1.... 2992275us : mmc_mq_queue_rq: queue rq -1 6, 0
[   18.876568]  systemd-1       1.... 2992296us : blk_mq_make_request: make rq -1 5
[   18.879042]  systemd-1       1.... 2992300us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   18.881527]  systemd-1       1.... 2992858us : blk_mq_free_request: complete: rq -1 6
[   18.884017]  systemd-1       1.... 2992863us : mmc_mq_queue_rq: queue rq -1 5, 0
[   18.886493]  systemd-1       1.... 2992886us : blk_mq_make_request: make rq -1 6
[   18.888966]  systemd-1       1.... 2992890us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   18.891453]  systemd-1       1.... 2993442us : blk_mq_free_request: complete: rq -1 5
[   18.893939]  systemd-1       1.... 2993447us : mmc_mq_queue_rq: queue rq -1 6, 0
[   18.896415]  systemd-1       1.... 2993468us : blk_mq_make_request: make rq -1 5
[   18.898892]  systemd-1       1.... 2993473us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   18.901377]  systemd-1       1.... 2994191us : blk_mq_free_request: complete: rq -1 6
[   18.903870]  systemd-1       1.... 2994214us : mmc_mq_queue_rq: queue rq -1 5, 0
[   18.906350]  systemd-1       1.... 2994280us : blk_mq_make_request: make rq -1 6
[   18.908828]  systemd-1       1.... 2994285us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   18.911313]  systemd-1       1.... 2994738us : blk_mq_free_request: complete: rq -1 5
[   18.913797]  systemd-1       1.... 2994742us : mmc_mq_queue_rq: queue rq -1 6, 0
[   18.916270]  systemd-1       1.... 2994762us : blk_mq_make_request: make rq -1 5
[   18.918735]  systemd-1       1.... 2994767us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   18.921215]  systemd-1       0.n.. 2995370us : blk_mq_free_request: complete: rq -1 6
[   18.923696]  systemd-1       0.n.. 2995374us : mmc_mq_queue_rq: queue rq -1 5, 0
[   18.926166]  systemd-1       0.... 2995671us : blk_mq_make_request: make rq -1 44
[   18.928636]  systemd-1       0.... 2995676us : mmc_mq_queue_rq: mmc before issue rq -1 44
[   18.931121]  systemd-1       1.... 2995963us : blk_mq_free_request: complete: rq -1 5
[   18.933595]  systemd-1       1.... 2995968us : mmc_mq_queue_rq: queue rq -1 44, 0
[   18.936074]  systemd-1       1.... 2995987us : blk_mq_make_request: make rq -1 5
[   18.938543]  systemd-1       1.... 2995991us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   18.941036]  systemd-1       1.... 2996536us : blk_mq_free_request: complete: rq -1 44
[   18.943521]  systemd-1       1.... 2996541us : mmc_mq_queue_rq: queue rq -1 5, 0
[   18.945997]  systemd-1       1.... 2996560us : blk_mq_make_request: make rq -1 6
[   18.948469]  systemd-1       1.... 2996564us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   18.950958]  systemd-1       1.... 2997118us : blk_mq_free_request: complete: rq -1 5
[   18.953445]  systemd-1       1.... 2997123us : mmc_mq_queue_rq: queue rq -1 6, 0
[   18.955923]  systemd-1       1.... 2997142us : blk_mq_make_request: make rq -1 5
[   18.958396]  systemd-1       1.... 2997147us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   18.960882]  systemd-1       1.... 2997702us : blk_mq_free_request: complete: rq -1 6
[   18.963367]  systemd-1       1.... 2997707us : mmc_mq_queue_rq: queue rq -1 5, 0
[   18.965838]  systemd-1       1.... 2997726us : blk_mq_make_request: make rq -1 6
[   18.968314]  systemd-1       1.... 2997730us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   18.970801]  systemd-1       1.... 2998292us : blk_mq_free_request: complete: rq -1 5
[   18.973289]  systemd-1       1.... 2998296us : mmc_mq_queue_rq: queue rq -1 6, 0
[   18.975766]  systemd-1       1.... 2998305us : blk_mq_make_request: make rq -1 5
[   18.978244]  systemd-1       1.... 2998309us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   18.980733]  systemd-1       1.... 2998904us : blk_mq_free_request: complete: rq -1 6
[   18.983221]  systemd-1       1.... 2998908us : mmc_mq_queue_rq: queue rq -1 5, 0
[   18.985701] kworker/-79      0.n.. 2999531us : blk_mq_free_request: complete: rq -1 5
[   18.988203]  systemd-1       1.... 2999622us : blk_mq_make_request: make rq -1 5
[   18.990703]  systemd-1       1.... 2999633us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   18.993211]  systemd-1       1.... 2999667us : mmc_mq_queue_rq: queue rq -1 5, 0
[   18.995695]  systemd-1       1.... 2999670us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   18.998226] kworker/-79      0.n.. 3000572us : blk_mq_free_request: complete: rq -1 5
[   19.000780]  systemd-1       1.... 3001365us : blk_mq_make_request: make rq -1 5
[   19.003332]  systemd-1       1.... 3001378us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.005894]  systemd-1       1.... 3001415us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.008438]  systemd-1       1.... 3001418us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.011035] kworker/-79      0.n.. 3002261us : blk_mq_free_request: complete: rq -1 5
[   19.013641]  systemd-1       1.... 3002773us : blk_mq_make_request: make rq -1 5
[   19.016236]  systemd-1       1.... 3002783us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.018847]  systemd-1       1.... 3002817us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.021445]  systemd-1       1.... 3002819us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.024083] kworker/-79      0.n.. 3003520us : blk_mq_free_request: complete: rq -1 5
[   19.026725]  systemd-1       1.... 3004092us : blk_mq_make_request: make rq -1 5
[   19.029368]  systemd-1       1.... 3004103us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.032030]  systemd-1       1.... 3004137us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.034676]  systemd-1       1.... 3004140us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.037365] kworker/-79      0.n.. 3005076us : blk_mq_free_request: complete: rq -1 5
[   19.040061]  systemd-1       1.... 3005837us : blk_mq_make_request: make rq -1 5
[   19.042767]  systemd-1       1.... 3005849us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.045477]  systemd-1       1.... 3005886us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.048165]  systemd-1       1.... 3005889us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.050897] kworker/-79      0.n.. 3006613us : blk_mq_free_request: complete: rq -1 5
[   19.053653]  systemd-1       1.... 3007083us : blk_mq_make_request: make rq -1 5
[   19.056395]  systemd-1       1.... 3007092us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.059147]  systemd-1       1.... 3007125us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.061875] kworker/-79      0.n.. 3008048us : blk_mq_free_request: complete: rq -1 5
[   19.064633]  systemd-1       1.... 3008676us : blk_mq_make_request: make rq -1 5
[   19.067385]  systemd-1       1.... 3008688us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.070141]  systemd-1       1.... 3008769us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.072886]  systemd-1       1.... 3008773us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.075680] kworker/-79      0.n.. 3009603us : blk_mq_free_request: complete: rq -1 5
[   19.078475]  systemd-1       1.... 3010524us : blk_mq_make_request: make rq -1 5
[   19.081269]  systemd-1       1.... 3010535us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.084078]  systemd-1       1.... 3010570us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.086871]  systemd-1       1.... 3010573us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.089708] kworker/-79      0.n.. 3011402us : blk_mq_free_request: complete: rq -1 5
[   19.092555]  systemd-1       1.... 3011784us : blk_mq_make_request: make rq -1 5
[   19.095403]  systemd-1       1.... 3011796us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.098269]  systemd-1       1.... 3011834us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.101113]  systemd-1       1.... 3011836us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.103998] kworker/-79      0.n.. 3012561us : blk_mq_free_request: complete: rq -1 5
[   19.106895]  systemd-1       1.... 3013258us : blk_mq_make_request: make rq -1 5
[   19.109793]  systemd-1       1.... 3013270us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.112704]  systemd-1       1.... 3013304us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.115591]  systemd-1       1.... 3013307us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.118530] kworker/-79      0.n.. 3014187us : blk_mq_free_request: complete: rq -1 5
[   19.121459]  systemd-1       1.... 3015590us : blk_mq_make_request: make rq -1 5
[   19.124387]  systemd-1       1.... 3015602us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.127324]  systemd-1       1.... 3015642us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.130257]  systemd-1       1.... 3015645us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.133214] kworker/-79      0.n.. 3016659us : blk_mq_free_request: complete: rq -1 5
[   19.136150]  systemd-1       1.... 3017788us : blk_mq_make_request: make rq -1 5
[   19.139070]  systemd-1       1.... 3017803us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.141999]  systemd-1       1.... 3017845us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.144921]  systemd-1       1.... 3017848us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.147872] kworker/-79      0.n.. 3018485us : blk_mq_free_request: complete: rq -1 5
[   19.150799]  systemd-1       1.... 3019187us : blk_mq_make_request: make rq -1 5
[   19.153720]  systemd-1       1.... 3019199us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.156650]  systemd-1       1.... 3019236us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.159571]  systemd-1       1.... 3019239us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.162521] kworker/-79      0.n.. 3019882us : blk_mq_free_request: complete: rq -1 5
[   19.165448]  systemd-1       1.... 3021422us : blk_mq_make_request: make rq -1 5
[   19.168370]  systemd-1       1.... 3021436us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.171296]  systemd-1       1.n.. 3021480us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.174220]  systemd-1       1.n.. 3021485us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.177167] kworker/-79      0.n.. 3022343us : blk_mq_free_request: complete: rq -1 5
[   19.180088]  systemd-1       1.... 3023483us : blk_mq_make_request: make rq -1 5
[   19.183003]  systemd-1       1.... 3023496us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.185929]  systemd-1       1.... 3023553us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.188853]  systemd-1       1.... 3023557us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.191799] kworker/-79      0.n.. 3024521us : blk_mq_free_request: complete: rq -1 5
[   19.194724]  systemd-1       1.n.. 3025851us : blk_mq_make_request: make rq -1 5
[   19.197645]  systemd-1       1.... 3025884us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.200572]  systemd-1       1.... 3025969us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.203494]  systemd-1       1.... 3025973us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.206448] kworker/-79      0.n.. 3026622us : blk_mq_free_request: complete: rq -1 5
[   19.209408]  systemd-1       1.... 3028241us : blk_mq_make_request: make rq -1 5
[   19.212373]  systemd-1       1.... 3028253us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.215352]  systemd-1       1.... 3028310us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.218291]  systemd-1       1.... 3028313us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.221239] kworker/-79      0.n.. 3028954us : blk_mq_free_request: complete: rq -1 5
[   19.224196]  systemd-1       1.... 3032821us : blk_mq_make_request: make rq -1 5
[   19.227146]  systemd-1       1.n.. 3032836us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.230125]  systemd-1       1.... 3032890us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.233062]  systemd-1       1.... 3032893us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.236017] kworker/-79      0.n.. 3033855us : blk_mq_free_request: complete: rq -1 5
[   19.238973]  systemd-1       1.... 3036078us : blk_mq_make_request: make rq -1 5
[   19.241927]  systemd-1       1.... 3036087us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.244904]  systemd-1       1.n.. 3036123us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.247842] kworker/-79      0.n.. 3036955us : blk_mq_free_request: complete: rq -1 5
[   19.250766]  systemd-1       1.... 3037600us : blk_mq_make_request: make rq -1 5
[   19.253686]  systemd-1       1.... 3037609us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.256612]  systemd-1       1.n.. 3037682us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.259529] kworker/-79      0.n.. 3038550us : blk_mq_free_request: complete: rq -1 5
[   19.262442]  systemd-1       1.n.. 3049600us : blk_mq_make_request: make rq -1 5
[   19.265320]  systemd-1       1.... 3049652us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.268209]  systemd-1       1.... 3049697us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.271078]  systemd-1       1.n.. 3049702us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.274015] kworker/-79      0.n.. 3050634us : blk_mq_free_request: complete: rq -1 5
[   19.276937]  systemd-1       1.n.. 3051821us : blk_mq_make_request: make rq -1 5
[   19.279823]  systemd-1       1.... 3051848us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.282716]  systemd-1       1.... 3051883us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.285588]  systemd-1       1.... 3051886us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.288519] kworker/-79      0.n.. 3052861us : blk_mq_free_request: complete: rq -1 5
[   19.291442]  systemd-1       1.... 3053853us : blk_mq_make_request: make rq -1 5
[   19.294331]  systemd-1       1.... 3053864us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.297222]  systemd-1       1.... 3053913us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.300096]  systemd-1       1.... 3053916us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.303032] kworker/-79      0.n.. 3054941us : blk_mq_free_request: complete: rq -1 5
[   19.305961]  systemd-1       1.... 3056378us : blk_mq_make_request: make rq -1 5
[   19.308846]  systemd-1       1.... 3056389us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.311744]  systemd-1       1.... 3056439us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.314620]  systemd-1       1.... 3056442us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.317557] kworker/-79      0.n.. 3057095us : blk_mq_free_request: complete: rq -1 5
[   19.320480]  systemd-1       1.n.. 3058910us : blk_mq_make_request: make rq -1 5
[   19.323373]  systemd-1       1.... 3058956us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.326271]  systemd-1       1.... 3058992us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.329147]  systemd-1       1.... 3058995us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.332081] kworker/-79      0.n.. 3059907us : blk_mq_free_request: complete: rq -1 5
[   19.335011]  systemd-1       1.n.. 3062440us : blk_mq_make_request: make rq -1 5
[   19.337901]  systemd-1       1.... 3062466us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.340803]  systemd-1       1.... 3062502us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.343683] kworker/-79      0.n.. 3063246us : blk_mq_free_request: complete: rq -1 5
[   19.346589]  systemd-1       1.... 3063402us : blk_mq_make_request: make rq -1 5
[   19.349470]  systemd-1       1.n.. 3063412us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.352324]  systemd-1       1.... 3063456us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.355164] kworker/-79      0.n.. 3064287us : blk_mq_free_request: complete: rq -1 5
[   19.358025]  systemd-1       1.n.. 3064439us : blk_mq_make_request: make rq -1 5
[   19.360887]  systemd-1       1.... 3064464us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.363744]  systemd-1       1.... 3064543us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.366552] kworker/-79      0.n.. 3065299us : blk_mq_free_request: complete: rq -1 5
[   19.369376]  systemd-1       1.n.. 3067887us : blk_mq_make_request: make rq -1 5
[   19.372196]  systemd-1       1.... 3067913us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.375040]  systemd-1       1.... 3067950us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.377843]  systemd-1       1.... 3067952us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.380656] kworker/-79      0.n.. 3068645us : blk_mq_free_request: complete: rq -1 5
[   19.383482]  systemd-1       1.... 3069641us : blk_mq_make_request: make rq -1 5
[   19.386298]  systemd-1       1.... 3069654us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.389132]  systemd-1       1.n.. 3069687us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.391938]  systemd-1       1.n.. 3069690us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.394789] kworker/-79      0.n.. 3070561us : blk_mq_free_request: complete: rq -1 5
[   19.397655]  systemd-1       1.n.. 3071866us : blk_mq_make_request: make rq -1 5
[   19.400515]  systemd-1       1.... 3071891us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.403381]  systemd-1       1.... 3071928us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.406223]  systemd-1       1.... 3071930us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.409111] kworker/-79      0.n.. 3072938us : blk_mq_free_request: complete: rq -1 5
[   19.412022]  systemd-1       1.n.. 3074459us : blk_mq_make_request: make rq -1 5
[   19.414906]  systemd-1       1.... 3074485us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.417768]  systemd-1       1.... 3074522us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.420615]  systemd-1       1.n.. 3074525us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.423504] kworker/-79      0.n.. 3075285us : blk_mq_free_request: complete: rq -1 5
[   19.426410]  systemd-1       1.... 3078120us : blk_mq_make_request: make rq -1 5
[   19.429294]  systemd-1       1.... 3078133us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.432158]  systemd-1       1.... 3078184us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.435002]  systemd-1       1.... 3078187us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.437889] kworker/-79      0.n.. 3079034us : blk_mq_free_request: complete: rq -1 5
[   19.440793]  systemd-1       1.... 3080195us : blk_mq_make_request: make rq -1 5
[   19.443680]  systemd-1       1.... 3080219us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.446548]  systemd-1       1.... 3080257us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.449387] kworker/-79      0.n.. 3081107us : blk_mq_free_request: complete: rq -1 5
[   19.452247]  systemd-1       1.... 3081408us : blk_mq_make_request: make rq -1 5
[   19.455115]  systemd-1       1.... 3081419us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.457970]  systemd-1       1.n.. 3081489us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.460777]  systemd-1       1.n.. 3081492us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.463631] kworker/-79      0.n.. 3082293us : blk_mq_free_request: complete: rq -1 5
[   19.466486]  systemd-1       1.... 3083161us : blk_mq_make_request: make rq -1 5
[   19.469354]  systemd-1       1.... 3083207us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.472214]  systemd-1       1.... 3083243us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.475020]  systemd-1       1.... 3083246us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.477879] kworker/-79      0.n.. 3084015us : blk_mq_free_request: complete: rq -1 5
[   19.480730]  systemd-1       1.... 3086547us : blk_mq_make_request: make rq -1 5
[   19.483596]  systemd-1       1.... 3086558us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.486460]  systemd-1       1.... 3086608us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.489303] kworker/-79      0.n.. 3087364us : blk_mq_free_request: complete: rq -1 5
[   19.492164]  systemd-1       1.n.. 3096457us : blk_mq_make_request: make rq -1 5
[   19.495031]  systemd-1       1.... 3096508us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.497895]  systemd-1       1.... 3096564us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.500741] kworker/-79      0.n.. 3097451us : blk_mq_free_request: complete: rq -1 5
[   19.503603]  systemd-1       1.... 3106369us : blk_mq_make_request: make rq -1 5
[   19.506475]  systemd-1       1.... 3106380us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.509341]  systemd-1       1.n.. 3106454us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.512192] kworker/-79      0.n.. 3107161us : blk_mq_free_request: complete: rq -1 5
[   19.515057]  systemd-1       1.... 3112665us : blk_mq_make_request: make rq -1 5
[   19.517931]  systemd-1       1.... 3112694us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.520798]  systemd-1       1.... 3112756us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.523612]  systemd-1       1.... 3112759us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.526471] kworker/-79      0.n.. 3113455us : blk_mq_free_request: complete: rq -1 5
[   19.529332]  systemd-1       1.... 3114793us : blk_mq_make_request: make rq -1 5
[   19.532210]  systemd-1       1.... 3114802us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.535077]  systemd-1       1.... 3114852us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.537890] kworker/-79      0.n.. 3115727us : blk_mq_free_request: complete: rq -1 5
[   19.540722]  systemd-1       1.... 3115876us : blk_mq_make_request: make rq -1 5
[   19.543550]  systemd-1       1.... 3115884us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.546396]  systemd-1       1.... 3115931us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.549203] kworker/-79      0.n.. 3116731us : blk_mq_free_request: complete: rq -1 5
[   19.551999]  systemd-1       1.... 3117718us : blk_mq_make_request: make rq -1 5
[   19.554792]  systemd-1       1.... 3117728us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.557586]  systemd-1       1.... 3117780us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.560379]  systemd-1       1.... 3117783us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.563198] kworker/-79      0.n.. 3118703us : blk_mq_free_request: complete: rq -1 5
[   19.565990]  systemd-1       1.n.. 3122117us : blk_mq_make_request: make rq -1 5
[   19.568777]  systemd-1       1.... 3122145us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.571572]  systemd-1       1.n.. 3122185us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.574363]  systemd-1       1.n.. 3122188us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.577177] kworker/-79      0.n.. 3122849us : blk_mq_free_request: complete: rq -1 5
[   19.579966]  systemd-1       1.n.. 3123396us : blk_mq_make_request: make rq -1 5
[   19.582747]  systemd-1       1.... 3123441us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.585540]  systemd-1       1.... 3123476us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.588325]  systemd-1       1.... 3123479us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.591140] kworker/-79      0.n.. 3124144us : blk_mq_free_request: complete: rq -1 5
[   19.593966]  systemd-1       1.... 3126894us : blk_mq_make_request: make rq -1 5
[   19.596787]  systemd-1       1.... 3126942us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.599628]  systemd-1       1.... 3126979us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.602433]  systemd-1       1.... 3126982us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.605255] kworker/-79      0.n.. 3127724us : blk_mq_free_request: complete: rq -1 5
[   19.608088]  systemd-1       1.... 3128466us : blk_mq_make_request: make rq -1 5
[   19.610912]  systemd-1       1.... 3128476us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.613754]  systemd-1       1.n.. 3128511us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.616563]  systemd-1       1.n.. 3128514us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.619389] kworker/-79      0.n.. 3129231us : blk_mq_free_request: complete: rq -1 5
[   19.622216]  systemd-1       1.... 3130635us : blk_mq_make_request: make rq -1 5
[   19.625042]  systemd-1       1.... 3130646us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.627891]  systemd-1       1.n.. 3130720us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.630706]  systemd-1       1.n.. 3130723us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.633568] kworker/-79      0.n.. 3131559us : blk_mq_free_request: complete: rq -1 5
[   19.636433]  systemd-1       1.... 3132690us : blk_mq_make_request: make rq -1 5
[   19.639304]  systemd-1       1.... 3132774us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.642164]  systemd-1       1.... 3132809us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.645009]  systemd-1       1.... 3132812us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.647898] kworker/-79      0.n.. 3133509us : blk_mq_free_request: complete: rq -1 5
[   19.650804]  systemd-1       1.... 3136804us : blk_mq_make_request: make rq -1 5
[   19.653693]  systemd-1       1.... 3136817us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.656591]  systemd-1       1.... 3136869us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.659473]  systemd-1       1.... 3136872us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.662405] kworker/-79      0.n.. 3137814us : blk_mq_free_request: complete: rq -1 5
[   19.665332]  systemd-1       1.n.. 3139033us : blk_mq_make_request: make rq -1 5
[   19.668217]  systemd-1       1.... 3139082us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.671115]  systemd-1       1.... 3139119us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.673983]  systemd-1       1.... 3139122us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.676922] kworker/-79      0.n.. 3139770us : blk_mq_free_request: complete: rq -1 5
[   19.679856]  systemd-1       1.n.. 3141317us : blk_mq_make_request: make rq -1 5
[   19.682780]  systemd-1       1.... 3141364us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.685718]  systemd-1       1.... 3141403us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.688644]  systemd-1       1.... 3141405us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.691613] kworker/-79      0.n.. 3142151us : blk_mq_free_request: complete: rq -1 5
[   19.694582]  systemd-1       1.... 3143159us : blk_mq_make_request: make rq -1 5
[   19.697547]  systemd-1       1.... 3143169us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.700530]  systemd-1       1.n.. 3143204us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.703479]  systemd-1       1.n.. 3143207us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.706437] kworker/-79      0.n.. 3144050us : blk_mq_free_request: complete: rq -1 5
[   19.709406]  systemd-1       1.... 3145105us : blk_mq_make_request: make rq -1 5
[   19.712365]  systemd-1       1.... 3145116us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.715349]  systemd-1       1.... 3145165us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.718296]  systemd-1       1.... 3145168us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.721260] kworker/-79      0.n.. 3146094us : blk_mq_free_request: complete: rq -1 5
[   19.724231]  systemd-1       1.... 3148061us : blk_mq_make_request: make rq -1 5
[   19.727197]  systemd-1       1.... 3148073us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.730182]  systemd-1       1.... 3148123us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.733127]  systemd-1       1.... 3148126us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.736088] kworker/-79      0.n.. 3149212us : blk_mq_free_request: complete: rq -1 5
[   19.739059]  systemd-1       1.... 3150751us : blk_mq_make_request: make rq -1 5
[   19.742022]  systemd-1       1.... 3150762us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.745010]  systemd-1       1.... 3150811us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.747953]  systemd-1       1.... 3150814us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.750910] kworker/-79      0.n.. 3151695us : blk_mq_free_request: complete: rq -1 5
[   19.753873]  systemd-1       1.... 3152596us : blk_mq_make_request: make rq -1 5
[   19.756836]  systemd-1       1.... 3152643us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.759817]  systemd-1       1.... 3152697us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.762759]  systemd-1       1.... 3152700us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.765723] kworker/-79      0.n.. 3153585us : blk_mq_free_request: complete: rq -1 5
[   19.768693]  systemd-1       1.... 3154626us : blk_mq_make_request: make rq -1 5
[   19.771657]  systemd-1       1.... 3154636us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.774635]  systemd-1       1.... 3154685us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.777577]  systemd-1       1.... 3154688us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.780528] kworker/-79      0.n.. 3155763us : blk_mq_free_request: complete: rq -1 5
[   19.783489]  systemd-1       1.n.. 3156613us : blk_mq_make_request: make rq -1 5
[   19.786443]  systemd-1       1.... 3156638us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.789421]  systemd-1       1.... 3156672us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.792357]  systemd-1       1.... 3156675us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.795306] kworker/-79      0.n.. 3157696us : blk_mq_free_request: complete: rq -1 5
[   19.798267]  systemd-1       1.n.. 3158825us : blk_mq_make_request: make rq -1 5
[   19.801216]  systemd-1       1.... 3158852us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.804194]  systemd-1       1.... 3158932us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.807129]  systemd-1       1.... 3158935us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.810082] kworker/-79      0.n.. 3159632us : blk_mq_free_request: complete: rq -1 5
[   19.813048]  systemd-1       1.n.. 3160691us : blk_mq_make_request: make rq -1 5
[   19.815996]  systemd-1       1.... 3160739us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.818962]  systemd-1       1.... 3160773us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.821896]  systemd-1       1.... 3160776us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.824851] kworker/-79      0.n.. 3161537us : blk_mq_free_request: complete: rq -1 5
[   19.827812]  systemd-1       1.... 3162510us : blk_mq_make_request: make rq -1 5
[   19.830762]  systemd-1       1.n.. 3162522us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.833733]  systemd-1       1.... 3162569us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.836668]  systemd-1       1.... 3162572us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.839621] kworker/-79      0.n.. 3163441us : blk_mq_free_request: complete: rq -1 5
[   19.842583]  systemd-1       1.... 3165712us : blk_mq_make_request: make rq -1 5
[   19.845544]  systemd-1       1.... 3165773us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.848518]  systemd-1       1.... 3165813us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.851448]  systemd-1       1.... 3165815us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.854396] kworker/-79      0.n.. 3166788us : blk_mq_free_request: complete: rq -1 5
[   19.857354]  systemd-1       1.n.. 3170165us : blk_mq_make_request: make rq -1 5
[   19.860307]  systemd-1       1.... 3170194us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.863283]  systemd-1       1.... 3170277us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.866228]  systemd-1       1.... 3170280us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.869176] kworker/-79      0.n.. 3171173us : blk_mq_free_request: complete: rq -1 5
[   19.872137]  systemd-1       1.... 3173697us : blk_mq_make_request: make rq -1 5
[   19.875097]  systemd-1       1.... 3173709us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.878079]  systemd-1       1.... 3173759us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.881020]  systemd-1       1.... 3173762us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.883973] kworker/-79      0.n.. 3174770us : blk_mq_free_request: complete: rq -1 5
[   19.886936]  systemd-1       1.... 3176079us : blk_mq_make_request: make rq -1 5
[   19.889891]  systemd-1       1.... 3176125us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.892866]  systemd-1       1.... 3176179us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.895802] kworker/-79      0.n.. 3177279us : blk_mq_free_request: complete: rq -1 5
[   19.898726]  systemd-1       1.n.. 3177478us : blk_mq_make_request: make rq -1 5
[   19.901643]  systemd-1       1.... 3177504us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.904569]  systemd-1       1.... 3177586us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.907489] kworker/-79      0.n.. 3178469us : blk_mq_free_request: complete: rq -1 5
[   19.910406]  systemd-1       1.... 3182156us : blk_mq_make_request: make rq -1 5
[   19.913289]  systemd-1       1.... 3182170us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.916186]  systemd-1       1.n.. 3182245us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.919060]  systemd-1       1.n.. 3182248us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.921994] kworker/-79      0.n.. 3183056us : blk_mq_free_request: complete: rq -1 5
[   19.924917]  systemd-1       1.n.. 3184000us : blk_mq_make_request: make rq -1 5
[   19.927802]  systemd-1       1.... 3184024us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.930697]  systemd-1       1.n.. 3184060us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.933575]  systemd-1       1.n.. 3184063us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.936513] kworker/-79      0.n.. 3184987us : blk_mq_free_request: complete: rq -1 5
[   19.939432]  systemd-1       1.n.. 3186495us : blk_mq_make_request: make rq -1 5
[   19.942314]  systemd-1       1.... 3186521us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.945213]  systemd-1       1.... 3186556us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.948080]  systemd-1       1.... 3186558us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.951016] kworker/-79      0.n.. 3187450us : blk_mq_free_request: complete: rq -1 5
[   19.953939]  systemd-1       1.n.. 3189005us : blk_mq_make_request: make rq -1 5
[   19.956828]  systemd-1       1.... 3189031us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.959726]  systemd-1       1.... 3189067us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.962599]  systemd-1       1.... 3189070us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.965533] kworker/-79      0.n.. 3189706us : blk_mq_free_request: complete: rq -1 5
[   19.968453]  systemd-1       1.... 3190488us : blk_mq_make_request: make rq -1 5
[   19.971340]  systemd-1       1.... 3190498us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.974236]  systemd-1       1.... 3190546us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.977108]  systemd-1       1.... 3190549us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.980032] kworker/-79      0.n.. 3191247us : blk_mq_free_request: complete: rq -1 5
[   19.982952]  systemd-1       1.... 3192167us : blk_mq_make_request: make rq -1 5
[   19.985836]  systemd-1       1.... 3192177us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   19.988725]  systemd-1       1.... 3192226us : mmc_mq_queue_rq: queue rq -1 5, 0
[   19.991597]  systemd-1       1.... 3192229us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   19.994527] kworker/-79      0.n.. 3193137us : blk_mq_free_request: complete: rq -1 5
[   19.997446]  systemd-1       1.... 3197695us : blk_mq_make_request: make rq -1 5
[   20.000328]  systemd-1       1.... 3197707us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.003224]  systemd-1       1.... 3197760us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.006099]  systemd-1       1.... 3197762us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.009033] kworker/-79      0.n.. 3198758us : blk_mq_free_request: complete: rq -1 5
[   20.011953]  systemd-1       1.... 3199955us : blk_mq_make_request: make rq -1 5
[   20.014834]  systemd-1       1.... 3199965us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.017722]  systemd-1       1.... 3200012us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.020592]  systemd-1       1.... 3200015us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.023527] kworker/-79      0.n.. 3200947us : blk_mq_free_request: complete: rq -1 5
[   20.026450]  systemd-1       1.... 3203504us : blk_mq_make_request: make rq -1 5
[   20.029333]  systemd-1       1.... 3203540us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.032226]  systemd-1       1.... 3203578us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.035100]  systemd-1       1.... 3203580us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.038032] kworker/-79      0.n.. 3204632us : blk_mq_free_request: complete: rq -1 5
[   20.040963]  systemd-1       1.... 3205533us : blk_mq_make_request: make rq -1 5
[   20.043892]  systemd-1       1.n.. 3205547us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.046821]  systemd-1       1.... 3205599us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.049743]  systemd-1       1.... 3205602us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.052713] kworker/-79      0.n.. 3206504us : blk_mq_free_request: complete: rq -1 5
[   20.055678]  systemd-1       1.... 3207719us : blk_mq_make_request: make rq -1 5
[   20.058640]  systemd-1       1.n.. 3207731us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.061624]  systemd-1       1.... 3207780us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.064570]  systemd-1       1.... 3207783us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.067526] kworker/-79      0.n.. 3208886us : blk_mq_free_request: complete: rq -1 5
[   20.070498]  systemd-1       1.... 3210197us : blk_mq_make_request: make rq -1 5
[   20.073458]  systemd-1       1.... 3210223us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.076434]  systemd-1       1.... 3210261us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.079379]  systemd-1       1.... 3210264us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.082338] kworker/-79      0.n.. 3211224us : blk_mq_free_request: complete: rq -1 5
[   20.085305]  systemd-1       1.... 3212491us : blk_mq_make_request: make rq -1 5
[   20.088265]  systemd-1       1.... 3212503us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.091249]  systemd-1       1.n.. 3212575us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.094199]  systemd-1       1.n.. 3212578us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.097158] kworker/-79      0.n.. 3213213us : blk_mq_free_request: complete: rq -1 5
[   20.100123]  systemd-1       1.... 3214658us : blk_mq_make_request: make rq -1 5
[   20.103083]  systemd-1       1.... 3214669us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.106065]  systemd-1       1.n.. 3214709us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.109004]  systemd-1       1.n.. 3214711us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.111964] kworker/-79      0.n.. 3215652us : blk_mq_free_request: complete: rq -1 5
[   20.114928]  systemd-1       1.... 3216765us : blk_mq_make_request: make rq -1 5
[   20.117890]  systemd-1       1.... 3216813us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.120872]  systemd-1       1.... 3216865us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.123817]  systemd-1       1.... 3216868us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.126774] kworker/-79      0.n.. 3217927us : blk_mq_free_request: complete: rq -1 5
[   20.129739]  systemd-1       1.... 3218901us : blk_mq_make_request: make rq -1 5
[   20.132699]  systemd-1       1.n.. 3218948us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.135683]  systemd-1       1.... 3218998us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.138624]  systemd-1       1.... 3219001us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.141597] kworker/-79      0.n.. 3219816us : blk_mq_free_request: complete: rq -1 5
[   20.144568]  systemd-1       1.... 3220411us : blk_mq_make_request: make rq -1 5
[   20.147530]  systemd-1       1.... 3220421us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.150508]  systemd-1       1.... 3220469us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.153452]  systemd-1       1.... 3220471us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.156410] kworker/-79      0.n.. 3221266us : blk_mq_free_request: complete: rq -1 5
[   20.159375]  systemd-1       1.... 3222046us : blk_mq_make_request: make rq -1 5
[   20.162334]  systemd-1       1.... 3222094us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.165314]  systemd-1       1.... 3222145us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.168253]  systemd-1       1.... 3222148us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.171208] kworker/-79      0.n.. 3222905us : blk_mq_free_request: complete: rq -1 5
[   20.174176]  systemd-1       1.... 3223518us : blk_mq_make_request: make rq -1 5
[   20.177134]  systemd-1       1.... 3223565us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.180112]  systemd-1       1.... 3223614us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.183050]  systemd-1       1.... 3223617us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.186001] kworker/-79      0.n.. 3224249us : blk_mq_free_request: complete: rq -1 5
[   20.188959]  systemd-1       1.... 3225644us : blk_mq_make_request: make rq -1 5
[   20.191914]  systemd-1       1.... 3225656us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.194887]  systemd-1       1.... 3225705us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.197822]  systemd-1       1.... 3225708us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.200775] kworker/-79      0.n.. 3226341us : blk_mq_free_request: complete: rq -1 5
[   20.203734]  systemd-1       1.... 3227578us : blk_mq_make_request: make rq -1 5
[   20.206687]  systemd-1       1.... 3227589us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.209658]  systemd-1       1.... 3227641us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.212596]  systemd-1       1.... 3227644us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.215549] kworker/-79      0.n.. 3228514us : blk_mq_free_request: complete: rq -1 5
[   20.218503]  systemd-1       1.n.. 3229931us : blk_mq_make_request: make rq -1 5
[   20.221444]  systemd-1       1.... 3229958us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.224416]  systemd-1       1.... 3229994us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.227352]  systemd-1       1.n.. 3229997us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.230303] kworker/-79      0.n.. 3230652us : blk_mq_free_request: complete: rq -1 5
[   20.233260]  systemd-1       1.... 3231850us : blk_mq_make_request: make rq -1 5
[   20.236215]  systemd-1       1.... 3231876us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.239191]  systemd-1       1.... 3231910us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.242133]  systemd-1       1.... 3231913us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.245085] kworker/-79      0.n.. 3232564us : blk_mq_free_request: complete: rq -1 5
[   20.248043]  systemd-1       1.... 3233990us : blk_mq_make_request: make rq -1 5
[   20.250998]  systemd-1       1.... 3234002us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.253969]  systemd-1       1.... 3234054us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.256913]  systemd-1       1.... 3234057us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.259866] kworker/-79      0.n.. 3234752us : blk_mq_free_request: complete: rq -1 5
[   20.262826]  systemd-1       1.n.. 3235950us : blk_mq_make_request: make rq -1 5
[   20.265778]  systemd-1       1.... 3236008us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.268753]  systemd-1       1.... 3236047us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.271694]  systemd-1       1.... 3236050us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.274647] kworker/-79      0.n.. 3236849us : blk_mq_free_request: complete: rq -1 5
[   20.277609]  systemd-1       1.n.. 3238249us : blk_mq_make_request: make rq -1 5
[   20.280560]  systemd-1       1.... 3238305us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.283539]  systemd-1       1.... 3238340us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.286477]  systemd-1       1.... 3238343us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.289427] kworker/-79      0.n.. 3239015us : blk_mq_free_request: complete: rq -1 5
[   20.292381]  systemd-1       1.... 3240527us : blk_mq_make_request: make rq -1 5
[   20.295338]  systemd-1       1.... 3240539us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.298309]  systemd-1       1.... 3240589us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.301241]  systemd-1       1.... 3240592us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.304190] kworker/-79      0.n.. 3241410us : blk_mq_free_request: complete: rq -1 5
[   20.307153]  systemd-1       1.... 3242667us : blk_mq_make_request: make rq -1 5
[   20.310106]  systemd-1       1.... 3242714us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.313088]  systemd-1       1.... 3242766us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.316027]  systemd-1       1.... 3242769us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.318980] kworker/-79      0.n.. 3243586us : blk_mq_free_request: complete: rq -1 5
[   20.321940]  systemd-1       1.... 3244939us : blk_mq_make_request: make rq -1 5
[   20.324895]  systemd-1       1.... 3244950us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.327870]  systemd-1       1.... 3245001us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.330811]  systemd-1       1.... 3245003us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.333762] kworker/-79      0.n.. 3245773us : blk_mq_free_request: complete: rq -1 5
[   20.336719]  systemd-1       1.... 3247054us : blk_mq_make_request: make rq -1 5
[   20.339668]  systemd-1       1.... 3247065us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.342638]  systemd-1       1.n.. 3247135us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.345572]  systemd-1       1.n.. 3247139us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.348525] kworker/-79      0.n.. 3247739us : blk_mq_free_request: complete: rq -1 5
[   20.351477]  systemd-1       1.n.. 3248951us : blk_mq_make_request: make rq -1 5
[   20.354423]  systemd-1       1.... 3248977us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.357388]  systemd-1       1.... 3249012us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.360316]  systemd-1       1.... 3249014us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.363263] kworker/-79      0.n.. 3249644us : blk_mq_free_request: complete: rq -1 5
[   20.366209]  systemd-1       1.n.. 3250532us : blk_mq_make_request: make rq -1 5
[   20.369161]  systemd-1       1.... 3250556us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.372130]  systemd-1       1.... 3250589us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.375063]  systemd-1       1.... 3250592us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.378008] kworker/-79      0.n.. 3251253us : blk_mq_free_request: complete: rq -1 5
[   20.380961]  systemd-1       1.... 3252094us : blk_mq_make_request: make rq -1 5
[   20.383915]  systemd-1       1.... 3252119us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.386889]  systemd-1       1.... 3252154us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.389822]  systemd-1       1.... 3252156us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.392764] kworker/-79      0.n.. 3252977us : blk_mq_free_request: complete: rq -1 5
[   20.395720]  systemd-1       1.n.. 3254134us : blk_mq_make_request: make rq -1 5
[   20.398656]  systemd-1       1.... 3254190us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.401622]  systemd-1       1.... 3254225us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.404555]  systemd-1       1.... 3254228us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.407504] kworker/-79      0.n.. 3254904us : blk_mq_free_request: complete: rq -1 5
[   20.410467]  systemd-1       1.... 3256579us : blk_mq_make_request: make rq -1 5
[   20.413418]  systemd-1       1.... 3256590us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.416389]  systemd-1       1.... 3256641us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.419320]  systemd-1       1.... 3256644us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.422273] kworker/-79      0.n.. 3257299us : blk_mq_free_request: complete: rq -1 5
[   20.425229]  systemd-1       1.... 3257921us : blk_mq_make_request: make rq -1 5
[   20.428178]  systemd-1       1.... 3257931us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.431149]  systemd-1       1.n.. 3257965us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.434083]  systemd-1       1.n.. 3257967us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.437035] kworker/-79      0.n.. 3258871us : blk_mq_free_request: complete: rq -1 5
[   20.439988]  systemd-1       1.... 3260224us : blk_mq_make_request: make rq -1 5
[   20.442937]  systemd-1       1.... 3260234us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.445910]  systemd-1       1.n.. 3260271us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.448844]  systemd-1       1.n.. 3260273us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.451787] kworker/-79      0.n.. 3260899us : blk_mq_free_request: complete: rq -1 5
[   20.454740]  systemd-1       1.n.. 3262620us : blk_mq_make_request: make rq -1 5
[   20.457682]  systemd-1       1.... 3262681us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.460650]  systemd-1       1.... 3262752us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.463581] kworker/-79      0.n.. 3263723us : blk_mq_free_request: complete: rq -1 5
[   20.466500]  systemd-1       1.... 3264593us : blk_mq_make_request: make rq -1 5
[   20.469412]  systemd-1       1.... 3264617us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.472331]  systemd-1       1.... 3264652us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.475244]  systemd-1       1.... 3264655us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.478187] kworker/-79      0.n.. 3265436us : blk_mq_free_request: complete: rq -1 5
[   20.481106]  systemd-1       1.n.. 3266636us : blk_mq_make_request: make rq -1 5
[   20.484020]  systemd-1       1.... 3266695us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.486939]  systemd-1       1.... 3266732us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.489854]  systemd-1       1.... 3266735us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.492797] kworker/-79      0.n.. 3267369us : blk_mq_free_request: complete: rq -1 5
[   20.495716]  systemd-1       1.n.. 3269395us : blk_mq_make_request: make rq -1 5
[   20.498633]  systemd-1       1.... 3269422us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.501559]  systemd-1       1.... 3269461us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.504477]  systemd-1       1.n.. 3269465us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.507427] kworker/-79      0.n.. 3270199us : blk_mq_free_request: complete: rq -1 5
[   20.510356]  systemd-1       1.... 3271308us : blk_mq_make_request: make rq -1 5
[   20.513275]  systemd-1       1.... 3271319us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.516200]  systemd-1       1.n.. 3271357us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.519121]  systemd-1       1.n.. 3271359us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.522066] kworker/-79      0.n.. 3272109us : blk_mq_free_request: complete: rq -1 5
[   20.524987]  systemd-1       1.... 3273709us : blk_mq_make_request: make rq -1 5
[   20.527898]  systemd-1       1.... 3273722us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.530825]  systemd-1       1.n.. 3273799us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.533746]  systemd-1       1.n.. 3273802us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.536694] kworker/-79      0.n.. 3274509us : blk_mq_free_request: complete: rq -1 5
[   20.539617]  systemd-1       1.... 3275734us : blk_mq_make_request: make rq -1 5
[   20.542534]  systemd-1       1.... 3275743us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.545463]  systemd-1       1.... 3275776us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.548384] kworker/-79      0.n.. 3276619us : blk_mq_free_request: complete: rq -1 5
[   20.551299]  systemd-1       1.... 3276853us : blk_mq_make_request: make rq -1 5
[   20.554177]  systemd-1       1.... 3276901us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.557069]  systemd-1       1.... 3276950us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.559929] kworker/-79      0.n.. 3277948us : blk_mq_free_request: complete: rq -1 5
[   20.562828]  systemd-1       1.... 3280916us : blk_mq_make_request: make rq -1 5
[   20.565709]  systemd-1       1.... 3280929us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.568564]  systemd-1       1.... 3280983us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.571397]  systemd-1       1.... 3280986us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.574281] kworker/-79      0.n.. 3281848us : blk_mq_free_request: complete: rq -1 5
[   20.577181]  systemd-1       1.n.. 3283543us : blk_mq_make_request: make rq -1 5
[   20.580061]  systemd-1       1.... 3283603us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.582919]  systemd-1       1.... 3283640us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.585753]  systemd-1       1.... 3283643us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.588633] kworker/-79      0.n.. 3284315us : blk_mq_free_request: complete: rq -1 5
[   20.591534]  systemd-1       1.... 3285080us : blk_mq_make_request: make rq -1 5
[   20.594412]  systemd-1       1.... 3285134us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.597270]  systemd-1       1.... 3285170us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.600114]  systemd-1       1.... 3285173us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.602997] kworker/-79      0.n.. 3285990us : blk_mq_free_request: complete: rq -1 5
[   20.605900]  systemd-1       1.... 3287283us : blk_mq_make_request: make rq -1 5
[   20.608782]  systemd-1       1.... 3287293us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.611674]  systemd-1       1.... 3287344us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.614543]  systemd-1       1.... 3287346us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.617475] kworker/-79      0.n.. 3288145us : blk_mq_free_request: complete: rq -1 5
[   20.620391]  systemd-1       1.... 3289681us : blk_mq_make_request: make rq -1 5
[   20.623274]  systemd-1       1.... 3289740us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.626169]  systemd-1       1.... 3289778us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.629041]  systemd-1       1.... 3289781us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.631973] kworker/-79      0.n.. 3290647us : blk_mq_free_request: complete: rq -1 5
[   20.634899]  systemd-1       1.n.. 3292952us : blk_mq_make_request: make rq -1 5
[   20.637784]  systemd-1       1.... 3292983us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.640684]  systemd-1       1.... 3293058us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.643560]  systemd-1       1.... 3293061us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.646496] kworker/-79      0.n.. 3293775us : blk_mq_free_request: complete: rq -1 5
[   20.649417]  systemd-1       1.... 3294892us : blk_mq_make_request: make rq -1 5
[   20.652301]  systemd-1       1.... 3294951us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.655197]  systemd-1       1.... 3294988us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.658073]  systemd-1       1.... 3294991us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.661005] kworker/-79      0.n.. 3295667us : blk_mq_free_request: complete: rq -1 5
[   20.663929]  systemd-1       1.... 3296940us : blk_mq_make_request: make rq -1 5
[   20.666818]  systemd-1       1.... 3296953us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.669716]  systemd-1       1.... 3296989us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.672586]  systemd-1       1.n.. 3296993us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.675524] kworker/-79      0.n.. 3297753us : blk_mq_free_request: complete: rq -1 5
[   20.678447]  systemd-1       1.n.. 3298605us : blk_mq_make_request: make rq -1 5
[   20.681336]  systemd-1       1.... 3298629us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.684233]  systemd-1       1.... 3298663us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.687107]  systemd-1       1.n.. 3298667us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.690041] kworker/-79      0.n.. 3299399us : blk_mq_free_request: complete: rq -1 5
[   20.692969]  systemd-1       1.... 3300685us : blk_mq_make_request: make rq -1 5
[   20.695894]  systemd-1       1.... 3300760us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.698826]  systemd-1       1.... 3300799us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.701755]  systemd-1       1.... 3300802us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.704712] kworker/-79      0.n.. 3301499us : blk_mq_free_request: complete: rq -1 5
[   20.707677]  systemd-1       1.... 3303162us : blk_mq_make_request: make rq -1 5
[   20.710638]  systemd-1       1.... 3303174us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.713624]  systemd-1       1.... 3303223us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.716568]  systemd-1       1.... 3303226us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.719533] kworker/-79      0.n.. 3303878us : blk_mq_free_request: complete: rq -1 5
[   20.722505]  systemd-1       1.... 3304681us : blk_mq_make_request: make rq -1 5
[   20.725468]  systemd-1       1.... 3304692us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.728453]  systemd-1       1.... 3304774us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.731402]  systemd-1       1.... 3304777us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.734369] kworker/-79      0.n.. 3305398us : blk_mq_free_request: complete: rq -1 5
[   20.737341]  systemd-1       1.... 3401035us : blk_mq_make_request: make rq -1 5
[   20.740309]  systemd-1       1.... 3401056us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.743300]  systemd-1       1.... 3401114us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.746250] kworker/-79      0.n.. 3404922us : blk_mq_free_request: complete: rq -1 5
[   20.749189]  systemd-1       1.... 3405087us : blk_mq_make_request: make rq -1 5
[   20.752121]  systemd-1       1.... 3405095us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.755062]  systemd-1       1.... 3405127us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.757993] kworker/-79      0.n.. 3406119us : blk_mq_free_request: complete: rq -1 5
[   20.760925]  systemd-1       1.... 3422196us : blk_mq_make_request: make rq -1 5
[   20.763819]  systemd-1       1.... 3422235us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.766730]  systemd-1       1.n.. 3422299us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.769614] kworker/-79      0.n.. 3423037us : blk_mq_free_request: complete: rq -1 5
[   20.772530]  systemd-1       1.... 3423339us : blk_mq_make_request: make rq -1 5
[   20.775425]  systemd-1       1.... 3423350us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.778295]  systemd-1       1.... 3423418us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.781142] kworker/-79      0.n.. 3424037us : blk_mq_free_request: complete: rq -1 5
[   20.784009] systemd--120     1.n.. 3450184us : blk_mq_make_request: make rq -1 5
[   20.786884] systemd--120     1.... 3450224us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.789754] systemd--120     1.... 3450359us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.792570] systemd--120     1.... 3450362us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.795430] kworker/-79      0.n.. 3451742us : blk_mq_free_request: complete: rq -1 5
[   20.798300] systemd--119     0.... 3480935us : blk_mq_make_request: make rq -1 44
[   20.801172] systemd--119     0.... 3480972us : mmc_mq_queue_rq: mmc before issue rq -1 44
[   20.804045] systemd--119     0.... 3481101us : mmc_mq_queue_rq: queue rq -1 44, 0
[   20.806863] systemd--119     0.... 3481104us : blk_mq_try_issue_list_directly: issue direct: rq -1 44, ret 0
[   20.809727] kworker/-79      0.... 3482366us : blk_mq_free_request: complete: rq -1 44
[   20.812602] systemd--119     0.... 3483901us : blk_mq_make_request: make rq -1 44
[   20.815483] systemd--119     0.... 3483922us : mmc_mq_queue_rq: mmc before issue rq -1 44
[   20.818355] systemd--119     0.... 3484290us : mmc_mq_queue_rq: queue rq -1 44, 0
[   20.821180] systemd--119     0.... 3484294us : blk_mq_try_issue_list_directly: issue direct: rq -1 44, ret 0
[   20.824054]    mount-121     1.... 3484362us : blk_mq_make_request: make rq -1 5
[   20.826928]    mount-121     1.... 3484369us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.829824]    mount-121     1.n.. 3490491us : blk_mq_free_request: complete: rq -1 44
[   20.832698]    mount-121     1.n.. 3490503us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.835536] kworker/-79      0.n.. 3491079us : blk_mq_free_request: complete: rq -1 5
[   20.838387]    mount-121     1.n.. 3491500us : blk_mq_make_request: make rq -1 5
[   20.841237]    mount-121     1.... 3491716us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.844109]    mount-121     1.... 3491984us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.846940]    mount-121     1.... 3491988us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.849785] kworker/-79      0.n.. 3493837us : blk_mq_free_request: complete: rq -1 5
[   20.852638]    mount-121     1.n.. 3496955us : blk_mq_make_request: make rq -1 5
[   20.855489]    mount-121     1.... 3497294us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.858361]    mount-121     1.... 3497518us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.861197]    mount-121     1.... 3497521us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.864050] kworker/-79      0.n.. 3498578us : blk_mq_free_request: complete: rq -1 5
[   20.866915] systemd--120     1.n.. 3501418us : blk_mq_make_request: make rq -1 5
[   20.869778] systemd--120     1.... 3501526us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.872663] systemd--120     1.... 3501572us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.875510] systemd--120     1.... 3501575us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.878368] kworker/-79      0.n.. 3502584us : blk_mq_free_request: complete: rq -1 5
[   20.881233] systemd--120     1.... 3503531us : blk_mq_make_request: make rq -1 5
[   20.884097] systemd--120     1.... 3503545us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.886983] systemd--120     1.... 3503600us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.889835] systemd--120     1.... 3503603us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.892730] kworker/-79      0.n.. 3504311us : blk_mq_free_request: complete: rq -1 5
[   20.895639] systemd--119     0.n.. 3509186us : blk_mq_make_request: make rq -1 44
[   20.898551] systemd--119     0.n.. 3509723us : mmc_mq_queue_rq: mmc before issue rq -1 44
[   20.901463] systemd--119     0.n.. 3509854us : mmc_mq_queue_rq: queue rq -1 44, 0
[   20.904355] systemd--119     0.n.. 3509870us : blk_mq_try_issue_list_directly: issue direct: rq -1 44, ret 0
[   20.907294]    mount-121     1.... 3510819us : blk_mq_make_request: make rq -1 5
[   20.910248]    mount-121     1.... 3510828us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.913197]    mount-121     1.n.. 3510905us : blk_mq_free_request: complete: rq -1 44
[   20.916151]    mount-121     1.n.. 3510912us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.919093] kworker/-79      0.n.. 3511580us : blk_mq_free_request: complete: rq -1 5
[   20.922067] systemd--119     1.... 3534728us : blk_mq_make_request: make rq -1 5
[   20.925027] systemd--119     1.... 3534754us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.927994] systemd--119     1.... 3534832us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.930932] systemd--119     1.... 3534834us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   20.933935] kworker/-79      0.n.. 3535627us : blk_mq_free_request: complete: rq -1 5
[   20.936923] systemd--119     1.n.. 3539131us : blk_mq_make_request: make rq -1 5
[   20.939876] systemd--119     1.... 3539185us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.942838] systemd--119     1.... 3539235us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.945776] systemd--119     1.... 3539257us : blk_mq_make_request: make rq -1 6
[   20.948714] systemd--119     1.n.. 3539262us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   20.951646] systemd--119     1.... 3539934us : blk_mq_free_request: complete: rq -1 5
[   20.954546] systemd--119     1.... 3539940us : mmc_mq_queue_rq: queue rq -1 6, 0
[   20.957442] systemd--119     1.... 3539974us : blk_mq_make_request: make rq -1 5
[   20.960323] systemd--119     1.... 3539978us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.963222] systemd--119     1.... 3540417us : blk_mq_free_request: complete: rq -1 6
[   20.966105] systemd--119     1.... 3540421us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.968948] systemd--119     1.... 3540441us : blk_mq_make_request: make rq -1 6
[   20.971782] systemd--119     1.... 3540445us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   20.974616] systemd--119     1.... 3540902us : blk_mq_free_request: complete: rq -1 5
[   20.977450] systemd--119     1.n.. 3540907us : mmc_mq_queue_rq: queue rq -1 6, 0
[   20.980265] systemd--119     1.... 3540975us : blk_mq_make_request: make rq -1 5
[   20.983077] systemd--119     1.... 3540979us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   20.985887] systemd--119     1.... 3541381us : blk_mq_free_request: complete: rq -1 6
[   20.988709] systemd--119     1.... 3541386us : mmc_mq_queue_rq: queue rq -1 5, 0
[   20.991505] systemd--119     1.n.. 3541404us : blk_mq_make_request: make rq -1 6
[   20.994255] systemd--119     1.... 3541440us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   20.997021] systemd--119     1.n.. 3541868us : blk_mq_free_request: complete: rq -1 5
[   20.999783] systemd--119     1.n.. 3541873us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.002548] systemd--119     1.... 3541908us : blk_mq_make_request: make rq -1 5
[   21.005296] systemd--119     1.... 3541912us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   21.008018] systemd--119     1.... 3542351us : blk_mq_free_request: complete: rq -1 6
[   21.010734] systemd--119     1.... 3542356us : mmc_mq_queue_rq: queue rq -1 5, 0
[   21.013442] systemd--119     1.... 3542375us : blk_mq_make_request: make rq -1 6
[   21.016155] systemd--119     1.... 3542379us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.018853] systemd--119     1.n.. 3542836us : blk_mq_free_request: complete: rq -1 5
[   21.021523] systemd--119     1.n.. 3542841us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.024178] systemd--119     1.n.. 3542876us : blk_mq_make_request: make rq -1 5
[   21.026823] systemd--119     1.... 3542913us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   21.029495] systemd--119     1.... 3543451us : blk_mq_free_request: complete: rq -1 6
[   21.032150] systemd--119     1.... 3543455us : mmc_mq_queue_rq: queue rq -1 5, 0
[   21.034763] systemd--119     1.... 3543474us : blk_mq_make_request: make rq -1 6
[   21.037370] systemd--119     1.... 3543478us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.039982] systemd--119     1.... 3544067us : blk_mq_free_request: complete: rq -1 5
[   21.042594] systemd--119     1.... 3544071us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.045187] systemd--119     1.n.. 3544136us : blk_mq_make_request: make rq -1 5
[   21.047744] systemd--119     1.... 3544156us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   21.050304] systemd--119     1.... 3544551us : blk_mq_free_request: complete: rq -1 6
[   21.052870] systemd--119     1.... 3544555us : mmc_mq_queue_rq: queue rq -1 5, 0
[   21.055420] systemd--119     1.... 3544574us : blk_mq_make_request: make rq -1 6
[   21.057948] systemd--119     1.... 3544578us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.060476] systemd--119     1.... 3545049us : blk_mq_free_request: complete: rq -1 5
[   21.063009] systemd--119     1.... 3545054us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.065547] systemd--119     1.... 3545073us : blk_mq_make_request: make rq -1 5
[   21.068059] systemd--119     1.... 3545077us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   21.070545] systemd--119     1.n.. 3545532us : blk_mq_free_request: complete: rq -1 6
[   21.073030] systemd--119     1.n.. 3545536us : mmc_mq_queue_rq: queue rq -1 5, 0
[   21.075511] systemd--119     1.... 3545566us : blk_mq_make_request: make rq -1 6
[   21.077995] systemd--119     1.... 3545570us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.080494] systemd--119     1.n.. 3546020us : blk_mq_free_request: complete: rq -1 5
[   21.082993] systemd--119     1.n.. 3546025us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.085479] systemd--119     1.... 3546059us : blk_mq_make_request: make rq -1 5
[   21.087961] systemd--119     1.... 3546063us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   21.090460] systemd--119     1.... 3546509us : blk_mq_free_request: complete: rq -1 6
[   21.092958] systemd--119     1.... 3546513us : mmc_mq_queue_rq: queue rq -1 5, 0
[   21.095446] systemd--119     1.... 3546561us : blk_mq_make_request: make rq -1 6
[   21.097929] systemd--119     1.... 3546566us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.100425] systemd--119     1.... 3547004us : blk_mq_free_request: complete: rq -1 5
[   21.102924] systemd--119     1.... 3547008us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.105412] systemd--119     1.... 3547027us : blk_mq_make_request: make rq -1 5
[   21.107894] systemd--119     1.... 3547032us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   21.110385] systemd--119     1.... 3547597us : blk_mq_free_request: complete: rq -1 6
[   21.112883] systemd--119     1.... 3547601us : mmc_mq_queue_rq: queue rq -1 5, 0
[   21.115369] systemd--119     1.... 3547619us : blk_mq_make_request: make rq -1 6
[   21.117858] systemd--119     1.... 3547623us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.120352] systemd--119     1.... 3548198us : blk_mq_free_request: complete: rq -1 5
[   21.122846] systemd--119     1.n.. 3548202us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.125334] systemd--119     1.... 3548233us : blk_mq_make_request: make rq -1 5
[   21.127821] systemd--119     1.... 3548237us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   21.130316] systemd--119     1.n.. 3548690us : blk_mq_free_request: complete: rq -1 6
[   21.132811] systemd--119     1.n.. 3548694us : mmc_mq_queue_rq: queue rq -1 5, 0
[   21.135298] systemd--119     1.... 3548801us : blk_mq_make_request: make rq -1 6
[   21.137779] systemd--119     1.... 3548806us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.140273] systemd--119     1.... 3549186us : blk_mq_free_request: complete: rq -1 5
[   21.142765] systemd--119     1.... 3549190us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.145251] systemd--119     1.... 3549208us : blk_mq_make_request: make rq -1 5
[   21.147734] systemd--119     1.... 3549212us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   21.150233] systemd--119     1.n.. 3549776us : blk_mq_free_request: complete: rq -1 6
[   21.152725] systemd--119     1.n.. 3549780us : mmc_mq_queue_rq: queue rq -1 5, 0
[   21.155203] systemd--119     1.... 3549833us : blk_mq_make_request: make rq -1 6
[   21.157686] systemd--119     1.... 3549837us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.160183] systemd--119     1.... 3550370us : blk_mq_free_request: complete: rq -1 5
[   21.162680] systemd--119     1.... 3550374us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.165167] systemd--119     1.... 3550392us : blk_mq_make_request: make rq -1 5
[   21.167650] systemd--119     1.... 3550396us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   21.170144] systemd--119     1.... 3550961us : blk_mq_free_request: complete: rq -1 6
[   21.172636] systemd--119     1.... 3550965us : mmc_mq_queue_rq: queue rq -1 5, 0
[   21.175118] systemd--119     1.n.. 3550984us : blk_mq_make_request: make rq -1 6
[   21.177596] systemd--119     1.... 3551006us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.180100] systemd--119     1.... 3551559us : blk_mq_free_request: complete: rq -1 5
[   21.182599] systemd--119     1.... 3551563us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.185089] systemd--119     1.... 3551582us : blk_mq_make_request: make rq -1 5
[   21.187569] systemd--119     1.... 3551586us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   21.190069] systemd--119     1.n.. 3552172us : blk_mq_free_request: complete: rq -1 6
[   21.192572] systemd--119     1.n.. 3552176us : mmc_mq_queue_rq: queue rq -1 5, 0
[   21.195061] systemd--119     1.... 3552205us : blk_mq_make_request: make rq -1 6
[   21.197543] systemd--119     1.... 3552210us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.200044] systemd--119     1.... 3552786us : blk_mq_free_request: complete: rq -1 5
[   21.202545] systemd--119     1.... 3552790us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.205033] systemd--119     1.n.. 3552810us : blk_mq_make_request: make rq -1 5
[   21.207520] systemd--119     1.... 3552826us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   21.210024] systemd--119     1.... 3553404us : blk_mq_free_request: complete: rq -1 6
[   21.212528] systemd--119     1.... 3553408us : mmc_mq_queue_rq: queue rq -1 5, 0
[   21.215021] systemd--119     1.... 3553451us : blk_mq_make_request: make rq -1 6
[   21.217511] systemd--119     1.... 3553456us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.220005] systemd--119     1.... 3554023us : blk_mq_free_request: complete: rq -1 5
[   21.222507] systemd--119     1.... 3554027us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.224995] systemd--119     1.... 3554045us : blk_mq_make_request: make rq -1 5
[   21.227478] systemd--119     1.... 3554049us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   21.229975] systemd--119     1.n.. 3554614us : blk_mq_free_request: complete: rq -1 6
[   21.232470] systemd--119     1.n.. 3554618us : mmc_mq_queue_rq: queue rq -1 5, 0
[   21.234961] systemd--119     1.... 3554670us : blk_mq_make_request: make rq -1 6
[   21.237444] systemd--119     1.... 3554675us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.239941] systemd--119     1.... 3555207us : blk_mq_free_request: complete: rq -1 5
[   21.242437] systemd--119     1.... 3555211us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.244924] systemd--119     1.... 3555295us : blk_mq_make_request: make rq -1 5
[   21.247401] systemd--119     1.... 3555299us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   21.249894] systemd--119     1.n.. 3555797us : blk_mq_free_request: complete: rq -1 6
[   21.252383] systemd--119     1.n.. 3555801us : mmc_mq_queue_rq: queue rq -1 5, 0
[   21.254868] systemd--119     1.n.. 3555838us : blk_mq_make_request: make rq -1 6
[   21.257347] systemd--119     1.... 3555878us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.259840] systemd--119     1.n.. 3556390us : blk_mq_free_request: complete: rq -1 5
[   21.262333] systemd--119     1.n.. 3556394us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.264820] systemd--119     1.... 3556439us : blk_mq_make_request: make rq -1 5
[   21.267303] systemd--119     1.... 3556444us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   21.269799] systemd--119     1.... 3556882us : blk_mq_free_request: complete: rq -1 6
[   21.272292] systemd--119     1.... 3556886us : mmc_mq_queue_rq: queue rq -1 5, 0
[   21.274775] kworker/-79      0.n.. 3557385us : blk_mq_free_request: complete: rq -1 5
[   21.277279] systemd--119     1.... 3557449us : blk_mq_make_request: make rq -1 5
[   21.279787] systemd--119     1.... 3557456us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   21.282305] systemd--119     1.... 3557485us : mmc_mq_queue_rq: queue rq -1 5, 0
[   21.284797] kworker/-79      0.n.. 3558388us : blk_mq_free_request: complete: rq -1 5
[   21.287314] systemd--119     1.... 3558488us : blk_mq_make_request: make rq -1 5
[   21.289832] systemd--119     1.... 3558496us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   21.292361] systemd--119     1.... 3558523us : mmc_mq_queue_rq: queue rq -1 5, 0
[   21.294874] systemd--119     1.... 3558541us : blk_mq_make_request: make rq -1 6
[   21.297375] systemd--119     1.... 3558545us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.299892] systemd--119     1.... 3559158us : blk_mq_free_request: complete: rq -1 5
[   21.302401] systemd--119     1.... 3559162us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.304910] systemd--119     1.... 3559219us : blk_mq_make_request: make rq -1 5
[   21.307407] systemd--119     1.... 3559224us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   21.309924] systemd--119     1.... 3559774us : blk_mq_free_request: complete: rq -1 6
[   21.312438] systemd--119     1.... 3559778us : mmc_mq_queue_rq: queue rq -1 5, 0
[   21.314943] systemd--119     1.... 3559797us : blk_mq_make_request: make rq -1 6
[   21.317443] systemd--119     1.... 3559801us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.319962] systemd--119     1.n.. 3560392us : blk_mq_free_request: complete: rq -1 5
[   21.322474] systemd--119     1.n.. 3560396us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.324986] systemd--119     1.... 3560426us : blk_mq_make_request: make rq -1 5
[   21.327489] systemd--119     1.... 3560431us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   21.330006] systemd--119     1.... 3560878us : blk_mq_free_request: complete: rq -1 6
[   21.332513] systemd--119     1.... 3560882us : mmc_mq_queue_rq: queue rq -1 5, 0
[   21.335013] systemd--119     1.... 3560901us : blk_mq_make_request: make rq -1 6
[   21.337510] systemd--119     1.... 3560905us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.340024] systemd--119     1.... 3561469us : blk_mq_free_request: complete: rq -1 5
[   21.342537] systemd--119     1.n.. 3561474us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.345044] systemd--119     1.... 3561508us : blk_mq_make_request: make rq -1 5
[   21.347550] systemd--119     1.n.. 3561513us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   21.350070] systemd--119     1.... 3562079us : blk_mq_free_request: complete: rq -1 6
[   21.352595] systemd--119     1.... 3562083us : mmc_mq_queue_rq: queue rq -1 5, 0
[   21.355111] systemd--119     1.... 3562102us : blk_mq_make_request: make rq -1 6
[   21.357621] systemd--119     1.... 3562106us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.360144] systemd--119     1.... 3562670us : blk_mq_free_request: complete: rq -1 5
[   21.362668] systemd--119     1.... 3562675us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.365181] systemd--119     1.... 3562719us : blk_mq_make_request: make rq -1 5
[   21.367689] systemd--119     1.... 3562723us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   21.370213] systemd--119     1.... 3563273us : blk_mq_free_request: complete: rq -1 6
[   21.372735] systemd--119     1.n.. 3563277us : mmc_mq_queue_rq: queue rq -1 5, 0
[   21.375247] systemd--119     1.... 3563339us : blk_mq_make_request: make rq -1 6
[   21.377754] systemd--119     1.... 3563343us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.380278] systemd--119     1.... 3563885us : blk_mq_free_request: complete: rq -1 5
[   21.382806] systemd--119     1.... 3563890us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.385318] systemd--119     1.n.. 3563909us : blk_mq_make_request: make rq -1 5
[   21.387826] systemd--119     1.... 3563925us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   21.390350] systemd--119     1.... 3564507us : blk_mq_free_request: complete: rq -1 6
[   21.392869] systemd--119     1.... 3564511us : mmc_mq_queue_rq: queue rq -1 5, 0
[   21.395384] systemd--119     1.... 3564538us : blk_mq_make_request: make rq -1 6
[   21.397895] systemd--119     1.... 3564543us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.400402] systemd--119     1.n.. 3565128us : blk_mq_free_request: complete: rq -1 5
[   21.402917] systemd--119     1.n.. 3565133us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.405417] systemd--119     1.... 3565165us : blk_mq_make_request: make rq -1 5
[   21.407920] systemd--119     1.... 3565170us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   21.410415] systemd--119     1.n.. 3565727us : blk_mq_free_request: complete: rq -1 6
[   21.412906] systemd--119     1.n.. 3565732us : mmc_mq_queue_rq: queue rq -1 5, 0
[   21.415392] systemd--119     1.... 3565793us : blk_mq_make_request: make rq -1 6
[   21.417884] systemd--119     1.... 3565798us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.420394] systemd--119     1.n.. 3566328us : blk_mq_free_request: complete: rq -1 5
[   21.422902] systemd--119     1.n.. 3566333us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.425403] systemd--119     1.n.. 3566398us : blk_mq_make_request: make rq -1 5
[   21.427897] systemd--119     1.... 3566420us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   21.430406] systemd--119     1.... 3566922us : blk_mq_free_request: complete: rq -1 6
[   21.432912] systemd--119     1.... 3566927us : mmc_mq_queue_rq: queue rq -1 5, 0
[   21.435411] systemd--119     1.... 3566947us : blk_mq_make_request: make rq -1 6
[   21.437908] systemd--119     1.... 3566951us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.440420] systemd--119     1.... 3567520us : blk_mq_free_request: complete: rq -1 5
[   21.442929] systemd--119     1.... 3567524us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.445419] systemd--119     1.... 3567544us : blk_mq_make_request: make rq -1 5
[   21.447908] systemd--119     1.... 3567548us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   21.450413] systemd--119     1.... 3568138us : blk_mq_free_request: complete: rq -1 6
[   21.452914] systemd--119     1.... 3568142us : mmc_mq_queue_rq: queue rq -1 5, 0
[   21.455409] systemd--119     1.... 3568162us : blk_mq_make_request: make rq -1 6
[   21.457891] systemd--119     1.... 3568166us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.460392] systemd--119     1.... 3568773us : blk_mq_free_request: complete: rq -1 5
[   21.462892] systemd--119     1.... 3568777us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.465377] systemd--119     1.... 3568798us : blk_mq_make_request: make rq -1 5
[   21.467859] systemd--119     1.... 3568802us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   21.470354] systemd--119     1.... 3569391us : blk_mq_free_request: complete: rq -1 6
[   21.472851] systemd--119     1.... 3569395us : mmc_mq_queue_rq: queue rq -1 5, 0
[   21.475329] systemd--119     1.... 3569414us : blk_mq_make_request: make rq -1 6
[   21.477808] systemd--119     1.... 3569419us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.480300] systemd--119     1.... 3570025us : blk_mq_free_request: complete: rq -1 5
[   21.482793] systemd--119     1.... 3570029us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.485276] systemd--119     1.... 3570049us : blk_mq_make_request: make rq -1 5
[   21.487750] systemd--119     1.... 3570053us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   21.490243] systemd--119     1.... 3570624us : blk_mq_free_request: complete: rq -1 6
[   21.492737] systemd--119     1.... 3570628us : mmc_mq_queue_rq: queue rq -1 5, 0
[   21.495215] systemd--119     1.... 3570649us : blk_mq_make_request: make rq -1 6
[   21.497694] systemd--119     1.... 3570654us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.500181] systemd--119     1.... 3571224us : blk_mq_free_request: complete: rq -1 5
[   21.502676] systemd--119     1.... 3571229us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.505155] systemd--119     1.... 3571252us : blk_mq_make_request: make rq -1 5
[   21.507624] systemd--119     1.... 3571257us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   21.510108] systemd--119     1.... 3571833us : blk_mq_free_request: complete: rq -1 6
[   21.512588] systemd--119     1.... 3571838us : mmc_mq_queue_rq: queue rq -1 5, 0
[   21.515056] systemd--119     1.... 3571860us : blk_mq_make_request: make rq -1 6
[   21.517518] systemd--119     1.... 3571864us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.519994] systemd--119     1.... 3572434us : blk_mq_free_request: complete: rq -1 5
[   21.522468] systemd--119     1.... 3572439us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.524930] systemd--119     1.... 3572462us : blk_mq_make_request: make rq -1 5
[   21.527386] systemd--119     1.... 3572466us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   21.529855] systemd--119     1.... 3573062us : blk_mq_free_request: complete: rq -1 6
[   21.532327] systemd--119     1.... 3573067us : mmc_mq_queue_rq: queue rq -1 5, 0
[   21.534783] systemd--119     1.... 3573092us : blk_mq_make_request: make rq -1 6
[   21.537237] systemd--119     1.... 3573097us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.539705] systemd--119     1.... 3573680us : blk_mq_free_request: complete: rq -1 5
[   21.542169] systemd--119     1.... 3573684us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.544623] systemd--119     1.... 3573714us : blk_mq_make_request: make rq -1 5
[   21.547081] systemd--119     1.... 3573718us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   21.549547] systemd--119     1.... 3574310us : blk_mq_free_request: complete: rq -1 6
[   21.552009] systemd--119     1.... 3574315us : mmc_mq_queue_rq: queue rq -1 5, 0
[   21.554462] systemd--119     1.... 3574334us : blk_mq_make_request: make rq -1 6
[   21.556911] systemd--119     1.... 3574338us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.559378] systemd--119     1.... 3574938us : blk_mq_free_request: complete: rq -1 5
[   21.561843] systemd--119     1.... 3574942us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.564295] systemd--119     1.... 3574964us : blk_mq_make_request: make rq -1 5
[   21.566745] systemd--119     1.... 3574968us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   21.569210] systemd--119     1.... 3575529us : blk_mq_free_request: complete: rq -1 6
[   21.571670] systemd--119     1.... 3575533us : mmc_mq_queue_rq: queue rq -1 5, 0
[   21.574115] systemd--119     1.... 3575551us : blk_mq_make_request: make rq -1 6
[   21.576567] systemd--119     1.... 3575555us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.579030] systemd--119     1.... 3576129us : blk_mq_free_request: complete: rq -1 5
[   21.581492] systemd--119     1.... 3576134us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.583948] systemd--119     1.... 3576152us : blk_mq_make_request: make rq -1 5
[   21.586404] systemd--119     1.... 3576156us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   21.588871] systemd--119     1.... 3576766us : blk_mq_free_request: complete: rq -1 6
[   21.591334] systemd--119     1.... 3576770us : mmc_mq_queue_rq: queue rq -1 5, 0
[   21.593789] systemd--119     1.... 3576788us : blk_mq_make_request: make rq -1 6
[   21.596241] systemd--119     1.... 3576792us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.598710] systemd--119     1.... 3577362us : blk_mq_free_request: complete: rq -1 5
[   21.601177] systemd--119     1.... 3577367us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.603634] systemd--119     1.... 3577376us : blk_mq_make_request: make rq -1 5
[   21.606082] systemd--119     1.... 3577379us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   21.608553] systemd--119     1.... 3577992us : blk_mq_free_request: complete: rq -1 6
[   21.611020] systemd--119     1.... 3577996us : mmc_mq_queue_rq: queue rq -1 5, 0
[   21.613478] kworker/-79      0.n.. 3578504us : blk_mq_free_request: complete: rq -1 5
[   21.615960]  udevadm-123     1.... 3860190us : blk_mq_make_request: make rq -1 5
[   21.618445]  udevadm-123     1.... 3860218us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   21.620944]  udevadm-123     1.... 3860323us : mmc_mq_queue_rq: queue rq -1 5, 0
[   21.623420]  udevadm-123     1.... 3860327us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   21.625943] kworker/-79      0.n.. 3861405us : blk_mq_free_request: complete: rq -1 5
[   21.628482]  udevadm-123     1.n.. 3863304us : blk_mq_make_request: make rq -1 5
[   21.631018]  udevadm-123     1.... 3863362us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   21.633563]  udevadm-123     1.n.. 3863657us : mmc_mq_queue_rq: queue rq -1 5, 0
[   21.636095]  udevadm-123     1.n.. 3863660us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   21.638684] kworker/-79      0.n.. 3866365us : blk_mq_free_request: complete: rq -1 5
[   21.641281]  udevadm-123     1.... 3866848us : blk_mq_make_request: make rq -1 5
[   21.643871]  udevadm-123     1.... 3866865us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   21.646469]  udevadm-123     1.... 3867477us : mmc_mq_queue_rq: queue rq -1 5, 0
[   21.649061]  udevadm-123     1.... 3867481us : blk_mq_try_issue_list_directly: issue direct: rq -1 5, ret 0
[   21.651700]  udevadm-123     1.... 3870694us : blk_mq_make_request: make rq -1 6
[   21.654315]  udevadm-123     1.... 3870717us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.656956]  udevadm-123     1.n.. 3872572us : blk_mq_free_request: complete: rq -1 5
[   21.659603]  udevadm-123     1.n.. 3872587us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.662243]  udevadm-123     1.n.. 3872592us : blk_mq_try_issue_list_directly: issue direct: rq -1 6, ret 0
[   21.664933] kworker/-79      0.n.. 3876898us : blk_mq_free_request: complete: rq -1 6
[   21.667630]  udevadm-123     1.... 3877860us : blk_mq_make_request: make rq -1 6
[   21.670325]  udevadm-123     1.... 3877878us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.673035]  udevadm-123     1.... 3878101us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.675722]  udevadm-123     1.... 3878104us : blk_mq_try_issue_list_directly: issue direct: rq -1 6, ret 0
[   21.678460] kworker/-79      0.n.. 3879483us : blk_mq_free_request: complete: rq -1 6
[   21.681214]  udevadm-123     1.... 3879742us : blk_mq_make_request: make rq -1 6
[   21.683965]  udevadm-123     1.... 3879752us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.686714]  udevadm-123     1.... 3879787us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.689450] kworker/-79      0.n.. 3888689us : blk_mq_free_request: complete: rq -1 6
[   21.692217]  udevadm-123     1.... 3889043us : blk_mq_make_request: make rq -1 6
[   21.694986]  udevadm-123     1.... 3889063us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.697761]  udevadm-123     1.... 3889129us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.700520]  udevadm-123     1.... 3889132us : blk_mq_try_issue_list_directly: issue direct: rq -1 6, ret 0
[   21.703334] kworker/-79      0.n.. 3889996us : blk_mq_free_request: complete: rq -1 6
[   21.706155] systemd--124     1.... 3898487us : blk_mq_make_request: make rq -1 6
[   21.708972] systemd--124     1.... 3898505us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.711799] systemd--124     1.... 3898555us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.714612] systemd--124     1.... 3898578us : blk_mq_make_request: make rq -1 7
[   21.717427] systemd--124     1.... 3898583us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   21.720246] systemd--124     1.... 3899415us : blk_mq_free_request: complete: rq -1 6
[   21.723065] systemd--124     1.... 3899424us : mmc_mq_queue_rq: queue rq -1 7, 0
[   21.725885] systemd--124     1.... 3899453us : blk_mq_make_request: make rq -1 6
[   21.728695] systemd--124     1.... 3899458us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.731507] systemd--124     1.... 3900018us : blk_mq_free_request: complete: rq -1 7
[   21.734325] systemd--124     1.... 3900024us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.737141] systemd--124     1.... 3900050us : blk_mq_make_request: make rq -1 7
[   21.739948] systemd--124     1.... 3900055us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   21.742763] systemd--124     1.... 3900645us : blk_mq_free_request: complete: rq -1 6
[   21.745581] systemd--124     1.... 3900651us : mmc_mq_queue_rq: queue rq -1 7, 0
[   21.748373] systemd--124     1.... 3900677us : blk_mq_make_request: make rq -1 6
[   21.751152] systemd--124     1.... 3900682us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.753944] systemd--124     1.... 3901252us : blk_mq_free_request: complete: rq -1 7
[   21.756743] systemd--124     1.... 3901258us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.759514] systemd--124     1.... 3901298us : blk_mq_make_request: make rq -1 7
[   21.762248] systemd--124     1.... 3901303us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   21.764987] systemd--124     1.... 3901847us : blk_mq_free_request: complete: rq -1 6
[   21.767730] systemd--124     1.... 3901852us : mmc_mq_queue_rq: queue rq -1 7, 0
[   21.770470] systemd--124     1.... 3901873us : blk_mq_make_request: make rq -1 6
[   21.773186] systemd--124     1.... 3901877us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.775878] systemd--124     1.... 3902440us : blk_mq_free_request: complete: rq -1 7
[   21.778562] systemd--124     1.... 3902445us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.781242] systemd--124     1.... 3902465us : blk_mq_make_request: make rq -1 7
[   21.783920] systemd--124     1.... 3902469us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   21.786588] systemd--124     1.... 3903048us : blk_mq_free_request: complete: rq -1 6
[   21.789237] systemd--124     1.... 3903053us : mmc_mq_queue_rq: queue rq -1 7, 0
[   21.791877] systemd--124     1.... 3903074us : blk_mq_make_request: make rq -1 6
[   21.794506] systemd--124     1.... 3903078us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.797145] systemd--124     1.... 3903693us : blk_mq_free_request: complete: rq -1 7
[   21.799767] systemd--124     1.... 3903698us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.802347] systemd--124     1.... 3903718us : blk_mq_make_request: make rq -1 7
[   21.804919] systemd--124     1.... 3903722us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   21.807495] systemd--124     1.... 3904310us : blk_mq_free_request: complete: rq -1 6
[   21.810081] systemd--124     1.... 3904315us : mmc_mq_queue_rq: queue rq -1 7, 0
[   21.812644] systemd--124     1.... 3904335us : blk_mq_make_request: make rq -1 6
[   21.815167] systemd--124     1.... 3904339us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.817697] systemd--124     1.... 3904927us : blk_mq_free_request: complete: rq -1 7
[   21.820220] systemd--124     1.... 3904932us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.822753] systemd--124     1.... 3904964us : blk_mq_make_request: make rq -1 7
[   21.825260] systemd--124     1.... 3904969us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   21.827772] systemd--124     1.... 3905543us : blk_mq_free_request: complete: rq -1 6
[   21.830283] systemd--124     1.... 3905548us : mmc_mq_queue_rq: queue rq -1 7, 0
[   21.832797] systemd--124     1.... 3905569us : blk_mq_make_request: make rq -1 6
[   21.835282] systemd--124     1.... 3905573us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.837750] systemd--124     1.... 3906170us : blk_mq_free_request: complete: rq -1 7
[   21.840207] systemd--124     1.... 3906174us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.842656] systemd--124     1.... 3906195us : blk_mq_make_request: make rq -1 7
[   21.845112] systemd--124     1.... 3906199us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   21.847578] systemd--124     1.... 3906762us : blk_mq_free_request: complete: rq -1 6
[   21.850045] systemd--124     1.... 3906766us : mmc_mq_queue_rq: queue rq -1 7, 0
[   21.852501] systemd--124     1.... 3906787us : blk_mq_make_request: make rq -1 6
[   21.854957] systemd--124     1.... 3906791us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.857427] systemd--124     1.... 3907368us : blk_mq_free_request: complete: rq -1 7
[   21.859906] systemd--124     1.... 3907373us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.862368] systemd--124     1.... 3907392us : blk_mq_make_request: make rq -1 7
[   21.864825] systemd--124     1.... 3907396us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   21.867293] systemd--124     1.... 3907975us : blk_mq_free_request: complete: rq -1 6
[   21.869760] systemd--124     1.... 3907980us : mmc_mq_queue_rq: queue rq -1 7, 0
[   21.872222] systemd--124     1.... 3908000us : blk_mq_make_request: make rq -1 6
[   21.874676] systemd--124     1.... 3908004us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.877146] systemd--124     1.... 3908599us : blk_mq_free_request: complete: rq -1 7
[   21.879608] systemd--124     1.... 3908604us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.882066] systemd--124     1.... 3908626us : blk_mq_make_request: make rq -1 7
[   21.884526] systemd--124     1.... 3908630us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   21.886998] systemd--124     1.... 3909229us : blk_mq_free_request: complete: rq -1 6
[   21.889464] systemd--124     1.... 3909234us : mmc_mq_queue_rq: queue rq -1 7, 0
[   21.891927] systemd--124     1.... 3909256us : blk_mq_make_request: make rq -1 6
[   21.894383] systemd--124     1.... 3909261us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.896856] systemd--124     1.... 3909844us : blk_mq_free_request: complete: rq -1 7
[   21.899331] systemd--124     1.... 3909848us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.901793] systemd--124     1.... 3909869us : blk_mq_make_request: make rq -1 7
[   21.904248] systemd--124     1.... 3909873us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   21.906730] systemd--124     1.... 3910454us : blk_mq_free_request: complete: rq -1 6
[   21.909207] systemd--124     1.... 3910459us : mmc_mq_queue_rq: queue rq -1 7, 0
[   21.911673] systemd--124     1.... 3910479us : blk_mq_make_request: make rq -1 6
[   21.914136] systemd--124     1.... 3910484us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.916619] systemd--124     1.... 3911060us : blk_mq_free_request: complete: rq -1 7
[   21.919095] systemd--124     1.... 3911065us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.921563] systemd--124     1.... 3911087us : blk_mq_make_request: make rq -1 7
[   21.924026] systemd--124     1.... 3911091us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   21.926504] systemd--124     1.... 3911650us : blk_mq_free_request: complete: rq -1 6
[   21.928979] systemd--124     1.... 3911654us : mmc_mq_queue_rq: queue rq -1 7, 0
[   21.931445] systemd--124     1.... 3911675us : blk_mq_make_request: make rq -1 6
[   21.933905] systemd--124     1.... 3911679us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.936387] systemd--124     1.... 3912240us : blk_mq_free_request: complete: rq -1 7
[   21.938862] systemd--124     1.... 3912245us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.941328] systemd--124     1.... 3912268us : blk_mq_make_request: make rq -1 7
[   21.943791] systemd--124     1.... 3912272us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   21.946268] systemd--124     1.... 3912867us : blk_mq_free_request: complete: rq -1 6
[   21.948745] systemd--124     1.... 3912871us : mmc_mq_queue_rq: queue rq -1 7, 0
[   21.951211] systemd--124     1.... 3912893us : blk_mq_make_request: make rq -1 6
[   21.953675] systemd--124     1.... 3912896us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.956149] systemd--124     1.... 3913498us : blk_mq_free_request: complete: rq -1 7
[   21.958628] systemd--124     1.... 3913503us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.961097] systemd--124     1.... 3913524us : blk_mq_make_request: make rq -1 7
[   21.963563] systemd--124     1.... 3913528us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   21.966043] systemd--124     1.... 3914113us : blk_mq_free_request: complete: rq -1 6
[   21.968517] systemd--124     1.... 3914118us : mmc_mq_queue_rq: queue rq -1 7, 0
[   21.970987] systemd--124     1.... 3914138us : blk_mq_make_request: make rq -1 6
[   21.973447] systemd--124     1.... 3914142us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.975926] systemd--124     1.... 3914733us : blk_mq_free_request: complete: rq -1 7
[   21.978403] systemd--124     1.... 3914737us : mmc_mq_queue_rq: queue rq -1 6, 0
[   21.980867] systemd--124     1.... 3914766us : blk_mq_make_request: make rq -1 7
[   21.983327] systemd--124     1.... 3914771us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   21.985805] systemd--124     1.... 3915324us : blk_mq_free_request: complete: rq -1 6
[   21.988277] systemd--124     1.... 3915328us : mmc_mq_queue_rq: queue rq -1 7, 0
[   21.990744] systemd--124     1.... 3915348us : blk_mq_make_request: make rq -1 6
[   21.993203] systemd--124     1.... 3915352us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   21.995673] systemd--124     1.... 3915919us : blk_mq_free_request: complete: rq -1 7
[   21.998150] systemd--124     1.... 3915923us : mmc_mq_queue_rq: queue rq -1 6, 0
[   22.000615] systemd--124     1.... 3915942us : blk_mq_make_request: make rq -1 7
[   22.003078] systemd--124     1.... 3915946us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.005556] systemd--124     1.... 3916519us : blk_mq_free_request: complete: rq -1 6
[   22.008026] systemd--124     1.... 3916524us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.010493] systemd--124     1.... 3916544us : blk_mq_make_request: make rq -1 6
[   22.012955] systemd--124     1.... 3916548us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   22.015427] systemd--124     0.... 3917162us : blk_mq_free_request: complete: rq -1 7
[   22.017897] systemd--124     0.... 3917169us : mmc_mq_queue_rq: queue rq -1 6, 0
[   22.020357] systemd--124     0.... 3917184us : blk_mq_make_request: make rq -1 44
[   22.022817] systemd--124     0.... 3917189us : mmc_mq_queue_rq: mmc before issue rq -1 44
[   22.025288] systemd--124     0.... 3917781us : blk_mq_free_request: complete: rq -1 6
[   22.027759] systemd--124     0.... 3917787us : mmc_mq_queue_rq: queue rq -1 44, 0
[   22.030218] kworker/-79      0.... 3918391us : blk_mq_free_request: complete: rq -1 44
[   22.032705] systemd--124     1.... 3918612us : blk_mq_make_request: make rq -1 6
[   22.035188] systemd--124     1.... 3918625us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   22.037684] systemd--124     1.... 3918677us : mmc_mq_queue_rq: queue rq -1 6, 0
[   22.040154] systemd--124     1.... 3918680us : blk_mq_try_issue_list_directly: issue direct: rq -1 6, ret 0
[   22.042677] kworker/-79      0.... 3919923us : blk_mq_free_request: complete: rq -1 6
[   22.045214] systemd--124     1.... 3921206us : blk_mq_make_request: make rq -1 6
[   22.047747] systemd--124     1.... 3921223us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   22.050286] systemd--124     1.... 3921405us : mmc_mq_queue_rq: queue rq -1 6, 0
[   22.052812] systemd--124     1.... 3921408us : blk_mq_try_issue_list_directly: issue direct: rq -1 6, ret 0
[   22.055389] kworker/-79      0.n.. 3923075us : blk_mq_free_request: complete: rq -1 6
[   22.057989] systemd--125     0.n.. 3943797us : blk_mq_make_request: make rq -1 44
[   22.060570] systemd--125     0.... 3944009us : mmc_mq_queue_rq: mmc before issue rq -1 44
[   22.063166] systemd--125     0.n.. 3944153us : mmc_mq_queue_rq: queue rq -1 44, 0
[   22.065758] systemd--125     0.n.. 3944157us : blk_mq_try_issue_list_directly: issue direct: rq -1 44, ret 0
[   22.068394] kworker/-79      0.n.. 3945669us : blk_mq_free_request: complete: rq -1 44
[   22.071033] systemd--124     1.... 3963120us : blk_mq_make_request: make rq -1 6
[   22.073675] systemd--124     1.... 3963145us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   22.076332] systemd--124     1.... 3963211us : mmc_mq_queue_rq: queue rq -1 6, 0
[   22.078972] kworker/-79      0.n.. 3964349us : blk_mq_free_request: complete: rq -1 6
[   22.081625] systemd--124     1.... 3965302us : blk_mq_make_request: make rq -1 6
[   22.084284] systemd--124     1.... 3965314us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   22.086953] systemd--124     1.... 3965580us : mmc_mq_queue_rq: queue rq -1 6, 0
[   22.089602] kworker/-79      0.n.. 3966650us : blk_mq_free_request: complete: rq -1 6
[   22.092267] systemd--124     1.... 3967264us : blk_mq_make_request: make rq -1 6
[   22.094936] systemd--124     1.... 3967313us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   22.097621] systemd--124     1.... 3967351us : mmc_mq_queue_rq: queue rq -1 6, 0
[   22.100288] systemd--124     1.... 3967371us : blk_mq_make_request: make rq -1 7
[   22.102944] systemd--124     1.... 3967375us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.105624] systemd--124     1.n.. 3968127us : blk_mq_free_request: complete: rq -1 6
[   22.108308] systemd--124     1.n.. 3968134us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.110982] systemd--124     1.... 3968174us : blk_mq_make_request: make rq -1 6
[   22.113647] systemd--124     1.... 3968179us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   22.116322] systemd--124     1.... 3968788us : blk_mq_free_request: complete: rq -1 7
[   22.119005] systemd--124     1.... 3968793us : mmc_mq_queue_rq: queue rq -1 6, 0
[   22.121679] systemd--124     1.... 3968866us : blk_mq_make_request: make rq -1 7
[   22.124353] systemd--124     1.... 3968871us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.127030] systemd--124     1.... 3969438us : blk_mq_free_request: complete: rq -1 6
[   22.129714] systemd--124     1.... 3969443us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.132388] systemd--124     1.... 3969464us : blk_mq_make_request: make rq -1 6
[   22.135050] systemd--124     1.... 3969468us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   22.137724] systemd--124     1.... 3970089us : blk_mq_free_request: complete: rq -1 7
[   22.140409] systemd--124     1.... 3970095us : mmc_mq_queue_rq: queue rq -1 6, 0
[   22.143087] systemd--124     1.... 3970120us : blk_mq_make_request: make rq -1 7
[   22.145756] systemd--124     1.... 3970125us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.148433] systemd--124     1.... 3970690us : blk_mq_free_request: complete: rq -1 6
[   22.151118] systemd--124     1.... 3970696us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.153791] systemd--124     1.... 3970718us : blk_mq_make_request: make rq -1 6
[   22.156466] systemd--124     1.... 3970722us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   22.159152] systemd--124     1.... 3971297us : blk_mq_free_request: complete: rq -1 7
[   22.161819] systemd--124     1.... 3971302us : mmc_mq_queue_rq: queue rq -1 6, 0
[   22.164484] systemd--124     1.... 3971325us : blk_mq_make_request: make rq -1 7
[   22.167137] systemd--124     1.... 3971330us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.169804] systemd--124     1.... 3971888us : blk_mq_free_request: complete: rq -1 6
[   22.172460] systemd--124     1.... 3971892us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.175074] systemd--124     1.... 3971913us : blk_mq_make_request: make rq -1 6
[   22.177680] systemd--124     1.... 3971918us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   22.180298] systemd--124     1.... 3972487us : blk_mq_free_request: complete: rq -1 7
[   22.182929] systemd--124     1.... 3972492us : mmc_mq_queue_rq: queue rq -1 6, 0
[   22.185527] systemd--124     1.... 3972513us : blk_mq_make_request: make rq -1 7
[   22.188086] systemd--124     1.... 3972517us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.190658] systemd--124     1.... 3973107us : blk_mq_free_request: complete: rq -1 6
[   22.193215] systemd--124     1.... 3973112us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.195781] systemd--124     1.... 3973135us : blk_mq_make_request: make rq -1 6
[   22.198321] systemd--124     1.... 3973139us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   22.200830] systemd--124     1.... 3973723us : blk_mq_free_request: complete: rq -1 7
[   22.203336] systemd--124     1.... 3973728us : mmc_mq_queue_rq: queue rq -1 6, 0
[   22.205834] systemd--124     1.... 3973750us : blk_mq_make_request: make rq -1 7
[   22.208339] systemd--124     1.... 3973755us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.210830] systemd--124     1.... 3974343us : blk_mq_free_request: complete: rq -1 6
[   22.213327] systemd--124     1.... 3974347us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.215817] systemd--124     1.... 3974370us : blk_mq_make_request: make rq -1 6
[   22.218308] systemd--124     1.... 3974374us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   22.220786] systemd--124     1.... 3974963us : blk_mq_free_request: complete: rq -1 7
[   22.223258] systemd--124     1.... 3974968us : mmc_mq_queue_rq: queue rq -1 6, 0
[   22.225723] systemd--124     1.... 3975000us : blk_mq_make_request: make rq -1 7
[   22.228199] systemd--124     1.... 3975004us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.230683] systemd--124     1.... 3975559us : blk_mq_free_request: complete: rq -1 6
[   22.233171] systemd--124     1.... 3975563us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.235646] systemd--124     1.... 3975585us : blk_mq_make_request: make rq -1 6
[   22.238115] systemd--124     1.... 3975590us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   22.240602] systemd--124     1.... 3976149us : blk_mq_free_request: complete: rq -1 7
[   22.243086] systemd--124     1.... 3976154us : mmc_mq_queue_rq: queue rq -1 6, 0
[   22.245561] systemd--124     1.... 3976175us : blk_mq_make_request: make rq -1 7
[   22.248033] systemd--124     1.... 3976179us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.250520] systemd--124     1.... 3976806us : blk_mq_free_request: complete: rq -1 6
[   22.253007] systemd--124     1.... 3976811us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.255481] systemd--124     1.... 3976833us : blk_mq_make_request: make rq -1 6
[   22.257981] systemd--124     1.... 3976837us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   22.260497] systemd--124     1.... 3977425us : blk_mq_free_request: complete: rq -1 7
[   22.263011] systemd--124     1.... 3977430us : mmc_mq_queue_rq: queue rq -1 6, 0
[   22.265517] systemd--124     1.... 3977452us : blk_mq_make_request: make rq -1 7
[   22.268014] systemd--124     1.... 3977457us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.270524] systemd--124     1.... 3978048us : blk_mq_free_request: complete: rq -1 6
[   22.273034] systemd--124     1.... 3978053us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.275510] systemd--124     1.... 3978073us : blk_mq_make_request: make rq -1 6
[   22.277975] systemd--124     1.... 3978078us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   22.280452] systemd--124     1.... 3978687us : blk_mq_free_request: complete: rq -1 7
[   22.282929] systemd--124     1.... 3978692us : mmc_mq_queue_rq: queue rq -1 6, 0
[   22.285395] systemd--124     1.... 3978714us : blk_mq_make_request: make rq -1 7
[   22.287853] systemd--124     1.... 3978718us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.290331] systemd--124     1.... 3979310us : blk_mq_free_request: complete: rq -1 6
[   22.292803] systemd--124     1.... 3979315us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.295266] systemd--124     1.... 3979335us : blk_mq_make_request: make rq -1 6
[   22.297725] systemd--124     1.... 3979340us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   22.300195] systemd--124     1.... 3979904us : blk_mq_free_request: complete: rq -1 7
[   22.302665] systemd--124     1.... 3979909us : mmc_mq_queue_rq: queue rq -1 6, 0
[   22.305122] systemd--124     1.... 3979929us : blk_mq_make_request: make rq -1 7
[   22.307575] systemd--124     1.... 3979933us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.310039] systemd--124     1.... 3980500us : blk_mq_free_request: complete: rq -1 6
[   22.312507] systemd--124     1.... 3980505us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.314964] systemd--124     1.... 3980526us : blk_mq_make_request: make rq -1 6
[   22.317421] systemd--124     1.... 3980530us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   22.319892] systemd--124     1.... 3981102us : blk_mq_free_request: complete: rq -1 7
[   22.322362] systemd--124     1.... 3981107us : mmc_mq_queue_rq: queue rq -1 6, 0
[   22.324824] systemd--124     1.... 3981130us : blk_mq_make_request: make rq -1 7
[   22.327279] systemd--124     1.... 3981135us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.329746] systemd--124     1.... 3981703us : blk_mq_free_request: complete: rq -1 6
[   22.332216] systemd--124     1.... 3981709us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.334672] systemd--124     1.... 3981734us : blk_mq_make_request: make rq -1 6
[   22.337128] systemd--124     1.... 3981741us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   22.339599] systemd--124     1.... 3982319us : blk_mq_free_request: complete: rq -1 7
[   22.342072] systemd--124     1.... 3982325us : mmc_mq_queue_rq: queue rq -1 6, 0
[   22.344532] systemd--124     1.... 3982348us : blk_mq_make_request: make rq -1 7
[   22.346980] systemd--124     1.... 3982352us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.349451] systemd--124     1.... 3982940us : blk_mq_free_request: complete: rq -1 6
[   22.351919] systemd--124     1.... 3982945us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.354377] systemd--124     1.... 3982968us : blk_mq_make_request: make rq -1 6
[   22.356832] systemd--124     1.... 3982973us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   22.359306] systemd--124     1.... 3983565us : blk_mq_free_request: complete: rq -1 7
[   22.361775] systemd--124     1.... 3983570us : mmc_mq_queue_rq: queue rq -1 6, 0
[   22.364236] systemd--124     1.... 3983593us : blk_mq_make_request: make rq -1 7
[   22.366691] systemd--124     1.... 3983597us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.369161] systemd--124     1.... 3984184us : blk_mq_free_request: complete: rq -1 6
[   22.371629] systemd--124     1.... 3984189us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.374087] systemd--124     1.... 3984209us : blk_mq_make_request: make rq -1 6
[   22.376544] systemd--124     1.... 3984214us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   22.379011] systemd--124     1.... 3984917us : blk_mq_free_request: complete: rq -1 7
[   22.381489] systemd--124     1.... 3984922us : mmc_mq_queue_rq: queue rq -1 6, 0
[   22.383953] systemd--124     1.... 3984948us : blk_mq_make_request: make rq -1 7
[   22.386411] systemd--124     1.... 3984952us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.388883] systemd--124     1.... 3985513us : blk_mq_free_request: complete: rq -1 6
[   22.391355] systemd--124     1.... 3985519us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.393819] systemd--124     1.... 3985542us : blk_mq_make_request: make rq -1 6
[   22.396278] systemd--124     1.... 3985546us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   22.398752] systemd--124     1.... 3986111us : blk_mq_free_request: complete: rq -1 7
[   22.401228] systemd--124     1.... 3986116us : mmc_mq_queue_rq: queue rq -1 6, 0
[   22.403697] systemd--124     1.... 3986139us : blk_mq_make_request: make rq -1 7
[   22.406159] systemd--124     1.... 3986143us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.408636] systemd--124     1.... 3986701us : blk_mq_free_request: complete: rq -1 6
[   22.411105] systemd--124     1.... 3986706us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.413573] systemd--124     1.... 3986716us : blk_mq_make_request: make rq -1 6
[   22.416033] systemd--124     1.... 3986720us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   22.418507] systemd--124     1.... 3987319us : blk_mq_free_request: complete: rq -1 7
[   22.420983] systemd--124     1.... 3987324us : mmc_mq_queue_rq: queue rq -1 6, 0
[   22.423450] kworker/-79      0.n.. 3987931us : blk_mq_free_request: complete: rq -1 6
[   22.425941] systemd--124     1.... 3988028us : blk_mq_make_request: make rq -1 6
[   22.428438] systemd--124     1.... 3988041us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   22.430941] systemd--124     1.... 3988077us : mmc_mq_queue_rq: queue rq -1 6, 0
[   22.433430] systemd--124     1.... 3988079us : blk_mq_try_issue_list_directly: issue direct: rq -1 6, ret 0
[   22.435959] kworker/-79      0.n.. 3989027us : blk_mq_free_request: complete: rq -1 6
[   22.438503] systemd--124     1.... 3989226us : blk_mq_make_request: make rq -1 6
[   22.441045] systemd--124     1.... 3989236us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   22.443586] systemd--124     1.... 3989278us : mmc_mq_queue_rq: queue rq -1 6, 0
[   22.446116] systemd--124     1.... 3989313us : blk_mq_make_request: make rq -1 7
[   22.448644] systemd--124     1.... 3989318us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.451182] systemd--124     1.... 3989925us : blk_mq_free_request: complete: rq -1 6
[   22.453723] systemd--124     1.... 3989931us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.456256] systemd--124     1.... 3989966us : blk_mq_make_request: make rq -1 6
[   22.458794] systemd--124     1.... 3989971us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   22.461333] systemd--124     1.... 3990544us : blk_mq_free_request: complete: rq -1 7
[   22.463875] systemd--124     1.... 3990549us : mmc_mq_queue_rq: queue rq -1 6, 0
[   22.466407] systemd--124     1.... 3990571us : blk_mq_make_request: make rq -1 7
[   22.468939] systemd--124     1.... 3990575us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.471478] systemd--124     1.... 3991174us : blk_mq_free_request: complete: rq -1 6
[   22.474019] systemd--124     1.... 3991178us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.476554] systemd--124     1.... 3991199us : blk_mq_make_request: make rq -1 6
[   22.479085] systemd--124     1.... 3991204us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   22.481627] systemd--124     1.... 3991766us : blk_mq_free_request: complete: rq -1 7
[   22.484169] systemd--124     1.... 3991771us : mmc_mq_queue_rq: queue rq -1 6, 0
[   22.486700] systemd--124     1.... 3991792us : blk_mq_make_request: make rq -1 7
[   22.489234] systemd--124     1.... 3991797us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.491771] systemd--124     1.... 3992362us : blk_mq_free_request: complete: rq -1 6
[   22.494312] systemd--124     1.... 3992367us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.496847] systemd--124     1.... 3992389us : blk_mq_make_request: make rq -1 6
[   22.499377] systemd--124     1.... 3992394us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   22.501919] systemd--124     1.... 3992961us : blk_mq_free_request: complete: rq -1 7
[   22.504459] systemd--124     1.... 3992966us : mmc_mq_queue_rq: queue rq -1 6, 0
[   22.506989] systemd--124     1.... 3992989us : blk_mq_make_request: make rq -1 7
[   22.509518] systemd--124     1.... 3992993us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.512056] systemd--124     1.... 3993552us : blk_mq_free_request: complete: rq -1 6
[   22.514595] systemd--124     1.... 3993556us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.517126] systemd--124     1.... 3993588us : blk_mq_make_request: make rq -1 6
[   22.519653] systemd--124     1.... 3993592us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   22.522194] systemd--124     1.... 3994180us : blk_mq_free_request: complete: rq -1 7
[   22.524735] systemd--124     1.... 3994185us : mmc_mq_queue_rq: queue rq -1 6, 0
[   22.527267] systemd--124     1.... 3994207us : blk_mq_make_request: make rq -1 7
[   22.529803] systemd--124     1.... 3994211us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.532344] systemd--124     1.... 3994793us : blk_mq_free_request: complete: rq -1 6
[   22.534880] systemd--124     1.... 3994798us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.537411] systemd--124     1.... 3994819us : blk_mq_make_request: make rq -1 6
[   22.539945] systemd--124     1.... 3994824us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   22.542488] systemd--124     1.... 3995414us : blk_mq_free_request: complete: rq -1 7
[   22.545030] systemd--124     1.... 3995419us : mmc_mq_queue_rq: queue rq -1 6, 0
[   22.547565] systemd--124     1.... 3995441us : blk_mq_make_request: make rq -1 7
[   22.550075] systemd--124     1.... 3995445us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.552594] systemd--124     1.... 3996005us : blk_mq_free_request: complete: rq -1 6
[   22.555111] systemd--124     1.... 3996010us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.557630] systemd--124     1.... 3996032us : blk_mq_make_request: make rq -1 6
[   22.560122] systemd--124     1.... 3996036us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   22.562593] systemd--124     1.... 3996600us : blk_mq_free_request: complete: rq -1 7
[   22.565056] systemd--124     1.... 3996605us : mmc_mq_queue_rq: queue rq -1 6, 0
[   22.567514] systemd--124     1.... 3996627us : blk_mq_make_request: make rq -1 7
[   22.569977] systemd--124     1.... 3996631us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.572453] systemd--124     1.... 3997199us : blk_mq_free_request: complete: rq -1 6
[   22.574933] systemd--124     1.... 3997205us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.577404] systemd--124     1.... 3997229us : blk_mq_make_request: make rq -1 6
[   22.579869] systemd--124     1.... 3997233us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   22.582349] systemd--124     1.... 3997791us : blk_mq_free_request: complete: rq -1 7
[   22.584826] systemd--124     1.... 3997796us : mmc_mq_queue_rq: queue rq -1 6, 0
[   22.587290] systemd--124     1.... 3997827us : blk_mq_make_request: make rq -1 7
[   22.589751] systemd--124     1.... 3997831us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.592230] systemd--124     1.... 3998405us : blk_mq_free_request: complete: rq -1 6
[   22.594710] systemd--124     1.... 3998411us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.597180] systemd--124     1.... 3998432us : blk_mq_make_request: make rq -1 6
[   22.599642] systemd--124     1.... 3998436us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   22.602119] systemd--124     1.... 3999020us : blk_mq_free_request: complete: rq -1 7
[   22.604589] systemd--124     1.... 3999024us : mmc_mq_queue_rq: queue rq -1 6, 0
[   22.607056] systemd--124     1.... 3999046us : blk_mq_make_request: make rq -1 7
[   22.609517] systemd--124     1.... 3999050us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.611994] systemd--124     1.... 3999639us : blk_mq_free_request: complete: rq -1 6
[   22.614472] systemd--124     1.... 3999644us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.616938] systemd--124     1.... 3999666us : blk_mq_make_request: make rq -1 6
[   22.619409] systemd--124     1.... 3999670us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   22.621888] systemd--124     1.... 4000273us : blk_mq_free_request: complete: rq -1 7
[   22.624369] systemd--124     1.... 4000277us : mmc_mq_queue_rq: queue rq -1 6, 0
[   22.626842] systemd--124     1.... 4000299us : blk_mq_make_request: make rq -1 7
[   22.629309] systemd--124     1.... 4000303us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.631792] systemd--124     1.... 4000874us : blk_mq_free_request: complete: rq -1 6
[   22.634271] systemd--124     1.... 4000879us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.636740] systemd--124     1.... 4000901us : blk_mq_make_request: make rq -1 6
[   22.639210] systemd--124     1.... 4000905us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   22.641694] systemd--124     1.... 4001469us : blk_mq_free_request: complete: rq -1 7
[   22.644180] systemd--124     1.... 4001474us : mmc_mq_queue_rq: queue rq -1 6, 0
[   22.646653] systemd--124     1.... 4001496us : blk_mq_make_request: make rq -1 7
[   22.649119] systemd--124     1.... 4001500us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.651609] systemd--124     1.... 4002071us : blk_mq_free_request: complete: rq -1 6
[   22.654098] systemd--124     1.... 4002077us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.656572] systemd--124     1.... 4002098us : blk_mq_make_request: make rq -1 6
[   22.659042] systemd--124     1.... 4002103us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   22.661525] systemd--124     1.... 4002668us : blk_mq_free_request: complete: rq -1 7
[   22.664005] systemd--124     1.... 4002673us : mmc_mq_queue_rq: queue rq -1 6, 0
[   22.666476] systemd--124     1.... 4002695us : blk_mq_make_request: make rq -1 7
[   22.668933] systemd--124     1.... 4002699us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.671413] systemd--124     1.... 4003297us : blk_mq_free_request: complete: rq -1 6
[   22.673895] systemd--124     1.... 4003302us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.676368] systemd--124     1.... 4003323us : blk_mq_make_request: make rq -1 6
[   22.678838] systemd--124     1.... 4003327us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   22.681319] systemd--124     1.... 4003919us : blk_mq_free_request: complete: rq -1 7
[   22.683797] systemd--124     1.... 4003924us : mmc_mq_queue_rq: queue rq -1 6, 0
[   22.686269] systemd--124     1.... 4003945us : blk_mq_make_request: make rq -1 7
[   22.688739] systemd--124     1.... 4003949us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.691220] systemd--124     1.... 4004534us : blk_mq_free_request: complete: rq -1 6
[   22.693700] systemd--124     1.... 4004538us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.696168] systemd--124     1.... 4004560us : blk_mq_make_request: make rq -1 6
[   22.698635] systemd--124     1.... 4004564us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   22.701106] systemd--124     1.... 4005169us : blk_mq_free_request: complete: rq -1 7
[   22.703586] systemd--124     1.... 4005175us : mmc_mq_queue_rq: queue rq -1 6, 0
[   22.706055] systemd--124     1.... 4005199us : blk_mq_make_request: make rq -1 7
[   22.708519] systemd--124     1.... 4005203us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.711000] systemd--124     1.... 4005771us : blk_mq_free_request: complete: rq -1 6
[   22.713481] systemd--124     1.... 4005776us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.715951] systemd--124     1.... 4005808us : blk_mq_make_request: make rq -1 6
[   22.718415] systemd--124     1.... 4005812us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   22.720895] systemd--124     1.... 4006370us : blk_mq_free_request: complete: rq -1 7
[   22.723378] systemd--124     1.... 4006375us : mmc_mq_queue_rq: queue rq -1 6, 0
[   22.725850] systemd--124     1.... 4006396us : blk_mq_make_request: make rq -1 7
[   22.728316] systemd--124     1.... 4006401us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.730797] systemd--124     1.... 4006970us : blk_mq_free_request: complete: rq -1 6
[   22.733276] systemd--124     1.... 4006975us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.735748] systemd--124     1.... 4006997us : blk_mq_make_request: make rq -1 6
[   22.738211] systemd--124     1.... 4007001us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   22.740693] systemd--124     1.... 4007563us : blk_mq_free_request: complete: rq -1 7
[   22.743173] systemd--124     1.... 4007568us : mmc_mq_queue_rq: queue rq -1 6, 0
[   22.745640] systemd--124     1.... 4007577us : blk_mq_make_request: make rq -1 7
[   22.748102] systemd--124     1.... 4007581us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.750583] systemd--124     1.... 4008183us : blk_mq_free_request: complete: rq -1 6
[   22.753059] systemd--124     1.... 4008188us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.755527] kworker/-79      0.n.. 4008936us : blk_mq_free_request: complete: rq -1 7
[   22.758015] systemd--124     1.... 4009017us : blk_mq_make_request: make rq -1 7
[   22.760509] systemd--124     1.... 4009031us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.763012] systemd--124     1.... 4009070us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.765490] systemd--124     1.... 4009073us : blk_mq_try_issue_list_directly: issue direct: rq -1 7, ret 0
[   22.768017] kworker/-79      0.n.. 4010158us : blk_mq_free_request: complete: rq -1 7
[   22.770567] systemd--124     1.... 4010279us : blk_mq_make_request: make rq -1 7
[   22.773112] systemd--124     1.... 4010288us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.775656] systemd--124     1.... 4010325us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.778189] systemd--124     1.... 4010346us : blk_mq_make_request: make rq -1 8
[   22.780721] systemd--124     1.... 4010351us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   22.783261] systemd--124     1.... 4010969us : blk_mq_free_request: complete: rq -1 7
[   22.785797] systemd--124     1.... 4010975us : mmc_mq_queue_rq: queue rq -1 8, 0
[   22.788328] systemd--124     1.... 4011000us : blk_mq_make_request: make rq -1 7
[   22.790858] systemd--124     1.... 4011004us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.793400] systemd--124     1.... 4011598us : blk_mq_free_request: complete: rq -1 8
[   22.795940] systemd--124     1.... 4011603us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.798472] systemd--124     1.... 4011625us : blk_mq_make_request: make rq -1 8
[   22.801006] systemd--124     1.... 4011630us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   22.803550] systemd--124     1.... 4012198us : blk_mq_free_request: complete: rq -1 7
[   22.806094] systemd--124     1.... 4012203us : mmc_mq_queue_rq: queue rq -1 8, 0
[   22.808632] systemd--124     1.... 4012224us : blk_mq_make_request: make rq -1 7
[   22.811167] systemd--124     1.... 4012229us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.813709] systemd--124     1.... 4012915us : blk_mq_free_request: complete: rq -1 8
[   22.816253] systemd--124     1.... 4012921us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.818792] systemd--124     1.... 4012944us : blk_mq_make_request: make rq -1 8
[   22.821329] systemd--124     1.... 4012949us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   22.823883] systemd--124     1.... 4013523us : blk_mq_free_request: complete: rq -1 7
[   22.826427] systemd--124     1.... 4013528us : mmc_mq_queue_rq: queue rq -1 8, 0
[   22.828965] systemd--124     1.... 4013550us : blk_mq_make_request: make rq -1 7
[   22.831506] systemd--124     1.... 4013555us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.834055] systemd--124     1.... 4014124us : blk_mq_free_request: complete: rq -1 8
[   22.836601] systemd--124     1.... 4014129us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.839139] systemd--124     1.... 4014151us : blk_mq_make_request: make rq -1 8
[   22.841677] systemd--124     1.... 4014155us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   22.844225] systemd--124     1.... 4014752us : blk_mq_free_request: complete: rq -1 7
[   22.846769] systemd--124     1.... 4014757us : mmc_mq_queue_rq: queue rq -1 8, 0
[   22.849306] systemd--124     1.... 4014788us : blk_mq_make_request: make rq -1 7
[   22.851844] systemd--124     1.... 4014793us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.854391] systemd--124     1.... 4015372us : blk_mq_free_request: complete: rq -1 8
[   22.856933] systemd--124     1.... 4015376us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.859468] systemd--124     1.... 4015398us : blk_mq_make_request: make rq -1 8
[   22.861997] systemd--124     1.... 4015402us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   22.864540] systemd--124     1.... 4015992us : blk_mq_free_request: complete: rq -1 7
[   22.867080] systemd--124     1.... 4015997us : mmc_mq_queue_rq: queue rq -1 8, 0
[   22.869614] systemd--124     1.... 4016017us : blk_mq_make_request: make rq -1 7
[   22.872147] systemd--124     1.... 4016021us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.874694] systemd--124     1.... 4016623us : blk_mq_free_request: complete: rq -1 8
[   22.877234] systemd--124     1.... 4016628us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.879770] systemd--124     1.... 4016650us : blk_mq_make_request: make rq -1 8
[   22.882284] systemd--124     1.... 4016655us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   22.884800] systemd--124     1.... 4017221us : blk_mq_free_request: complete: rq -1 7
[   22.887317] systemd--124     1.... 4017227us : mmc_mq_queue_rq: queue rq -1 8, 0
[   22.889837] systemd--124     1.... 4017249us : blk_mq_make_request: make rq -1 7
[   22.892330] systemd--124     1.... 4017253us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.894798] systemd--124     1.... 4017817us : blk_mq_free_request: complete: rq -1 8
[   22.897263] systemd--124     1.... 4017822us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.899721] systemd--124     1.... 4017843us : blk_mq_make_request: make rq -1 8
[   22.902183] systemd--124     1.... 4017848us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   22.904661] systemd--124     1.... 4018427us : blk_mq_free_request: complete: rq -1 7
[   22.907135] systemd--124     1.... 4018432us : mmc_mq_queue_rq: queue rq -1 8, 0
[   22.909606] systemd--124     1.... 4018453us : blk_mq_make_request: make rq -1 7
[   22.912070] systemd--124     1.... 4018457us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.914547] systemd--124     1.... 4019023us : blk_mq_free_request: complete: rq -1 8
[   22.917024] systemd--124     1.... 4019028us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.919495] systemd--124     1.... 4019048us : blk_mq_make_request: make rq -1 8
[   22.921954] systemd--124     1.... 4019053us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   22.924434] systemd--124     1.... 4019653us : blk_mq_free_request: complete: rq -1 7
[   22.926904] systemd--124     1.... 4019658us : mmc_mq_queue_rq: queue rq -1 8, 0
[   22.929361] systemd--124     1.... 4019680us : blk_mq_make_request: make rq -1 7
[   22.931816] systemd--124     1.... 4019684us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.934288] systemd--124     1.... 4020288us : blk_mq_free_request: complete: rq -1 8
[   22.936755] systemd--124     1.... 4020293us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.939219] systemd--124     1.... 4020314us : blk_mq_make_request: make rq -1 8
[   22.941677] systemd--124     1.... 4020318us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   22.944146] systemd--124     1.... 4020907us : blk_mq_free_request: complete: rq -1 7
[   22.946617] systemd--124     1.... 4020912us : mmc_mq_queue_rq: queue rq -1 8, 0
[   22.949075] systemd--124     1.... 4020935us : blk_mq_make_request: make rq -1 7
[   22.951531] systemd--124     1.... 4020939us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.954003] systemd--124     1.... 4021530us : blk_mq_free_request: complete: rq -1 8
[   22.956470] systemd--124     1.... 4021535us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.958928] systemd--124     1.... 4021559us : blk_mq_make_request: make rq -1 8
[   22.961384] systemd--124     1.... 4021563us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   22.963853] systemd--124     1.... 4022122us : blk_mq_free_request: complete: rq -1 7
[   22.966326] systemd--124     1.... 4022127us : mmc_mq_queue_rq: queue rq -1 8, 0
[   22.968786] systemd--124     1.... 4022149us : blk_mq_make_request: make rq -1 7
[   22.971242] systemd--124     1.... 4022153us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.973716] systemd--124     1.... 4022719us : blk_mq_free_request: complete: rq -1 8
[   22.976183] systemd--124     1.... 4022724us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.978648] systemd--124     1.... 4022754us : blk_mq_make_request: make rq -1 8
[   22.981102] systemd--124     1.... 4022759us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   22.983573] systemd--124     1.... 4023312us : blk_mq_free_request: complete: rq -1 7
[   22.986040] systemd--124     1.... 4023316us : mmc_mq_queue_rq: queue rq -1 8, 0
[   22.988501] systemd--124     1.... 4023337us : blk_mq_make_request: make rq -1 7
[   22.990948] systemd--124     1.... 4023342us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   22.993419] systemd--124     1.... 4023914us : blk_mq_free_request: complete: rq -1 8
[   22.995892] systemd--124     1.... 4023919us : mmc_mq_queue_rq: queue rq -1 7, 0
[   22.998350] systemd--124     1.... 4023940us : blk_mq_make_request: make rq -1 8
[   23.000810] systemd--124     1.... 4023944us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.003285] systemd--124     1.... 4024527us : blk_mq_free_request: complete: rq -1 7
[   23.005756] systemd--124     1.... 4024532us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.008221] systemd--124     1.... 4024553us : blk_mq_make_request: make rq -1 7
[   23.010680] systemd--124     1.... 4024557us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   23.013160] systemd--124     1.... 4025157us : blk_mq_free_request: complete: rq -1 8
[   23.015631] systemd--124     1.... 4025162us : mmc_mq_queue_rq: queue rq -1 7, 0
[   23.018091] systemd--124     1.... 4025184us : blk_mq_make_request: make rq -1 8
[   23.020549] systemd--124     1.... 4025189us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.023012] systemd--124     1.... 4025783us : blk_mq_free_request: complete: rq -1 7
[   23.025479] systemd--124     1.... 4025789us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.027937] systemd--124     1.... 4025810us : blk_mq_make_request: make rq -1 7
[   23.030389] systemd--124     1.... 4025814us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   23.032862] systemd--124     1.... 4026406us : blk_mq_free_request: complete: rq -1 8
[   23.035338] systemd--124     1.... 4026411us : mmc_mq_queue_rq: queue rq -1 7, 0
[   23.037796] systemd--124     1.... 4026432us : blk_mq_make_request: make rq -1 8
[   23.040254] systemd--124     1.... 4026436us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.042722] systemd--124     1.... 4027005us : blk_mq_free_request: complete: rq -1 7
[   23.045191] systemd--124     1.... 4027012us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.047657] systemd--124     1.... 4027033us : blk_mq_make_request: make rq -1 7
[   23.050117] systemd--124     1.... 4027037us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   23.052594] systemd--124     1.... 4027609us : blk_mq_free_request: complete: rq -1 8
[   23.055061] systemd--124     1.... 4027614us : mmc_mq_queue_rq: queue rq -1 7, 0
[   23.057526] systemd--124     1.... 4027637us : blk_mq_make_request: make rq -1 8
[   23.059983] systemd--124     1.... 4027641us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.062459] systemd--124     1.... 4028202us : blk_mq_free_request: complete: rq -1 7
[   23.064933] systemd--124     1.... 4028208us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.067397] systemd--124     1.... 4028229us : blk_mq_make_request: make rq -1 7
[   23.069862] systemd--124     1.... 4028234us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   23.072336] systemd--124     1.... 4028905us : blk_mq_free_request: complete: rq -1 8
[   23.074813] systemd--124     1.... 4028911us : mmc_mq_queue_rq: queue rq -1 7, 0
[   23.077281] systemd--124     1.... 4028921us : blk_mq_make_request: make rq -1 8
[   23.079741] systemd--124     1.... 4028925us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.082225] systemd--124     1.... 4029530us : blk_mq_free_request: complete: rq -1 7
[   23.084697] systemd--124     1.... 4029534us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.087151] kworker/-79      0.n.. 4030226us : blk_mq_free_request: complete: rq -1 8
[   23.089640] systemd--124     1.... 4030313us : blk_mq_make_request: make rq -1 8
[   23.092130] systemd--124     1.... 4030327us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.094639] systemd--124     1.... 4030366us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.097112] systemd--124     1.... 4030369us : blk_mq_try_issue_list_directly: issue direct: rq -1 8, ret 0
[   23.099635] kworker/-79      0.n.. 4031385us : blk_mq_free_request: complete: rq -1 8
[   23.102176] systemd--124     1.... 4031529us : blk_mq_make_request: make rq -1 8
[   23.104717] systemd--124     1.... 4031541us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.107263] systemd--124     1.... 4031582us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.109793] systemd--124     1.... 4031612us : blk_mq_make_request: make rq -1 9
[   23.112324] systemd--124     1.... 4031616us : mmc_mq_queue_rq: mmc before issue rq -1 9
[   23.114860] systemd--124     1.... 4032234us : blk_mq_free_request: complete: rq -1 8
[   23.117394] systemd--124     1.... 4032240us : mmc_mq_queue_rq: queue rq -1 9, 0
[   23.119923] systemd--124     1.... 4032264us : blk_mq_make_request: make rq -1 8
[   23.122446] systemd--124     1.... 4032269us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.124981] systemd--124     1.... 4032849us : blk_mq_free_request: complete: rq -1 9
[   23.127519] systemd--124     1.... 4032854us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.130045] systemd--124     1.... 4032879us : blk_mq_make_request: make rq -1 9
[   23.132573] systemd--124     1.... 4032883us : mmc_mq_queue_rq: mmc before issue rq -1 9
[   23.135108] systemd--124     1.... 4033483us : blk_mq_free_request: complete: rq -1 8
[   23.137639] systemd--124     1.... 4033488us : mmc_mq_queue_rq: queue rq -1 9, 0
[   23.140170] systemd--124     1.... 4033512us : blk_mq_make_request: make rq -1 8
[   23.142701] systemd--124     1.... 4033516us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.145238] systemd--124     1.... 4034078us : blk_mq_free_request: complete: rq -1 9
[   23.147776] systemd--124     1.... 4034083us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.150307] systemd--124     1.... 4034104us : blk_mq_make_request: make rq -1 9
[   23.152841] systemd--124     1.... 4034108us : mmc_mq_queue_rq: mmc before issue rq -1 9
[   23.155381] systemd--124     1.... 4034674us : blk_mq_free_request: complete: rq -1 8
[   23.157917] systemd--124     1.... 4034679us : mmc_mq_queue_rq: queue rq -1 9, 0
[   23.160445] systemd--124     1.... 4034700us : blk_mq_make_request: make rq -1 8
[   23.162976] systemd--124     1.... 4034704us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.165511] systemd--124     1.... 4035272us : blk_mq_free_request: complete: rq -1 9
[   23.168041] systemd--124     1.... 4035277us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.170568] systemd--124     1.... 4035298us : blk_mq_make_request: make rq -1 9
[   23.173097] systemd--124     1.... 4035303us : mmc_mq_queue_rq: mmc before issue rq -1 9
[   23.175636] systemd--124     1.... 4035874us : blk_mq_free_request: complete: rq -1 8
[   23.178172] systemd--124     1.... 4035879us : mmc_mq_queue_rq: queue rq -1 9, 0
[   23.180699] systemd--124     1.... 4035912us : blk_mq_make_request: make rq -1 8
[   23.183227] systemd--124     1.... 4035916us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.185761] systemd--124     1.... 4036500us : blk_mq_free_request: complete: rq -1 9
[   23.188297] systemd--124     1.... 4036505us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.190827] systemd--124     1.... 4036526us : blk_mq_make_request: make rq -1 9
[   23.193357] systemd--124     1.... 4036530us : mmc_mq_queue_rq: mmc before issue rq -1 9
[   23.195891] systemd--124     1.... 4037121us : blk_mq_free_request: complete: rq -1 8
[   23.198424] systemd--124     1.... 4037126us : mmc_mq_queue_rq: queue rq -1 9, 0
[   23.200952] systemd--124     1.... 4037148us : blk_mq_make_request: make rq -1 8
[   23.203481] systemd--124     1.... 4037152us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.206018] systemd--124     1.... 4037742us : blk_mq_free_request: complete: rq -1 9
[   23.208549] systemd--124     1.... 4037746us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.211076] systemd--124     1.... 4037767us : blk_mq_make_request: make rq -1 9
[   23.213581] systemd--124     1.... 4037772us : mmc_mq_queue_rq: mmc before issue rq -1 9
[   23.216089] systemd--124     1.... 4038361us : blk_mq_free_request: complete: rq -1 8
[   23.218602] systemd--124     1.... 4038366us : mmc_mq_queue_rq: queue rq -1 9, 0
[   23.221118] systemd--124     1.... 4038388us : blk_mq_make_request: make rq -1 8
[   23.223612] systemd--124     1.... 4038392us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.226078] systemd--124     1.... 4038962us : blk_mq_free_request: complete: rq -1 9
[   23.228535] systemd--124     1.... 4038967us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.230989] systemd--124     1.... 4038989us : blk_mq_make_request: make rq -1 9
[   23.233449] systemd--124     1.... 4038993us : mmc_mq_queue_rq: mmc before issue rq -1 9
[   23.235920] systemd--124     1.... 4039558us : blk_mq_free_request: complete: rq -1 8
[   23.238392] systemd--124     1.... 4039563us : mmc_mq_queue_rq: queue rq -1 9, 0
[   23.240860] systemd--124     1.... 4039586us : blk_mq_make_request: make rq -1 8
[   23.243316] systemd--124     1.... 4039590us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.245787] systemd--124     1.... 4040150us : blk_mq_free_request: complete: rq -1 9
[   23.248254] systemd--124     1.... 4040155us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.250716] systemd--124     1.... 4040187us : blk_mq_make_request: make rq -1 9
[   23.253179] systemd--124     1.... 4040191us : mmc_mq_queue_rq: mmc before issue rq -1 9
[   23.255655] systemd--124     1.... 4040910us : blk_mq_free_request: complete: rq -1 8
[   23.258127] systemd--124     1.... 4040915us : mmc_mq_queue_rq: queue rq -1 9, 0
[   23.260589] systemd--124     1.... 4040940us : blk_mq_make_request: make rq -1 8
[   23.263049] systemd--124     1.... 4040944us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.265519] systemd--124     1.... 4041528us : blk_mq_free_request: complete: rq -1 9
[   23.267989] systemd--124     1.... 4041534us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.270450] systemd--124     1.... 4041558us : blk_mq_make_request: make rq -1 9
[   23.272907] systemd--124     1.... 4041562us : mmc_mq_queue_rq: mmc before issue rq -1 9
[   23.275383] systemd--124     1.... 4042145us : blk_mq_free_request: complete: rq -1 8
[   23.277854] systemd--124     1.... 4042151us : mmc_mq_queue_rq: queue rq -1 9, 0
[   23.280313] systemd--124     1.... 4042173us : blk_mq_make_request: make rq -1 8
[   23.282772] systemd--124     1.... 4042176us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.285247] systemd--124     1.... 4042771us : blk_mq_free_request: complete: rq -1 9
[   23.287717] systemd--124     1.... 4042776us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.290181] systemd--124     1.... 4042799us : blk_mq_make_request: make rq -1 9
[   23.292646] systemd--124     1.... 4042803us : mmc_mq_queue_rq: mmc before issue rq -1 9
[   23.295120] systemd--124     1.... 4043360us : blk_mq_free_request: complete: rq -1 8
[   23.297592] systemd--124     1.... 4043365us : mmc_mq_queue_rq: queue rq -1 9, 0
[   23.300052] systemd--124     1.... 4043387us : blk_mq_make_request: make rq -1 8
[   23.302511] systemd--124     1.... 4043391us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.304989] systemd--124     1.... 4043953us : blk_mq_free_request: complete: rq -1 9
[   23.307459] systemd--124     1.... 4043958us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.309923] systemd--124     1.... 4043979us : blk_mq_make_request: make rq -1 9
[   23.312380] systemd--124     1.... 4043983us : mmc_mq_queue_rq: mmc before issue rq -1 9
[   23.314848] systemd--124     1.... 4044557us : blk_mq_free_request: complete: rq -1 8
[   23.317325] systemd--124     1.... 4044562us : mmc_mq_queue_rq: queue rq -1 9, 0
[   23.319787] systemd--124     1.... 4044582us : blk_mq_make_request: make rq -1 8
[   23.322245] systemd--124     1.... 4044586us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.324714] systemd--124     1.... 4045154us : blk_mq_free_request: complete: rq -1 9
[   23.327187] systemd--124     1.... 4045158us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.329648] systemd--124     1.... 4045179us : blk_mq_make_request: make rq -1 9
[   23.332110] systemd--124     1.... 4045183us : mmc_mq_queue_rq: mmc before issue rq -1 9
[   23.334585] systemd--124     1.... 4045780us : blk_mq_free_request: complete: rq -1 8
[   23.337055] systemd--124     1.... 4045785us : mmc_mq_queue_rq: queue rq -1 9, 0
[   23.339512] systemd--124     1.... 4045806us : blk_mq_make_request: make rq -1 8
[   23.341970] systemd--124     1.... 4045810us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.344447] systemd--124     1.... 4046401us : blk_mq_free_request: complete: rq -1 9
[   23.346919] systemd--124     1.... 4046405us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.349386] systemd--124     1.... 4046426us : blk_mq_make_request: make rq -1 9
[   23.351848] systemd--124     1.... 4046430us : mmc_mq_queue_rq: mmc before issue rq -1 9
[   23.354327] systemd--124     1.... 4047021us : blk_mq_free_request: complete: rq -1 8
[   23.356802] systemd--124     1.... 4047025us : mmc_mq_queue_rq: queue rq -1 9, 0
[   23.359268] systemd--124     1.... 4047045us : blk_mq_make_request: make rq -1 8
[   23.361727] systemd--124     1.... 4047049us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.364199] systemd--124     1.... 4047640us : blk_mq_free_request: complete: rq -1 9
[   23.366669] systemd--124     1.... 4047645us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.369129] systemd--124     1.... 4047665us : blk_mq_make_request: make rq -1 9
[   23.371580] systemd--124     1.... 4047669us : mmc_mq_queue_rq: mmc before issue rq -1 9
[   23.374050] systemd--124     1.... 4048227us : blk_mq_free_request: complete: rq -1 8
[   23.376513] systemd--124     1.... 4048232us : mmc_mq_queue_rq: queue rq -1 9, 0
[   23.378971] systemd--124     1.... 4048253us : blk_mq_make_request: make rq -1 8
[   23.381423] systemd--124     1.... 4048258us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.383890] systemd--124     1.... 4048993us : blk_mq_free_request: complete: rq -1 9
[   23.386356] systemd--124     1.... 4048998us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.388813] systemd--124     1.... 4049033us : blk_mq_make_request: make rq -1 9
[   23.391273] systemd--124     1.... 4049038us : mmc_mq_queue_rq: mmc before issue rq -1 9
[   23.393747] systemd--124     1.... 4049589us : blk_mq_free_request: complete: rq -1 8
[   23.396214] systemd--124     1.... 4049594us : mmc_mq_queue_rq: queue rq -1 9, 0
[   23.398673] systemd--124     1.... 4049611us : blk_mq_make_request: make rq -1 8
[   23.401129] systemd--124     1.... 4049616us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.403600] systemd--124     1.... 4050186us : blk_mq_free_request: complete: rq -1 9
[   23.406072] systemd--124     1.... 4050190us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.408536] kworker/-79      0.n.. 4050866us : blk_mq_free_request: complete: rq -1 8
[   23.411023] systemd--124     1.... 4050964us : blk_mq_make_request: make rq -1 8
[   23.413510] systemd--124     1.... 4050981us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.416009] systemd--124     1.... 4051023us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.418485] systemd--124     1.... 4051026us : blk_mq_try_issue_list_directly: issue direct: rq -1 8, ret 0
[   23.421012] kworker/-79      0.n.. 4051988us : blk_mq_free_request: complete: rq -1 8
[   23.423555] systemd--124     1.... 4052214us : blk_mq_make_request: make rq -1 8
[   23.426093] systemd--124     1.... 4052227us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.428641] systemd--124     1.... 4052267us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.431168] systemd--124     1.... 4052270us : blk_mq_try_issue_list_directly: issue direct: rq -1 8, ret 0
[   23.433757] kworker/-79      0.n.. 4053267us : blk_mq_free_request: complete: rq -1 8
[   23.436350] systemd--124     1.... 4053406us : blk_mq_make_request: make rq -1 8
[   23.438936] systemd--124     1.... 4053417us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.441531] systemd--124     1.... 4053451us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.444119] systemd--124     1.... 4053453us : blk_mq_try_issue_list_directly: issue direct: rq -1 8, ret 0
[   23.446752] kworker/-79      0.n.. 4054450us : blk_mq_free_request: complete: rq -1 8
[   23.449389] systemd--124     1.... 4054579us : blk_mq_make_request: make rq -1 8
[   23.452024] systemd--124     1.... 4054591us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.454675] systemd--124     1.... 4054631us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.457306] systemd--124     1.... 4054634us : blk_mq_try_issue_list_directly: issue direct: rq -1 8, ret 0
[   23.459988] kworker/-79      0.n.. 4055304us : blk_mq_free_request: complete: rq -1 8
[   23.462677] systemd--124     1.... 4055543us : blk_mq_make_request: make rq -1 8
[   23.465372] systemd--124     1.... 4055554us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.468070] systemd--124     1.... 4055597us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.470747] systemd--124     1.... 4055600us : blk_mq_try_issue_list_directly: issue direct: rq -1 8, ret 0
[   23.473475] kworker/-79      0.n.. 4056411us : blk_mq_free_request: complete: rq -1 8
[   23.476222] systemd--124     1.... 4056575us : blk_mq_make_request: make rq -1 8
[   23.478964] systemd--124     1.... 4056591us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.481711] systemd--124     1.... 4056631us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.484443] systemd--124     1.... 4056634us : blk_mq_try_issue_list_directly: issue direct: rq -1 8, ret 0
[   23.487230] kworker/-79      0.n.. 4057501us : blk_mq_free_request: complete: rq -1 8
[   23.490020] systemd--124     1.... 4057629us : blk_mq_make_request: make rq -1 8
[   23.492814] systemd--124     1.... 4057641us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.495614] systemd--124     1.... 4057675us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.498404] systemd--124     1.... 4057678us : blk_mq_try_issue_list_directly: issue direct: rq -1 8, ret 0
[   23.501241] kworker/-79      0.n.. 4058606us : blk_mq_free_request: complete: rq -1 8
[   23.504088] systemd--124     1.... 4058745us : blk_mq_make_request: make rq -1 8
[   23.506930] systemd--124     1.... 4058756us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.509791] systemd--124     1.... 4058790us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.512633] systemd--124     1.... 4058793us : blk_mq_try_issue_list_directly: issue direct: rq -1 8, ret 0
[   23.515520] kworker/-79      0.n.. 4059622us : blk_mq_free_request: complete: rq -1 8
[   23.518419] systemd--124     1.... 4059742us : blk_mq_make_request: make rq -1 8
[   23.521316] systemd--124     1.... 4059752us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.524226] systemd--124     1.... 4059783us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.527112] systemd--124     1.... 4059786us : blk_mq_try_issue_list_directly: issue direct: rq -1 8, ret 0
[   23.530049] kworker/-79      0.n.. 4060662us : blk_mq_free_request: complete: rq -1 8
[   23.533004] systemd--124     1.... 4060809us : blk_mq_make_request: make rq -1 8
[   23.535950] systemd--124     1.... 4060821us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.538905] systemd--124     1.... 4060852us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.541839] systemd--124     1.... 4060854us : blk_mq_try_issue_list_directly: issue direct: rq -1 8, ret 0
[   23.544805] kworker/-79      0.n.. 4061812us : blk_mq_free_request: complete: rq -1 8
[   23.547781] systemd--124     1.... 4061945us : blk_mq_make_request: make rq -1 8
[   23.550755] systemd--124     1.... 4061956us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.553741] systemd--124     1.... 4061993us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.556694] systemd--124     1.... 4061995us : blk_mq_try_issue_list_directly: issue direct: rq -1 8, ret 0
[   23.559657] kworker/-79      0.n.. 4062780us : blk_mq_free_request: complete: rq -1 8
[   23.562627] systemd--124     1.... 4063230us : blk_mq_make_request: make rq -1 8
[   23.565594] systemd--124     1.... 4063244us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.568579] systemd--124     1.... 4063284us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.571525] systemd--124     1.... 4063287us : blk_mq_try_issue_list_directly: issue direct: rq -1 8, ret 0
[   23.574487] kworker/-79      0.n.. 4064290us : blk_mq_free_request: complete: rq -1 8
[   23.577455] systemd--124     1.... 4064639us : blk_mq_make_request: make rq -1 8
[   23.580418] systemd--124     1.... 4064652us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.583402] systemd--124     1.... 4064783us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.586344] systemd--124     1.... 4064786us : blk_mq_try_issue_list_directly: issue direct: rq -1 8, ret 0
[   23.589303] kworker/-79      0.n.. 4066341us : blk_mq_free_request: complete: rq -1 8
[   23.592272] systemd--124     1.... 4066386us : blk_mq_make_request: make rq -1 8
[   23.595236] systemd--124     1.... 4066399us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.598222] systemd--124     1.... 4066434us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.601167] systemd--124     1.... 4066437us : blk_mq_try_issue_list_directly: issue direct: rq -1 8, ret 0
[   23.604129] kworker/-79      0.n.. 4067427us : blk_mq_free_request: complete: rq -1 8
[   23.607095] systemd--124     1.... 4067606us : blk_mq_make_request: make rq -1 8
[   23.610059] systemd--124     1.... 4067619us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.613047] systemd--124     1.... 4067662us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.615993] systemd--124     1.... 4067665us : blk_mq_try_issue_list_directly: issue direct: rq -1 8, ret 0
[   23.618950] kworker/-79      0.n.. 4068753us : blk_mq_free_request: complete: rq -1 8
[   23.621915] systemd--124     1.... 4069212us : blk_mq_make_request: make rq -1 8
[   23.624878] systemd--124     1.... 4069226us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.627860] systemd--124     1.... 4069316us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.630804] systemd--124     1.... 4069319us : blk_mq_try_issue_list_directly: issue direct: rq -1 8, ret 0
[   23.633763] kworker/-79      0.n.. 4070420us : blk_mq_free_request: complete: rq -1 8
[   23.636760] systemd--124     1.... 4070465us : blk_mq_make_request: make rq -1 8
[   23.639723] systemd--124     1.... 4070477us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.642708] systemd--124     1.... 4070512us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.645658] systemd--124     1.... 4070515us : blk_mq_try_issue_list_directly: issue direct: rq -1 8, ret 0
[   23.648615] kworker/-79      0.n.. 4071393us : blk_mq_free_request: complete: rq -1 8
[   23.651583] systemd--124     1.... 4071567us : blk_mq_make_request: make rq -1 8
[   23.654542] systemd--124     1.... 4071580us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.657528] systemd--124     1.... 4071633us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.660477] systemd--124     1.... 4071636us : blk_mq_try_issue_list_directly: issue direct: rq -1 8, ret 0
[   23.663430] kworker/-79      0.n.. 4072650us : blk_mq_free_request: complete: rq -1 8
[   23.666398] systemd--124     1.... 4073019us : blk_mq_make_request: make rq -1 8
[   23.669361] systemd--124     1.... 4073035us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.672346] systemd--124     1.... 4073126us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.675303] systemd--124     1.... 4073129us : blk_mq_try_issue_list_directly: issue direct: rq -1 8, ret 0
[   23.678263] kworker/-79      0.... 4074282us : blk_mq_free_request: complete: rq -1 8
[   23.681227] systemd--124     1.... 4077029us : blk_mq_make_request: make rq -1 8
[   23.684194] systemd--124     1.... 4077053us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.687177] systemd--124     1.... 4077111us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.690119] systemd--124     1.... 4077114us : blk_mq_try_issue_list_directly: issue direct: rq -1 8, ret 0
[   23.693077] kworker/-79      0.n.. 4077905us : blk_mq_free_request: complete: rq -1 8
[   23.696048] systemd--124     1.... 4078156us : blk_mq_make_request: make rq -1 8
[   23.699004] systemd--124     1.... 4078169us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.701985] systemd--124     1.... 4078283us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.704935] systemd--124     1.... 4078285us : blk_mq_try_issue_list_directly: issue direct: rq -1 8, ret 0
[   23.707895] kworker/-79      0.n.. 4080196us : blk_mq_free_request: complete: rq -1 8
[   23.710867] systemd--124     1.... 4080498us : blk_mq_make_request: make rq -1 8
[   23.713830] systemd--124     1.... 4080514us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.716819] systemd--124     1.... 4080579us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.719769] systemd--124     1.... 4080582us : blk_mq_try_issue_list_directly: issue direct: rq -1 8, ret 0
[   23.722730] kworker/-79      0.n.. 4081826us : blk_mq_free_request: complete: rq -1 8
[   23.725707] systemd--124     1.... 4081885us : blk_mq_make_request: make rq -1 8
[   23.728670] systemd--124     1.... 4081900us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.731658] systemd--124     1.... 4081949us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.734604] systemd--124     1.... 4081951us : blk_mq_try_issue_list_directly: issue direct: rq -1 8, ret 0
[   23.737568] kworker/-79      0.n.. 4082785us : blk_mq_free_request: complete: rq -1 8
[   23.740541] systemd--124     1.... 4082986us : blk_mq_make_request: make rq -1 8
[   23.743508] systemd--124     1.... 4082999us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.746494] systemd--124     1.... 4083066us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.749441] systemd--124     1.... 4083069us : blk_mq_try_issue_list_directly: issue direct: rq -1 8, ret 0
[   23.752405] kworker/-79      0.n.. 4084083us : blk_mq_free_request: complete: rq -1 8
[   23.755377] systemd--124     1.... 4084699us : blk_mq_make_request: make rq -1 8
[   23.758344] systemd--124     1.... 4084834us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.761335] systemd--124     1.... 4084886us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.764288] systemd--124     1.... 4084889us : blk_mq_try_issue_list_directly: issue direct: rq -1 8, ret 0
[   23.767252] kworker/-79      0.n.. 4086026us : blk_mq_free_request: complete: rq -1 8
[   23.770227] systemd--124     1.... 4086913us : blk_mq_make_request: make rq -1 8
[   23.773191] systemd--124     1.... 4086929us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.776180] systemd--124     1.... 4086973us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.779126] systemd--124     1.... 4086976us : blk_mq_try_issue_list_directly: issue direct: rq -1 8, ret 0
[   23.782085] kworker/-79      0.... 4087848us : blk_mq_free_request: complete: rq -1 8
[   23.785055]     fsck-126     1.... 4088159us : blk_mq_make_request: make rq -1 8
[   23.788022]     fsck-126     1.... 4088175us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.791010]     fsck-126     1.... 4088242us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.793960]     fsck-126     1.... 4088244us : blk_mq_try_issue_list_directly: issue direct: rq -1 8, ret 0
[   23.796921] systemd--124     1.... 4089779us : blk_mq_make_request: make rq -1 9
[   23.799880] systemd--124     1.... 4089797us : mmc_mq_queue_rq: mmc before issue rq -1 9
[   23.802849] systemd--124     1.... 4089905us : blk_mq_free_request: complete: rq -1 8
[   23.805826] systemd--124     1.... 4089911us : mmc_mq_queue_rq: queue rq -1 9, 0
[   23.808782] systemd--124     1.... 4089913us : blk_mq_try_issue_list_directly: issue direct: rq -1 9, ret 0
[   23.811745]     fsck-126     1.... 4090785us : blk_mq_make_request: make rq -1 8
[   23.814708]     fsck-126     1.... 4090795us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   23.817681]     fsck-126     1.... 4090916us : blk_mq_free_request: complete: rq -1 9
[   23.820670]     fsck-126     1.... 4090921us : mmc_mq_queue_rq: queue rq -1 8, 0
[   23.823626]     fsck-126     1.... 4090923us : blk_mq_try_issue_list_directly: issue direct: rq -1 8, ret 0
[   23.826597] systemd--124     1.... 4091154us : blk_mq_make_request: make rq -1 9
[   23.829568] systemd--124     1.... 4091162us : mmc_mq_queue_rq: mmc before issue rq -1 9
[   23.832543] systemd--124     1.... 4092264us : blk_mq_free_request: complete: rq -1 8
[   23.835530] systemd--124     1.... 4092271us : mmc_mq_queue_rq: queue rq -1 9, 0
[   23.838496] systemd--124     1.... 4092274us : blk_mq_try_issue_list_directly: issue direct: rq -1 9, ret 0
[   23.841475] kworker/-79      0.... 4093073us : blk_mq_free_request: complete: rq -1 9
[   23.844458] fsck.ext-127     1.... 4111302us : blk_mq_make_request: make rq -1 9
[   23.847441] fsck.ext-127     1.... 4111462us : mmc_mq_queue_rq: mmc before issue rq -1 9
[   23.850439] fsck.ext-127     1.... 4111626us : mmc_mq_queue_rq: queue rq -1 9, 0
[   23.853403] fsck.ext-127     1.... 4111629us : blk_mq_try_issue_list_directly: issue direct: rq -1 9, ret 0
[   23.856378] kworker/-79      0.n.. 4112696us : blk_mq_free_request: complete: rq -1 9
[   23.859364] fsck.ext-127     1.n.. 4113532us : blk_mq_make_request: make rq -1 9
[   23.862343] fsck.ext-127     1.... 4113558us : mmc_mq_queue_rq: mmc before issue rq -1 9
[   23.865346] fsck.ext-127     1.... 4113846us : mmc_mq_queue_rq: queue rq -1 9, 0
[   23.868311] fsck.ext-127     1.... 4113849us : blk_mq_try_issue_list_directly: issue direct: rq -1 9, ret 0
[   23.871286] kworker/-79      0.n.. 4116751us : blk_mq_free_request: complete: rq -1 9
[   23.874272] fsck.ext-127     1.... 4117532us : blk_mq_make_request: make rq -1 9
[   23.877251] fsck.ext-127     1.... 4117552us : mmc_mq_queue_rq: mmc before issue rq -1 9
[   23.880245] fsck.ext-127     1.... 4117668us : mmc_mq_queue_rq: queue rq -1 9, 0
[   23.883210] fsck.ext-127     1.... 4117670us : blk_mq_try_issue_list_directly: issue direct: rq -1 9, ret 0
[   23.886184] kworker/-79      0.n.. 4118756us : blk_mq_free_request: complete: rq -1 9
[   23.889167] fsck.ext-127     1.... 4118892us : blk_mq_make_request: make rq -1 9
[   23.892144] fsck.ext-127     1.... 4118906us : mmc_mq_queue_rq: mmc before issue rq -1 9
[   23.895142] fsck.ext-127     1.... 4118948us : mmc_mq_queue_rq: queue rq -1 9, 0
[   23.898097] fsck.ext-127     1.... 4118950us : blk_mq_try_issue_list_directly: issue direct: rq -1 9, ret 0
[   23.901072] kworker/-79      0.n.. 4119719us : blk_mq_free_request: complete: rq -1 9
[   23.904056] fsck.ext-127     1.... 4119890us : blk_mq_make_request: make rq -1 9
[   23.907032] fsck.ext-127     1.... 4119900us : mmc_mq_queue_rq: mmc before issue rq -1 9
[   23.910034] fsck.ext-127     1.... 4120073us : mmc_mq_queue_rq: queue rq -1 9, 0
[   23.912994] fsck.ext-127     1.... 4120075us : blk_mq_try_issue_list_directly: issue direct: rq -1 9, ret 0
[   23.915968] kworker/-79      0.n.. 4122744us : blk_mq_free_request: complete: rq -1 9
[   23.918950] fsck.ext-127     1.... 4122880us : blk_mq_make_request: make rq -1 9
[   23.921925] fsck.ext-127     1.... 4122890us : mmc_mq_queue_rq: mmc before issue rq -1 9
[   23.924924] fsck.ext-127     1.... 4123349us : mmc_mq_queue_rq: queue rq -1 9, 0
[   23.927881] fsck.ext-127     1.... 4123351us : blk_mq_try_issue_list_directly: issue direct: rq -1 9, ret 0
[   23.930854] kworker/-79      0.n.. 4127283us : blk_mq_free_request: complete: rq -1 9
[   23.933835] fsck.ext-127     1.... 4127401us : blk_mq_make_request: make rq -1 9
[   23.936816] fsck.ext-127     1.... 4127411us : mmc_mq_queue_rq: mmc before issue rq -1 9
[   23.939817] fsck.ext-127     1.... 4127913us : mmc_mq_queue_rq: queue rq -1 9, 0
[   23.942778] fsck.ext-127     1.... 4127916us : blk_mq_try_issue_list_directly: issue direct: rq -1 9, ret 0
[   23.945753] kworker/-79      0.n.. 4131944us : blk_mq_free_request: complete: rq -1 9
[   23.948739] fsck.ext-127     1.... 4132132us : blk_mq_make_request: make rq -1 9
[   23.951722] fsck.ext-127     1.... 4132144us : mmc_mq_queue_rq: mmc before issue rq -1 9
[   23.954715] fsck.ext-127     1.... 4132201us : mmc_mq_queue_rq: queue rq -1 9, 0
[   23.957679] fsck.ext-127     1.... 4132204us : blk_mq_try_issue_list_directly: issue direct: rq -1 9, ret 0
[   23.960655] kworker/-79      0.n.. 4133450us : blk_mq_free_request: complete: rq -1 9
[   23.963641] fsck.ext-127     1.... 4134802us : blk_mq_make_request: make rq -1 9
[   23.966617] fsck.ext-127     1.... 4134822us : mmc_mq_queue_rq: mmc before issue rq -1 9
[   23.969607] fsck.ext-127     1.... 4134938us : mmc_mq_queue_rq: queue rq -1 9, 0
[   23.972557] fsck.ext-127     1.... 4134940us : blk_mq_try_issue_list_directly: issue direct: rq -1 9, ret 0
[   23.975528] kworker/-79      0.n.. 4136080us : blk_mq_free_request: complete: rq -1 9
[   23.978503] fsck.ext-127     1.... 4136118us : blk_mq_make_request: make rq -1 9
[   23.981473] fsck.ext-127     1.... 4136129us : mmc_mq_queue_rq: mmc before issue rq -1 9
[   23.984456] fsck.ext-127     1.... 4136162us : mmc_mq_queue_rq: queue rq -1 9, 0
[   23.987398] fsck.ext-127     1.... 4136164us : blk_mq_try_issue_list_directly: issue direct: rq -1 9, ret 0
[   23.990355] kworker/-79      0.n.. 4136845us : blk_mq_free_request: complete: rq -1 9
[   23.993320] fsck.ext-127     1.... 4136994us : blk_mq_make_request: make rq -1 9
[   23.996277] fsck.ext-127     1.... 4137004us : mmc_mq_queue_rq: mmc before issue rq -1 9
[   23.999259] fsck.ext-127     1.... 4137061us : mmc_mq_queue_rq: queue rq -1 9, 0
[   24.002201] fsck.ext-127     1.... 4137064us : blk_mq_try_issue_list_directly: issue direct: rq -1 9, ret 0
[   24.005159] kworker/-79      0.n.. 4137972us : blk_mq_free_request: complete: rq -1 9
[   24.008131] fsck.ext-127     1.... 4138771us : blk_mq_make_request: make rq -1 9
[   24.011092] fsck.ext-127     1.... 4138785us : mmc_mq_queue_rq: mmc before issue rq -1 9
[   24.014079] fsck.ext-127     1.... 4138868us : mmc_mq_queue_rq: queue rq -1 9, 0
[   24.017024] fsck.ext-127     1.... 4138871us : blk_mq_try_issue_list_directly: issue direct: rq -1 9, ret 0
[   24.019991] kworker/-79      0.... 4139782us : blk_mq_free_request: complete: rq -1 9
[   24.022960] fsck.ext-127     1.... 4139863us : blk_mq_make_request: make rq -1 9
[   24.025923] fsck.ext-127     1.... 4139875us : mmc_mq_queue_rq: mmc before issue rq -1 9
[   24.028904] fsck.ext-127     1.... 4139995us : mmc_mq_queue_rq: queue rq -1 9, 0
[   24.031844] fsck.ext-127     1.... 4139997us : blk_mq_try_issue_list_directly: issue direct: rq -1 9, ret 0
[   24.034802] kworker/-79      0.n.. 4141257us : blk_mq_free_request: complete: rq -1 9
[   24.037763] fsck.ext-127     1.... 4144675us : blk_mq_make_request: make rq -1 9
[   24.040726] fsck.ext-127     1.... 4144693us : mmc_mq_queue_rq: mmc before issue rq -1 9
[   24.043711] fsck.ext-127     1.... 4144821us : mmc_mq_queue_rq: queue rq -1 9, 0
[   24.046658] fsck.ext-127     1.... 4144824us : blk_mq_try_issue_list_directly: issue direct: rq -1 9, ret 0
[   24.049614] kworker/-79      0.n.. 4145681us : blk_mq_free_request: complete: rq -1 9
[   24.052581] systemd--129     0.n.. 4340882us : blk_mq_make_request: make rq -1 44
[   24.055544] systemd--129     0.... 4340934us : mmc_mq_queue_rq: mmc before issue rq -1 44
[   24.058532] systemd--129     0.n.. 4341065us : mmc_mq_queue_rq: queue rq -1 44, 0
[   24.061485] systemd--129     0.n.. 4341084us : blk_mq_try_issue_list_directly: issue direct: rq -1 44, ret 0
[   24.064451] kworker/-79      0.n.. 4342370us : blk_mq_free_request: complete: rq -1 44
[   24.067426] systemd--129     0.n.. 4395754us : blk_mq_make_request: make rq -1 44
[   24.070398] systemd--129     0.n.. 4396020us : mmc_mq_queue_rq: mmc before issue rq -1 44
[   24.073391] systemd--129     0.n.. 4396278us : mmc_mq_queue_rq: queue rq -1 44, 0
[   24.076347] systemd--129     0.n.. 4396284us : blk_mq_try_issue_list_directly: issue direct: rq -1 44, ret 0
[   24.079315] kworker/-79      0.n.. 4397007us : blk_mq_free_request: complete: rq -1 44
[   24.082297] (mount-f-130     1.... 4409005us : blk_mq_make_request: make rq -1 9
[   24.085272] (mount-f-130     1.... 4409030us : mmc_mq_queue_rq: mmc before issue rq -1 9
[   24.088274] (mount-f-130     1.... 4409105us : mmc_mq_queue_rq: queue rq -1 9, 0
[   24.091229] (mount-f-130     1.... 4409108us : blk_mq_try_issue_list_directly: issue direct: rq -1 9, ret 0
[   24.094204] kworker/-79      0.n.. 4410214us : blk_mq_free_request: complete: rq -1 9
[   24.097181] systemd--131     1.... 4452908us : blk_mq_make_request: make rq -1 9
[   24.100161] systemd--131     1.... 4452943us : mmc_mq_queue_rq: mmc before issue rq -1 9
[   24.103164] systemd--131     1.... 4453041us : mmc_mq_queue_rq: queue rq -1 9, 0
[   24.106129] systemd--131     1.... 4453044us : blk_mq_try_issue_list_directly: issue direct: rq -1 9, ret 0
[   24.109103]    mount-133     1.... 4487715us : blk_mq_make_request: make rq -1 10
[   24.112072] kworker/-19      1.... 4492842us : mmc_mq_queue_rq: mmc before issue rq -1 10
[   24.115077] kworker/-19      1.... 4492981us : blk_mq_free_request: complete: rq -1 9
[   24.118089] kworker/-19      1.... 4492992us : mmc_mq_queue_rq: queue rq -1 10, 0
[   24.121073] kworker/-79      0.n.. 4506666us : blk_mq_free_request: complete: rq -1 10
[   24.124040] systemd--131     0.n.. 4523439us : blk_mq_make_request: make rq -1 44
[   24.127000] systemd--131     0.... 4523514us : mmc_mq_queue_rq: mmc before issue rq -1 44
[   24.129972] systemd--131     0.n.. 4523693us : mmc_mq_queue_rq: queue rq -1 44, 0
[   24.132935] kworker/-79      0.n.. 4524555us : blk_mq_free_request: complete: rq -1 44
[   24.135907] systemd--131     0.n.. 4526425us : blk_mq_make_request: make rq -1 44
[   24.138836] systemd--131     0.n.. 4526459us : mmc_mq_queue_rq: mmc before issue rq -1 44
[   24.141775] systemd--131     0.n.. 4526793us : mmc_mq_queue_rq: queue rq -1 44, 0
[   24.144695] kworker/-79      0.n.. 4527763us : blk_mq_free_request: complete: rq -1 44
[   24.147644] systemd--131     0.n.. 4529157us : blk_mq_make_request: make rq -1 44
[   24.150569] systemd--131     0.... 4529197us : mmc_mq_queue_rq: mmc before issue rq -1 44
[   24.153475] systemd--131     0.n.. 4529280us : mmc_mq_queue_rq: queue rq -1 44, 0
[   24.156363] systemd--131     0.n.. 4529283us : blk_mq_try_issue_list_directly: issue direct: rq -1 44, ret 0
[   24.159293] kworker/-79      0.n.. 4530199us : blk_mq_free_request: complete: rq -1 44
[   24.162248] systemd--131     0.n.. 4531240us : blk_mq_make_request: make rq -1 44
[   24.165172] systemd--131     0.... 4531273us : mmc_mq_queue_rq: mmc before issue rq -1 44
[   24.168081] systemd--131     0.n.. 4531346us : mmc_mq_queue_rq: queue rq -1 44, 0
[   24.170977] systemd--131     0.n.. 4531352us : blk_mq_try_issue_list_directly: issue direct: rq -1 44, ret 0
[   24.173922] kworker/-79      0.n.. 4532079us : blk_mq_free_request: complete: rq -1 44
[   24.176886] systemd--131     0.n.. 4533471us : blk_mq_make_request: make rq -1 44
[   24.179828] systemd--131     0.... 4533505us : mmc_mq_queue_rq: mmc before issue rq -1 44
[   24.182747] systemd--131     0.... 4533735us : mmc_mq_queue_rq: queue rq -1 44, 0
[   24.185648] systemd--131     0.n.. 4533748us : blk_mq_try_issue_list_directly: issue direct: rq -1 44, ret 0
[   24.188594] kworker/-79      0.n.. 4534525us : blk_mq_free_request: complete: rq -1 44
[   24.191565] systemd--131     0.n.. 4536292us : blk_mq_make_request: make rq -1 44
[   24.194514] systemd--131     0.... 4536490us : mmc_mq_queue_rq: mmc before issue rq -1 44
[   24.197440] systemd--131     0.n.. 4536583us : mmc_mq_queue_rq: queue rq -1 44, 0
[   24.200348] systemd--131     0.n.. 4536586us : blk_mq_try_issue_list_directly: issue direct: rq -1 44, ret 0
[   24.203301] kworker/-79      0.n.. 4537244us : blk_mq_free_request: complete: rq -1 44
[   24.206266] systemd--131     0.n.. 4538598us : blk_mq_make_request: make rq -1 44
[   24.209212] systemd--131     0.... 4538720us : mmc_mq_queue_rq: mmc before issue rq -1 44
[   24.212131] systemd--131     0.n.. 4538801us : mmc_mq_queue_rq: queue rq -1 44, 0
[   24.215038] systemd--131     0.n.. 4538805us : blk_mq_try_issue_list_directly: issue direct: rq -1 44, ret 0
[   24.217986] kworker/-79      0.n.. 4539504us : blk_mq_free_request: complete: rq -1 44
[   24.220951] systemd--131     0.n.. 4541841us : blk_mq_make_request: make rq -1 44
[   24.223894] systemd--131     0.... 4542033us : mmc_mq_queue_rq: mmc before issue rq -1 44
[   24.226825] systemd--131     0.n.. 4542114us : mmc_mq_queue_rq: queue rq -1 44, 0
[   24.229729] systemd--131     0.n.. 4542117us : blk_mq_try_issue_list_directly: issue direct: rq -1 44, ret 0
[   24.232678] kworker/-79      0.n.. 4542886us : blk_mq_free_request: complete: rq -1 44
[   24.235651] systemd--131     0.n.. 4543888us : blk_mq_make_request: make rq -1 44
[   24.238600] systemd--131     0.... 4543926us : mmc_mq_queue_rq: mmc before issue rq -1 44
[   24.241527] systemd--131     0.n.. 4543994us : mmc_mq_queue_rq: queue rq -1 44, 0
[   24.244435] systemd--131     0.n.. 4543999us : blk_mq_try_issue_list_directly: issue direct: rq -1 44, ret 0
[   24.247393] kworker/-79      0.n.. 4544600us : blk_mq_free_request: complete: rq -1 44
[   24.250366] systemd--131     0.n.. 4546582us : blk_mq_make_request: make rq -1 44
[   24.253318] systemd--131     0.... 4546616us : mmc_mq_queue_rq: mmc before issue rq -1 44
[   24.256252] systemd--131     0.n.. 4546686us : mmc_mq_queue_rq: queue rq -1 44, 0
[   24.259155] systemd--131     0.n.. 4546692us : blk_mq_try_issue_list_directly: issue direct: rq -1 44, ret 0
[   24.262103] kworker/-79      0.... 4547307us : blk_mq_free_request: complete: rq -1 44
[   24.265063] systemd--131     0.n.. 4547989us : blk_mq_make_request: make rq -1 44
[   24.268011] systemd--131     0.n.. 4548026us : mmc_mq_queue_rq: mmc before issue rq -1 44
[   24.270969] systemd--131     0.n.. 4548086us : mmc_mq_queue_rq: queue rq -1 44, 0
[   24.273903] systemd--131     0.... 4548285us : blk_mq_make_request: make rq -1 45
[   24.276846] systemd--131     0.n.. 4548299us : mmc_mq_queue_rq: mmc before issue rq -1 45
[   24.279787] systemd--131     0.n.. 4548952us : blk_mq_free_request: complete: rq -1 44
[   24.282724] systemd--131     0.n.. 4548960us : mmc_mq_queue_rq: queue rq -1 45, 0
[   24.285652] systemd--131     0.n.. 4549038us : blk_mq_make_request: make rq -1 44
[   24.288586] systemd--131     0.... 4549368us : mmc_mq_queue_rq: mmc before issue rq -1 44
[   24.291521] systemd--131     0.n.. 4549520us : blk_mq_free_request: complete: rq -1 45
[   24.294457] systemd--131     0.n.. 4549525us : mmc_mq_queue_rq: queue rq -1 44, 0
[   24.297384] systemd--131     0.n.. 4549652us : blk_mq_make_request: make rq -1 45
[   24.300316] systemd--131     0.... 4549678us : mmc_mq_queue_rq: mmc before issue rq -1 45
[   24.303239] systemd--131     0.n.. 4550207us : blk_mq_free_request: complete: rq -1 44
[   24.306130] systemd--131     0.n.. 4550212us : mmc_mq_queue_rq: queue rq -1 45, 0
[   24.309021] systemd--131     0.n.. 4550281us : blk_mq_make_request: make rq -1 44
[   24.311901] systemd--131     0.... 4550538us : mmc_mq_queue_rq: mmc before issue rq -1 44
[   24.314810] systemd--131     0.n.. 4550866us : blk_mq_free_request: complete: rq -1 45
[   24.317692] systemd--131     0.n.. 4550872us : mmc_mq_queue_rq: queue rq -1 44, 0
[   24.320536] systemd--131     0.... 4551116us : blk_mq_make_request: make rq -1 45
[   24.323377] systemd--131     0.... 4551121us : mmc_mq_queue_rq: mmc before issue rq -1 45
[   24.326229] systemd--131     0.... 4551437us : blk_mq_free_request: complete: rq -1 44
[   24.329089] systemd--131     0.... 4551443us : mmc_mq_queue_rq: queue rq -1 45, 0
[   24.331920] systemd--131     0.... 4551468us : blk_mq_make_request: make rq -1 44
[   24.334717] systemd--131     0.... 4551473us : mmc_mq_queue_rq: mmc before issue rq -1 44
[   24.337520] systemd--131     0.n.. 4552163us : blk_mq_free_request: complete: rq -1 45
[   24.340319] systemd--131     0.n.. 4552170us : mmc_mq_queue_rq: queue rq -1 44, 0
[   24.343119] systemd--131     0.... 4552406us : blk_mq_make_request: make rq -1 45
[   24.345897] systemd--131     0.n.. 4552420us : mmc_mq_queue_rq: mmc before issue rq -1 45
[   24.348655] systemd--131     0.... 4552798us : blk_mq_free_request: complete: rq -1 44
[   24.351416] systemd--131     0.... 4552803us : mmc_mq_queue_rq: queue rq -1 45, 0
[   24.354170] systemd--131     0.... 4552827us : blk_mq_make_request: make rq -1 44
[   24.356926] systemd--131     0.... 4552832us : mmc_mq_queue_rq: mmc before issue rq -1 44
[   24.359664] systemd--131     0.n.. 4553473us : blk_mq_free_request: complete: rq -1 45
[   24.362383] systemd--131     0.n.. 4553478us : mmc_mq_queue_rq: queue rq -1 44, 0
[   24.365086] systemd--131     0.... 4553648us : blk_mq_make_request: make rq -1 45
[   24.367784] systemd--131     0.... 4553653us : mmc_mq_queue_rq: mmc before issue rq -1 45
[   24.370499] systemd--131     0.n.. 4554136us : blk_mq_free_request: complete: rq -1 44
[   24.373197] systemd--131     0.n.. 4554141us : mmc_mq_queue_rq: queue rq -1 45, 0
[   24.375864] systemd--131     0.n.. 4554207us : blk_mq_make_request: make rq -1 44
[   24.378525] systemd--131     0.... 4554513us : mmc_mq_queue_rq: mmc before issue rq -1 44
[   24.381195] systemd--131     0.n.. 4554766us : blk_mq_free_request: complete: rq -1 45
[   24.383876] systemd--131     0.n.. 4554770us : mmc_mq_queue_rq: queue rq -1 44, 0
[   24.386529] systemd--131     0.... 4554807us : blk_mq_make_request: make rq -1 45
[   24.389148] systemd--131     0.... 4554811us : mmc_mq_queue_rq: mmc before issue rq -1 45
[   24.391775] systemd--131     0.... 4555353us : blk_mq_free_request: complete: rq -1 44
[   24.394403] systemd--131     0.... 4555357us : mmc_mq_queue_rq: queue rq -1 45, 0
[   24.397035] systemd--131     0.... 4555386us : blk_mq_make_request: make rq -1 44
[   24.399640] systemd--131     0.... 4555391us : mmc_mq_queue_rq: mmc before issue rq -1 44
[   24.402222] systemd--131     0.... 4555938us : blk_mq_free_request: complete: rq -1 45
[   24.404803] systemd--131     0.... 4555942us : mmc_mq_queue_rq: queue rq -1 44, 0
[   24.407369] systemd--131     0.... 4555959us : blk_mq_make_request: make rq -1 45
[   24.409946] systemd--131     0.... 4555962us : mmc_mq_queue_rq: mmc before issue rq -1 45
[   24.412536] systemd--131     0.... 4556519us : blk_mq_free_request: complete: rq -1 44
[   24.415122] systemd--131     0.... 4556524us : mmc_mq_queue_rq: queue rq -1 45, 0
[   24.417701] systemd--131     0.... 4556541us : blk_mq_make_request: make rq -1 44
[   24.420273] systemd--131     0.... 4556545us : mmc_mq_queue_rq: mmc before issue rq -1 44
[   24.422865]  systemd-1       1.... 4565271us : blk_mq_make_request: make rq -1 10
[   24.425456]  systemd-1       1.n.. 4565286us : mmc_mq_queue_rq: mmc before issue rq -1 10
[   24.428056]  systemd-1       1.... 4565375us : blk_mq_free_request: complete: rq -1 45
[   24.430662]  systemd-1       1.... 4565382us : mmc_mq_queue_rq: queue rq -1 10, 0
[   24.433264] kworker/-79      0.n.. 4566174us : blk_mq_free_request: complete: rq -1 10
[   24.435879]  systemd-1       1.... 4566288us : blk_mq_make_request: make rq -1 10
[   24.438486]  systemd-1       1.... 4566294us : mmc_mq_queue_rq: mmc before issue rq -1 10
[   24.441107]  systemd-1       1.... 4566325us : mmc_mq_queue_rq: queue rq -1 10, 0
[   24.443714]  systemd-1       1.... 4566343us : blk_mq_make_request: make rq -1 11
[   24.446313]  systemd-1       1.n.. 4566347us : mmc_mq_queue_rq: mmc before issue rq -1 11
[   24.448913]  systemd-1       1.... 4566928us : blk_mq_free_request: complete: rq -1 10
[   24.451511]  systemd-1       1.... 4566933us : mmc_mq_queue_rq: queue rq -1 11, 0
[   24.454106]  systemd-1       1.... 4566952us : blk_mq_make_request: make rq -1 10
[   24.456701]  systemd-1       1.... 4566957us : mmc_mq_queue_rq: mmc before issue rq -1 10
[   24.459291]  systemd-1       1.... 4567506us : blk_mq_free_request: complete: rq -1 11
[   24.461884]  systemd-1       1.... 4567511us : mmc_mq_queue_rq: queue rq -1 10, 0
[   24.464474]  systemd-1       1.... 4567531us : blk_mq_make_request: make rq -1 11
[   24.467059]  systemd-1       1.... 4567535us : mmc_mq_queue_rq: mmc before issue rq -1 11
[   24.469649]  systemd-1       1.n.. 4568089us : blk_mq_free_request: complete: rq -1 10
[   24.472233]  systemd-1       1.n.. 4568094us : mmc_mq_queue_rq: queue rq -1 11, 0
[   24.474821]  systemd-1       1.... 4568152us : blk_mq_make_request: make rq -1 10
[   24.477400]  systemd-1       1.... 4568157us : mmc_mq_queue_rq: mmc before issue rq -1 10
[   24.479989]  systemd-1       1.... 4568675us : blk_mq_free_request: complete: rq -1 11
[   24.482576]  systemd-1       1.... 4568680us : mmc_mq_queue_rq: queue rq -1 10, 0
[   24.485161]  systemd-1       1.... 4569000us : blk_mq_make_request: make rq -1 11
[   24.487741]  systemd-1       1.n.. 4569008us : mmc_mq_queue_rq: mmc before issue rq -1 11
[   24.490323] systemd--131     1.... 4569309us : blk_mq_free_request: complete: rq -1 10
[   24.492920] systemd--131     1.... 4569314us : mmc_mq_queue_rq: queue rq -1 44, 0
[   24.495513] systemd--131     1.... 4569337us : blk_mq_make_request: make rq -1 10
[   24.498101] systemd--131     1.... 4569341us : mmc_mq_queue_rq: mmc before issue rq -1 10
[   24.500688]  systemd-1       1.... 4569386us : mmc_mq_queue_rq: queue rq -1 11, 0
[   24.503273]  systemd-1       1.... 4569406us : blk_mq_make_request: make rq -1 12
[   24.505857]  systemd-1       1.... 4569410us : mmc_mq_queue_rq: mmc before issue rq -1 12
[   24.508444] systemd--131     1.... 4570069us : blk_mq_free_request: complete: rq -1 44
[   24.511042] systemd--131     1.... 4570073us : mmc_mq_queue_rq: queue rq -1 10, 0
[   24.513634] systemd--131     1.... 4570094us : blk_mq_make_request: make rq -1 13
[   24.516227] systemd--131     1.... 4570098us : mmc_mq_queue_rq: mmc before issue rq -1 13
[   24.518825] systemd--131     1.n.. 4570237us : mmc_mq_queue_rq: queue rq -1 13, 0
[   24.521399] kworker/-134     1.... 4570260us : mmc_mq_queue_rq: mmc before issue rq -1 10
[   24.523993] systemd--131     1.... 4570318us : blk_mq_make_request: make rq -1 14
[   24.526594] systemd--131     1.... 4570322us : mmc_mq_queue_rq: mmc before issue rq -1 14
[   24.529199]  systemd-1       1.... 4570364us : mmc_mq_queue_rq: queue rq -1 12, 0
[   24.531798]  systemd-1       1.... 4570409us : blk_mq_make_request: make rq -1 15
[   24.534389]  systemd-1       1.... 4570414us : mmc_mq_queue_rq: mmc before issue rq -1 15
[   24.536997] kworker/-134     1.... 4570835us : blk_mq_free_request: complete: rq -1 13
[   24.539613] kworker/-134     1.... 4570840us : mmc_mq_queue_rq: queue rq -1 10, 0
[   24.542224] systemd--131     1.n.. 4570977us : mmc_mq_queue_rq: queue rq -1 14, 0
[   24.544808] kworker/-134     1.... 4570996us : mmc_mq_queue_rq: mmc before issue rq -1 10
[   24.547409] systemd--131     1.... 4571041us : blk_mq_make_request: make rq -1 13
[   24.550016] systemd--131     1.... 4571045us : mmc_mq_queue_rq: mmc before issue rq -1 13
[   24.552607]  systemd-1       1.... 4571084us : mmc_mq_queue_rq: queue rq -1 15, 0
[   24.555190]  systemd-1       1.... 4571104us : blk_mq_make_request: make rq -1 0
[   24.557767]  systemd-1       1.... 4571108us : mmc_mq_queue_rq: mmc before issue rq -1 0
[   24.560349] kworker/-134     1.... 4571588us : blk_mq_free_request: complete: rq -1 14
[   24.562925] kworker/-134     1.... 4571593us : mmc_mq_queue_rq: queue rq -1 10, 0
[   24.565495] systemd--131     1.n.. 4571725us : mmc_mq_queue_rq: queue rq -1 13, 0
[   24.568048] kworker/-134     1.... 4571742us : mmc_mq_queue_rq: mmc before issue rq -1 10
[   24.570614] systemd--131     1.... 4571785us : blk_mq_make_request: make rq -1 14
[   24.573192] systemd--131     1.... 4571789us : mmc_mq_queue_rq: mmc before issue rq -1 14
[   24.575781]  systemd-1       1.... 4571831us : mmc_mq_queue_rq: queue rq -1 0, 0
[   24.578353]  systemd-1       1.n.. 4571852us : blk_mq_make_request: make rq -1 1
[   24.580919]  systemd-1       1.... 4571889us : mmc_mq_queue_rq: mmc before issue rq -1 1
[   24.583510] kworker/-134     1.... 4572332us : blk_mq_free_request: complete: rq -1 13
[   24.586105] kworker/-134     1.... 4572336us : mmc_mq_queue_rq: queue rq -1 10, 0
[   24.588692] systemd--131     1.n.. 4572471us : mmc_mq_queue_rq: queue rq -1 14, 0
[   24.591257] kworker/-134     1.... 4572488us : mmc_mq_queue_rq: mmc before issue rq -1 10
[   24.593839] systemd--131     1.... 4572534us : blk_mq_make_request: make rq -1 13
[   24.596431] systemd--131     1.... 4572538us : mmc_mq_queue_rq: mmc before issue rq -1 13
[   24.599024]  systemd-1       1.n.. 4572577us : mmc_mq_queue_rq: queue rq -1 1, 0
[   24.601612]  systemd-1       1.... 4572648us : blk_mq_make_request: make rq -1 2
[   24.604203]  systemd-1       1.n.. 4572654us : mmc_mq_queue_rq: mmc before issue rq -1 2
[   24.606803] kworker/-134     1.... 4573079us : blk_mq_free_request: complete: rq -1 14
[   24.609414] kworker/-134     1.... 4573084us : mmc_mq_queue_rq: queue rq -1 10, 0
[   24.612016] systemd--131     1.n.. 4620687us : mmc_mq_queue_rq: queue rq -1 13, 0
[   24.614605] kworker/-134     1.... 4620735us : mmc_mq_queue_rq: mmc before issue rq -1 10
[   24.617201] systemd--131     1.... 4620797us : blk_mq_make_request: make rq -1 14
[   24.619789] systemd--131     1.... 4620806us : mmc_mq_queue_rq: mmc before issue rq -1 14
[   24.622389]  systemd-1       0.n.. 4620970us : mmc_mq_queue_rq: queue rq -1 2, 0
[   24.624986]  systemd-1       0.... 4621189us : blk_mq_make_request: make rq -1 44
[   24.627581]  systemd-1       0.... 4621367us : mmc_mq_queue_rq: mmc before issue rq -1 44
[   24.630190]  systemd-1       1.... 4623467us : blk_mq_free_request: complete: rq -1 13
[   24.632792]  systemd-1       1.... 4623474us : mmc_mq_queue_rq: queue rq -1 44, 0
[   24.635395]  systemd-1       1.... 4623496us : blk_mq_make_request: make rq -1 13
[   24.637976]  systemd-1       1.... 4623503us : mmc_mq_queue_rq: mmc before issue rq -1 13
[   24.640570] systemd--131     1.... 4623544us : mmc_mq_queue_rq: queue rq -1 14, 0
[   24.643157] systemd--131     1.... 4623565us : blk_mq_make_request: make rq -1 3
[   24.645739] systemd--131     1.... 4623569us : mmc_mq_queue_rq: mmc before issue rq -1 3
[   24.648336] kworker/-134     1.... 4623605us : mmc_mq_queue_rq: queue rq -1 10, 0
[   24.650921] systemd--131     1.... 4744569us : blk_mq_free_request: complete: rq -1 10
[   24.653515] systemd--131     1.... 4744577us : mmc_mq_queue_rq: queue rq -1 3, 0
[   24.656103] systemd--131     1.... 4744612us : blk_mq_make_request: make rq -1 10
[   24.658686] systemd--131     1.... 4744618us : mmc_mq_queue_rq: mmc before issue rq -1 10
[   24.661279] systemd--131     1.... 4744670us : blk_mq_free_request: complete: rq -1 3
[   24.663870] systemd--131     1.... 4744674us : mmc_mq_queue_rq: queue rq -1 10, 0
[   24.666440] systemd--131     1.... 4744692us : blk_mq_make_request: make rq -1 3
[   24.668997] systemd--131     1.... 4744696us : mmc_mq_queue_rq: mmc before issue rq -1 3
[   24.671589]  systemd-1       1.... 4744759us : mmc_mq_queue_rq: queue rq -1 13, 0
[   24.674169]  systemd-1       1.... 4744782us : blk_mq_make_request: make rq -1 4
[   24.676731]  systemd-1       1.... 4744788us : mmc_mq_queue_rq: mmc before issue rq -1 4
[   24.679297]  systemd-1       1.... 4745259us : blk_mq_free_request: complete: rq -1 10
[   24.681867]  systemd-1       1.... 4745264us : mmc_mq_queue_rq: queue rq -1 4, 0
[   24.684435]  systemd-1       1.... 4745286us : blk_mq_make_request: make rq -1 10
[   24.686998]  systemd-1       1.... 4745290us : mmc_mq_queue_rq: mmc before issue rq -1 10
[   24.689557]  systemd-1       1.n.. 4745431us : mmc_mq_queue_rq: queue rq -1 10, 0
[   24.692099] kworker/-134     1.... 4745451us : mmc_mq_queue_rq: mmc before issue rq -1 4
[   24.694673]  systemd-1       1.... 4745507us : blk_mq_make_request: make rq -1 5
[   24.697245]  systemd-1       1.... 4745511us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   24.699816] kworker/-134     1.... 4746222us : blk_mq_free_request: complete: rq -1 10
[   24.702397] kworker/-134     1.... 4746227us : mmc_mq_queue_rq: queue rq -1 4, 0
[   24.704974]  systemd-1       1.... 4746841us : blk_mq_free_request: complete: rq -1 4
[   24.707573]  systemd-1       1.... 4746845us : mmc_mq_queue_rq: queue rq -1 5, 0
[   24.710161]  systemd-1       1.... 4746867us : blk_mq_make_request: make rq -1 4
[   24.712727]  systemd-1       1.... 4746871us : mmc_mq_queue_rq: mmc before issue rq -1 4
[   24.715303]  systemd-1       1.... 4752791us : blk_mq_free_request: complete: rq -1 5
[   24.717899]  systemd-1       1.... 4752800us : mmc_mq_queue_rq: queue rq -1 4, 0
[   24.720492]  systemd-1       1.... 4752836us : blk_mq_make_request: make rq -1 5
[   24.723061]  systemd-1       1.... 4752842us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   24.725638]  systemd-1       1.... 4753315us : blk_mq_free_request: complete: rq -1 4
[   24.728222]  systemd-1       1.... 4753321us : mmc_mq_queue_rq: queue rq -1 5, 0
[   24.730792]  systemd-1       1.... 4753344us : blk_mq_make_request: make rq -1 4
[   24.733357]  systemd-1       1.... 4753348us : mmc_mq_queue_rq: mmc before issue rq -1 4
[   24.735913]  systemd-1       1.... 4753812us : blk_mq_free_request: complete: rq -1 5
[   24.738467]  systemd-1       1.... 4753817us : mmc_mq_queue_rq: queue rq -1 4, 0
[   24.741030]  systemd-1       1.... 4753837us : blk_mq_make_request: make rq -1 5
[   24.743583]  systemd-1       1.... 4753841us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   24.746133] systemd--131     1.... 4753877us : mmc_mq_queue_rq: queue rq -1 3, 0
[   24.748676] systemd--131     1.... 4753898us : blk_mq_make_request: make rq -1 6
[   24.751208] systemd--131     1.... 4753902us : mmc_mq_queue_rq: mmc before issue rq -1 6
[   24.753752]  systemd-1       1.... 4754352us : blk_mq_free_request: complete: rq -1 4
[   24.756304]  systemd-1       1.... 4754357us : mmc_mq_queue_rq: queue rq -1 5, 0
[   24.758849]  systemd-1       1.... 4754382us : blk_mq_make_request: make rq -1 4
[   24.761380]  systemd-1       1.... 4754386us : mmc_mq_queue_rq: mmc before issue rq -1 4
[   24.763930]  systemd-1       1.n.. 4754535us : mmc_mq_queue_rq: queue rq -1 4, 0
[   24.766455] kworker/-134     1.... 4754555us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   24.768984]  systemd-1       1.... 4754624us : blk_mq_make_request: make rq -1 7
[   24.771526]  systemd-1       1.... 4754628us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   24.774077] systemd--131     1.... 4754664us : mmc_mq_queue_rq: queue rq -1 6, 0
[   24.776621] systemd--131     1.... 4754684us : blk_mq_make_request: make rq -1 8
[   24.779147] systemd--131     1.... 4754689us : mmc_mq_queue_rq: mmc before issue rq -1 8
[   24.781677] kworker/-134     1.... 4755132us : blk_mq_free_request: complete: rq -1 4
[   24.784220] kworker/-134     1.... 4755138us : mmc_mq_queue_rq: queue rq -1 5, 0
[   24.786759]  systemd-1       1.n.. 4755272us : mmc_mq_queue_rq: queue rq -1 7, 0
[   24.789272] kworker/-134     1.... 4755291us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   24.791799]  systemd-1       1.... 4755341us : blk_mq_make_request: make rq -1 4
[   24.794336]  systemd-1       1.... 4755345us : mmc_mq_queue_rq: mmc before issue rq -1 4
[   24.796880] systemd--131     1.... 4755380us : mmc_mq_queue_rq: queue rq -1 8, 0
[   24.799414] systemd--131     1.... 4755403us : blk_mq_make_request: make rq -1 9
[   24.801949] systemd--131     1.... 4755407us : mmc_mq_queue_rq: mmc before issue rq -1 9
[   24.804491] kworker/-134     1.... 4755873us : blk_mq_free_request: complete: rq -1 7
[   24.807041] kworker/-134     1.... 4755877us : mmc_mq_queue_rq: queue rq -1 5, 0
[   24.809583]  systemd-1       1.n.. 4756010us : mmc_mq_queue_rq: queue rq -1 4, 0
[   24.812107] kworker/-134     1.... 4756027us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   24.814644]  systemd-1       1.... 4756072us : blk_mq_make_request: make rq -1 7
[   24.817194]  systemd-1       1.... 4756077us : mmc_mq_queue_rq: mmc before issue rq -1 7
[   24.819748] systemd--131     1.... 4756112us : mmc_mq_queue_rq: queue rq -1 9, 0
[   24.822283] systemd--131     1.... 4756142us : blk_mq_make_request: make rq -1 10
[   24.824808] systemd--131     1.... 4756146us : mmc_mq_queue_rq: mmc before issue rq -1 10
[   24.827331] kworker/-134     1.... 4756610us : blk_mq_free_request: complete: rq -1 4
[   24.829864] kworker/-134     1.... 4756614us : mmc_mq_queue_rq: queue rq -1 5, 0
[   24.832376]  systemd-1       1.n.. 4756782us : mmc_mq_queue_rq: queue rq -1 7, 0
[   24.834869] kworker/-134     1.... 4756801us : mmc_mq_queue_rq: mmc before issue rq -1 5
[   24.837381]  systemd-1       1.... 4756884us : blk_mq_make_request: make rq -1 4
[   24.839894]  systemd-1       1.... 4756893us : mmc_mq_queue_rq: mmc before issue rq -1 4
[   24.842410] systemd--131     1.... 4756929us : mmc_mq_queue_rq: queue rq -1 10, 0
[   24.844927] systemd--131     1.... 4756950us : blk_mq_make_request: make rq -1 16
[   24.847446] systemd--131     1.... 4756954us : mmc_mq_queue_rq: mmc before issue rq -1 16
[   24.849973] kworker/-134     1.... 4757384us : blk_mq_free_request: complete: rq -1 7
[   24.852513] kworker/-134     1.... 4757390us : mmc_mq_queue_rq: queue rq -1 5, 0
[   24.855040]  systemd-1       1.n.. 4965297us : mmc_mq_queue_rq: queue rq -1 4, 0
[   24.857541] ---------------------------------
[   24.860031] mmc3: sdhci: ============ SDHCI REGISTER DUMP ===========
[   24.862567] mmc3: sdhci: Sys addr:  0x00000000 | Version:  0x00000001
[   24.865111] mmc3: sdhci: Blk size:  0x00007200 | Blk cnt:  0x00000000
[   24.867641] mmc3: sdhci: Argument:  0x01cf57c8 | Trn mode: 0x00000033
[   24.870161] mmc3: sdhci: Present:   0x1ff70000 | Host ctl: 0x00000031
[   24.872670] mmc3: sdhci: Power:     0x0000000f | Blk gap:  0x00000000
[   24.875170] mmc3: sdhci: Wake-up:   0x00000000 | Clock:    0x00000007
[   24.877650] mmc3: sdhci: Timeout:   0x0000000e | Int stat: 0x00000002
[   24.880092] mmc3: sdhci: Int enab:  0x02ff008b | Sig enab: 0x02fc008b
[   24.882534] mmc3: sdhci: AC12 err:  0x00000000 | Slot int: 0x00000000
[   24.884972] mmc3: sdhci: Caps:      0x61ff30b0 | Caps_1:   0x00000000
[   24.887399] mmc3: sdhci: Cmd:       0x0000123a | Max curr: 0x00000001
[   24.889824] mmc3: sdhci: Resp[0]:   0x00000900 | Resp[1]:  0x04800e92
[   24.892237] mmc3: sdhci: Resp[2]:   0x074b8000 | Resp[3]:  0x00000240
[   24.894612] mmc3: sdhci: Host ctl2: 0x00000000
[   24.896961] mmc3: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x2d901200
[   24.899326] mmc3: sdhci: ============================================
[   24.901884] systemd-journald[119]: /dev/kmsg buffer overrun, some messages lost.
[   25.137035] usb 1-1: new high-speed USB device number 2 using tegra-ehci
[   25.296461] usb 1-1: New USB device found, idVendor=22b8, idProduct=4267, bcdDevice= 2.16
[   25.296478] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   25.296484] usb 1-1: Product: Motorola LTE Datacard
[   25.296488] usb 1-1: Manufacturer: Motorola
[   25.296493] usb 1-1: SerialNumber: 091142580c015019
[   25.380651] cdc_acm 1-1:1.10: ttyACM0: USB ACM device
[   25.929648] systemd-journald[119]: Received request to flush runtime journal from PID 1
[   36.884769] mmc3: Card stuck in wrong state! mmcblk3 card_busy_detect status: 0xd00
[   47.052767] mmc3: Card stuck in wrong state! mmcblk3 card_busy_detect status: 0xd00
[  104.932978] usb 3-1: new low-speed USB device number 2 using ci_hdrc
[  105.308621] usb 3-1: New USB device found, idVendor=1a2c, idProduct=0c21, bcdDevice= 1.10
[  105.308638] usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[  105.308645] usb 3-1: Product: USB Keyboard
[  105.308650] usb 3-1: Manufacturer: USB
[  105.320788] input: USB USB Keyboard as /devices/soc0/c5000000.usb/ci_hdrc.0/usb3/3-1/3-1:1.0/0003:1A2C:0C21.0001/input/input2
[  105.385394] hid-generic 0003:1A2C:0C21.0001: input,hidraw0: USB HID v1.10 Keyboard [USB USB Keyboard] on usb-ci_hdrc.0-1/input0
[  105.397068] input: USB USB Keyboard Mouse as /devices/soc0/c5000000.usb/ci_hdrc.0/usb3/3-1/3-1:1.1/0003:1A2C:0C21.0002/input/input3
[  105.399146] input: USB USB Keyboard System Control as /devices/soc0/c5000000.usb/ci_hdrc.0/usb3/3-1/3-1:1.1/0003:1A2C:0C21.0002/input/input4
[  105.458700] input: USB USB Keyboard Consumer Control as /devices/soc0/c5000000.usb/ci_hdrc.0/usb3/3-1/3-1:1.1/0003:1A2C:0C21.0002/input/input5
[  105.460493] hid-generic 0003:1A2C:0C21.0002: input,hidraw1: USB HID v1.10 Mouse [USB USB Keyboard] on usb-ci_hdrc.0-1/input1
[  123.796433] EXT4-fs (mmcblk2p1): warning: maximal mount count reached, running e2fsck is recommended
[  123.801863] EXT4-fs (mmcblk2p1): mounted filesystem with ordered data mode. Opts: (null)
[  124.952632] irq 304: nobody cared (try booting with the "irqpoll" option)
[  124.955777] CPU: 0 PID: 68 Comm: irq/304-cpcap1- Tainted: G        W         4.18.0-rc6-next-20180730-10720-g4b28a4639400-dirty #129
[  124.955781] Hardware name: NVIDIA Tegra SoC (Flattened Device Tree)
[  124.955810] [<c0114694>] (unwind_backtrace) from [<c010e818>] (show_stack+0x20/0x24)
[  124.955828] [<c010e818>] (show_stack) from [<c09c71dc>] (dump_stack+0xb4/0xe0)
[  124.955844] [<c09c71dc>] (dump_stack) from [<c01a17f8>] (__report_bad_irq+0x3c/0xdc)
[  124.955854] [<c01a17f8>] (__report_bad_irq) from [<c01a1c0c>] (note_interrupt+0x278/0x2c4)
[  124.955863] [<c01a1c0c>] (note_interrupt) from [<c019e8f0>] (handle_irq_event_percpu+0x6c/0x8c)
[  124.955871] [<c019e8f0>] (handle_irq_event_percpu) from [<c019e964>] (handle_irq_event+0x54/0x78)
[  124.955881] [<c019e964>] (handle_irq_event) from [<c01a2970>] (handle_fasteoi_irq+0xb0/0x174)
[  124.955897] [<c01a2970>] (handle_fasteoi_irq) from [<c019d774>] (generic_handle_irq+0x34/0x44)
[  124.955907] [<c019d774>] (generic_handle_irq) from [<c019deb0>] (__handle_domain_irq+0x6c/0xc4)
[  124.955917] [<c019deb0>] (__handle_domain_irq) from [<c0102238>] (gic_handle_irq+0x4c/0x88)
[  124.955925] [<c0102238>] (gic_handle_irq) from [<c0101a10>] (__irq_svc+0x70/0x98)
[  124.955929] Exception stack(0xed8ede98 to 0xed8edee0)
[  124.955934] de80:                                                       00000016 00000000
[  124.955942] dea0: 2e821000 20010093 ee1b3700 ee355000 ee1b3764 ee1b3714 ee1b3700 ee355000
[  124.955949] dec0: c019fc58 ed8edf04 ed8edee8 ed8edee8 c019fb58 c019fb5c 20010013 ffffffff
[  124.955957] [<c0101a10>] (__irq_svc) from [<c019fb5c>] (irq_finalize_oneshot.part.1+0xa4/0x11c)
[  124.955966] [<c019fb5c>] (irq_finalize_oneshot.part.1) from [<c019fcb4>] (irq_thread_fn+0x5c/0x64)
[  124.955973] [<c019fcb4>] (irq_thread_fn) from [<c019ffe0>] (irq_thread+0x154/0x270)
[  124.955984] [<c019ffe0>] (irq_thread) from [<c01538c8>] (kthread+0x16c/0x174)
[  124.955992] [<c01538c8>] (kthread) from [<c01010b4>] (ret_from_fork+0x14/0x20)
[  124.955996] Exception stack(0xed8edfb0 to 0xed8edff8)
[  124.956002] dfa0:                                     00000000 00000000 00000000 00000000
[  124.956008] dfc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[  124.956014] dfe0: 00000000 00000000 00000000 00000000 00000013 00000000
[  124.956017] handlers:
[  124.959131] [<c006b32d>] irq_default_primary_handler threaded [<9eb55a72>] regmap_irq_thread
[  124.962390] [<c006b32d>] irq_default_primary_handler threaded [<9eb55a72>] regmap_irq_thread
[  124.965613] [<c006b32d>] irq_default_primary_handler threaded [<9eb55a72>] regmap_irq_thread
[  124.968802] Disabling IRQ #304

[Index of Archives]     [ARM Kernel]     [Linux ARM]     [Linux ARM MSM]     [Linux USB Devel]     [Video for Linux]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux