* [PATCH v7 00/17] mm, dma, arm64: Reduce ARCH_KMALLOC_MINALIGN to 8
@ 2023-06-12 15:31 Catalin Marinas
2023-06-12 15:31 ` [PATCH v7 01/17] mm/slab: Decouple ARCH_KMALLOC_MINALIGN from ARCH_DMA_MINALIGN Catalin Marinas
` (18 more replies)
0 siblings, 19 replies; 34+ messages in thread
From: Catalin Marinas @ 2023-06-12 15:31 UTC (permalink / raw)
To: Andrew Morton, Linus Torvalds
Cc: Christoph Hellwig, Robin Murphy, Arnd Bergmann,
Greg Kroah-Hartman, Will Deacon, Marc Zyngier, Herbert Xu,
Ard Biesheuvel, Isaac Manjarres, Saravana Kannan,
Alasdair Kergon, Daniel Vetter, Joerg Roedel, Mark Brown,
Mike Snitzer, Rafael J. Wysocki, Jonathan Cameron,
Vlastimil Babka, linux-mm, iommu, linux-arm-kernel
Hi,
That's v7 of the series reducing the kmalloc() minimum alignment on
arm64 to 8 (from 128). There's no new/different functionality, mostly
cosmetic changes and acks/tested-bys.
Andrew, if there are no further comments or objections to this version,
are you ok to take the series through the mm tree? The arm64 changes are
fairly small. Alternatively, I can push it into linux-next now to give
it some wider exposure and decide whether to upstream it when the
merging window opens. Thanks.
The updated patches are also available on this branch:
git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux devel/kmalloc-minalign
Changes since v6
(https://lore.kernel.org/r/20230531154836.1366225-1-catalin.marinas@arm.com):
- Moved ARCH_DMA_MINALIGN to include/linux/cache.h from slab.h (it
matches the asm/cache.h where most architectures defining this macro
place it).
- Single body for __kmalloc_minalign() with an #ifdef.
- Renamed the sg_dma_use_swiotlb() to sg_dma_is_swiotlb() (Robin's
suggestion).
- Added acks/tested-by.
Catalin Marinas (15):
mm/slab: Decouple ARCH_KMALLOC_MINALIGN from ARCH_DMA_MINALIGN
dma: Allow dma_get_cache_alignment() to be overridden by the arch code
mm/slab: Simplify create_kmalloc_cache() args and make it static
mm/slab: Limit kmalloc() minimum alignment to
dma_get_cache_alignment()
drivers/base: Use ARCH_DMA_MINALIGN instead of ARCH_KMALLOC_MINALIGN
drivers/gpu: Use ARCH_DMA_MINALIGN instead of ARCH_KMALLOC_MINALIGN
drivers/usb: Use ARCH_DMA_MINALIGN instead of ARCH_KMALLOC_MINALIGN
drivers/spi: Use ARCH_DMA_MINALIGN instead of ARCH_KMALLOC_MINALIGN
dm-crypt: Use ARCH_DMA_MINALIGN instead of ARCH_KMALLOC_MINALIGN
iio: core: Use ARCH_DMA_MINALIGN instead of ARCH_KMALLOC_MINALIGN
arm64: Allow kmalloc() caches aligned to the smaller cache_line_size()
dma-mapping: Force bouncing if the kmalloc() size is not
cache-line-aligned
iommu/dma: Force bouncing if the size is not cacheline-aligned
mm: slab: Reduce the kmalloc() minimum alignment if DMA bouncing
possible
arm64: Enable ARCH_WANT_KMALLOC_DMA_BOUNCE for arm64
Robin Murphy (2):
scatterlist: Add dedicated config for DMA flags
dma-mapping: Name SG DMA flag helpers consistently
arch/arm64/Kconfig | 1 +
arch/arm64/include/asm/cache.h | 3 ++
arch/arm64/mm/init.c | 7 +++-
drivers/base/devres.c | 6 ++--
drivers/gpu/drm/drm_managed.c | 6 ++--
drivers/iommu/Kconfig | 1 +
drivers/iommu/dma-iommu.c | 58 ++++++++++++++++++++++++--------
drivers/iommu/iommu.c | 2 +-
drivers/md/dm-crypt.c | 2 +-
drivers/pci/Kconfig | 1 +
drivers/spi/spidev.c | 2 +-
drivers/usb/core/buffer.c | 8 ++---
include/linux/cache.h | 6 ++++
include/linux/dma-map-ops.h | 61 ++++++++++++++++++++++++++++++++++
include/linux/dma-mapping.h | 5 ++-
include/linux/iio/iio.h | 2 +-
include/linux/scatterlist.h | 60 ++++++++++++++++++++++++++-------
include/linux/slab.h | 14 +++++---
kernel/dma/Kconfig | 7 ++++
kernel/dma/direct.c | 2 +-
kernel/dma/direct.h | 3 +-
mm/slab.c | 6 +---
mm/slab.h | 5 ++-
mm/slab_common.c | 41 +++++++++++++++++------
24 files changed, 244 insertions(+), 65 deletions(-)
^ permalink raw reply [flat|nested] 34+ messages in thread
* [PATCH v7 01/17] mm/slab: Decouple ARCH_KMALLOC_MINALIGN from ARCH_DMA_MINALIGN
2023-06-12 15:31 [PATCH v7 00/17] mm, dma, arm64: Reduce ARCH_KMALLOC_MINALIGN to 8 Catalin Marinas
@ 2023-06-12 15:31 ` Catalin Marinas
2023-06-13 9:46 ` Vlastimil Babka
2023-06-12 15:31 ` [PATCH v7 02/17] dma: Allow dma_get_cache_alignment() to be overridden by the arch code Catalin Marinas
` (17 subsequent siblings)
18 siblings, 1 reply; 34+ messages in thread
From: Catalin Marinas @ 2023-06-12 15:31 UTC (permalink / raw)
To: Andrew Morton, Linus Torvalds
Cc: Christoph Hellwig, Robin Murphy, Arnd Bergmann,
Greg Kroah-Hartman, Will Deacon, Marc Zyngier, Herbert Xu,
Ard Biesheuvel, Isaac Manjarres, Saravana Kannan,
Alasdair Kergon, Daniel Vetter, Joerg Roedel, Mark Brown,
Mike Snitzer, Rafael J. Wysocki, Jonathan Cameron,
Vlastimil Babka, linux-mm, iommu, linux-arm-kernel
In preparation for supporting a kmalloc() minimum alignment smaller than
the arch DMA alignment, decouple the two definitions. This requires that
either the kmalloc() caches are aligned to a (run-time) cache-line size
or the DMA API bounces unaligned kmalloc() allocations. Subsequent
patches will implement both options.
After this patch, ARCH_DMA_MINALIGN is expected to be used in static
alignment annotations and defined by an architecture to be the maximum
alignment for all supported configurations/SoCs in a single Image.
Architectures opting in to a smaller ARCH_KMALLOC_MINALIGN will need to
define its value in the arch headers.
Since ARCH_DMA_MINALIGN is now always defined, adjust the #ifdef in
dma_get_cache_alignment() so that there is no change for architectures
not requiring a minimum DMA alignment.
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Vlastimil Babka <vbabka@suse.cz>
Cc: Christoph Hellwig <hch@lst.de>
Cc: Robin Murphy <robin.murphy@arm.com>
Tested-by: Isaac J. Manjarres <isaacmanjarres@google.com>
---
include/linux/cache.h | 6 ++++++
include/linux/dma-mapping.h | 3 ++-
include/linux/slab.h | 14 ++++++++++----
3 files changed, 18 insertions(+), 5 deletions(-)
diff --git a/include/linux/cache.h b/include/linux/cache.h
index 5da1bbd96154..9900d20b76c2 100644
--- a/include/linux/cache.h
+++ b/include/linux/cache.h
@@ -98,4 +98,10 @@ struct cacheline_padding {
#define CACHELINE_PADDING(name)
#endif
+#ifdef ARCH_DMA_MINALIGN
+#define ARCH_HAS_DMA_MINALIGN
+#else
+#define ARCH_DMA_MINALIGN __alignof__(unsigned long long)
+#endif
+
#endif /* __LINUX_CACHE_H */
diff --git a/include/linux/dma-mapping.h b/include/linux/dma-mapping.h
index 0ee20b764000..a50375331eac 100644
--- a/include/linux/dma-mapping.h
+++ b/include/linux/dma-mapping.h
@@ -2,6 +2,7 @@
#ifndef _LINUX_DMA_MAPPING_H
#define _LINUX_DMA_MAPPING_H
+#include <linux/cache.h>
#include <linux/sizes.h>
#include <linux/string.h>
#include <linux/device.h>
@@ -545,7 +546,7 @@ static inline int dma_set_min_align_mask(struct device *dev,
static inline int dma_get_cache_alignment(void)
{
-#ifdef ARCH_DMA_MINALIGN
+#ifdef ARCH_HAS_DMA_MINALIGN
return ARCH_DMA_MINALIGN;
#endif
return 1;
diff --git a/include/linux/slab.h b/include/linux/slab.h
index 6b3e155b70bf..ca53425e9b32 100644
--- a/include/linux/slab.h
+++ b/include/linux/slab.h
@@ -12,6 +12,7 @@
#ifndef _LINUX_SLAB_H
#define _LINUX_SLAB_H
+#include <linux/cache.h>
#include <linux/gfp.h>
#include <linux/overflow.h>
#include <linux/types.h>
@@ -235,12 +236,17 @@ void kmem_dump_obj(void *object);
* alignment larger than the alignment of a 64-bit integer.
* Setting ARCH_DMA_MINALIGN in arch headers allows that.
*/
-#if defined(ARCH_DMA_MINALIGN) && ARCH_DMA_MINALIGN > 8
+#ifdef ARCH_HAS_DMA_MINALIGN
+#if ARCH_DMA_MINALIGN > 8 && !defined(ARCH_KMALLOC_MINALIGN)
#define ARCH_KMALLOC_MINALIGN ARCH_DMA_MINALIGN
-#define KMALLOC_MIN_SIZE ARCH_DMA_MINALIGN
-#define KMALLOC_SHIFT_LOW ilog2(ARCH_DMA_MINALIGN)
-#else
+#endif
+#endif
+
+#ifndef ARCH_KMALLOC_MINALIGN
#define ARCH_KMALLOC_MINALIGN __alignof__(unsigned long long)
+#elif ARCH_KMALLOC_MINALIGN > 8
+#define KMALLOC_MIN_SIZE ARCH_KMALLOC_MINALIGN
+#define KMALLOC_SHIFT_LOW ilog2(KMALLOC_MIN_SIZE)
#endif
/*
^ permalink raw reply [flat|nested] 34+ messages in thread
* [PATCH v7 02/17] dma: Allow dma_get_cache_alignment() to be overridden by the arch code
2023-06-12 15:31 [PATCH v7 00/17] mm, dma, arm64: Reduce ARCH_KMALLOC_MINALIGN to 8 Catalin Marinas
2023-06-12 15:31 ` [PATCH v7 01/17] mm/slab: Decouple ARCH_KMALLOC_MINALIGN from ARCH_DMA_MINALIGN Catalin Marinas
@ 2023-06-12 15:31 ` Catalin Marinas
2023-06-12 15:31 ` [PATCH v7 03/17] mm/slab: Simplify create_kmalloc_cache() args and make it static Catalin Marinas
` (16 subsequent siblings)
18 siblings, 0 replies; 34+ messages in thread
From: Catalin Marinas @ 2023-06-12 15:31 UTC (permalink / raw)
To: Andrew Morton, Linus Torvalds
Cc: Christoph Hellwig, Robin Murphy, Arnd Bergmann,
Greg Kroah-Hartman, Will Deacon, Marc Zyngier, Herbert Xu,
Ard Biesheuvel, Isaac Manjarres, Saravana Kannan,
Alasdair Kergon, Daniel Vetter, Joerg Roedel, Mark Brown,
Mike Snitzer, Rafael J. Wysocki, Jonathan Cameron,
Vlastimil Babka, linux-mm, iommu, linux-arm-kernel
On arm64, ARCH_DMA_MINALIGN is larger than most cache line size
configurations deployed. Allow an architecture to override
dma_get_cache_alignment() in order to return a run-time probed value
(e.g. cache_line_size()).
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Cc: Robin Murphy <robin.murphy@arm.com>
Cc: Will Deacon <will@kernel.org>
Tested-by: Isaac J. Manjarres <isaacmanjarres@google.com>
---
include/linux/dma-mapping.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/include/linux/dma-mapping.h b/include/linux/dma-mapping.h
index a50375331eac..e13050eb9777 100644
--- a/include/linux/dma-mapping.h
+++ b/include/linux/dma-mapping.h
@@ -544,6 +544,7 @@ static inline int dma_set_min_align_mask(struct device *dev,
return 0;
}
+#ifndef dma_get_cache_alignment
static inline int dma_get_cache_alignment(void)
{
#ifdef ARCH_HAS_DMA_MINALIGN
@@ -551,6 +552,7 @@ static inline int dma_get_cache_alignment(void)
#endif
return 1;
}
+#endif
static inline void *dmam_alloc_coherent(struct device *dev, size_t size,
dma_addr_t *dma_handle, gfp_t gfp)
^ permalink raw reply [flat|nested] 34+ messages in thread
* [PATCH v7 03/17] mm/slab: Simplify create_kmalloc_cache() args and make it static
2023-06-12 15:31 [PATCH v7 00/17] mm, dma, arm64: Reduce ARCH_KMALLOC_MINALIGN to 8 Catalin Marinas
2023-06-12 15:31 ` [PATCH v7 01/17] mm/slab: Decouple ARCH_KMALLOC_MINALIGN from ARCH_DMA_MINALIGN Catalin Marinas
2023-06-12 15:31 ` [PATCH v7 02/17] dma: Allow dma_get_cache_alignment() to be overridden by the arch code Catalin Marinas
@ 2023-06-12 15:31 ` Catalin Marinas
2023-06-12 15:31 ` [PATCH v7 04/17] mm/slab: Limit kmalloc() minimum alignment to dma_get_cache_alignment() Catalin Marinas
` (15 subsequent siblings)
18 siblings, 0 replies; 34+ messages in thread
From: Catalin Marinas @ 2023-06-12 15:31 UTC (permalink / raw)
To: Andrew Morton, Linus Torvalds
Cc: Christoph Hellwig, Robin Murphy, Arnd Bergmann,
Greg Kroah-Hartman, Will Deacon, Marc Zyngier, Herbert Xu,
Ard Biesheuvel, Isaac Manjarres, Saravana Kannan,
Alasdair Kergon, Daniel Vetter, Joerg Roedel, Mark Brown,
Mike Snitzer, Rafael J. Wysocki, Jonathan Cameron,
Vlastimil Babka, linux-mm, iommu, linux-arm-kernel
In the slab variant of kmem_cache_init(), call new_kmalloc_cache()
instead of initialising the kmalloc_caches array directly. With this,
create_kmalloc_cache() is now only called from new_kmalloc_cache() in
the same file, so make it static. In addition, the useroffset argument
is always 0 while usersize is the same as size. Remove them.
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Reviewed-by: Vlastimil Babka <vbabka@suse.cz>
Cc: Andrew Morton <akpm@linux-foundation.org>
Tested-by: Isaac J. Manjarres <isaacmanjarres@google.com>
---
mm/slab.c | 6 +-----
mm/slab.h | 5 ++---
mm/slab_common.c | 14 ++++++--------
3 files changed, 9 insertions(+), 16 deletions(-)
diff --git a/mm/slab.c b/mm/slab.c
index bb57f7fdbae1..b7817dcba63e 100644
--- a/mm/slab.c
+++ b/mm/slab.c
@@ -1240,11 +1240,7 @@ void __init kmem_cache_init(void)
* Initialize the caches that provide memory for the kmem_cache_node
* structures first. Without this, further allocations will bug.
*/
- kmalloc_caches[KMALLOC_NORMAL][INDEX_NODE] = create_kmalloc_cache(
- kmalloc_info[INDEX_NODE].name[KMALLOC_NORMAL],
- kmalloc_info[INDEX_NODE].size,
- ARCH_KMALLOC_FLAGS, 0,
- kmalloc_info[INDEX_NODE].size);
+ new_kmalloc_cache(INDEX_NODE, KMALLOC_NORMAL, ARCH_KMALLOC_FLAGS);
slab_state = PARTIAL_NODE;
setup_kmalloc_cache_index_table();
diff --git a/mm/slab.h b/mm/slab.h
index f01ac256a8f5..592590fcddae 100644
--- a/mm/slab.h
+++ b/mm/slab.h
@@ -255,9 +255,8 @@ gfp_t kmalloc_fix_flags(gfp_t flags);
/* Functions provided by the slab allocators */
int __kmem_cache_create(struct kmem_cache *, slab_flags_t flags);
-struct kmem_cache *create_kmalloc_cache(const char *name, unsigned int size,
- slab_flags_t flags, unsigned int useroffset,
- unsigned int usersize);
+void __init new_kmalloc_cache(int idx, enum kmalloc_cache_type type,
+ slab_flags_t flags);
extern void create_boot_cache(struct kmem_cache *, const char *name,
unsigned int size, slab_flags_t flags,
unsigned int useroffset, unsigned int usersize);
diff --git a/mm/slab_common.c b/mm/slab_common.c
index 607249785c07..7f069159aee2 100644
--- a/mm/slab_common.c
+++ b/mm/slab_common.c
@@ -658,17 +658,16 @@ void __init create_boot_cache(struct kmem_cache *s, const char *name,
s->refcount = -1; /* Exempt from merging for now */
}
-struct kmem_cache *__init create_kmalloc_cache(const char *name,
- unsigned int size, slab_flags_t flags,
- unsigned int useroffset, unsigned int usersize)
+static struct kmem_cache *__init create_kmalloc_cache(const char *name,
+ unsigned int size,
+ slab_flags_t flags)
{
struct kmem_cache *s = kmem_cache_zalloc(kmem_cache, GFP_NOWAIT);
if (!s)
panic("Out of memory when creating slab %s\n", name);
- create_boot_cache(s, name, size, flags | SLAB_KMALLOC, useroffset,
- usersize);
+ create_boot_cache(s, name, size, flags | SLAB_KMALLOC, 0, size);
list_add(&s->list, &slab_caches);
s->refcount = 1;
return s;
@@ -863,7 +862,7 @@ void __init setup_kmalloc_cache_index_table(void)
}
}
-static void __init
+void __init
new_kmalloc_cache(int idx, enum kmalloc_cache_type type, slab_flags_t flags)
{
if ((KMALLOC_RECLAIM != KMALLOC_NORMAL) && (type == KMALLOC_RECLAIM)) {
@@ -880,8 +879,7 @@ new_kmalloc_cache(int idx, enum kmalloc_cache_type type, slab_flags_t flags)
kmalloc_caches[type][idx] = create_kmalloc_cache(
kmalloc_info[idx].name[type],
- kmalloc_info[idx].size, flags, 0,
- kmalloc_info[idx].size);
+ kmalloc_info[idx].size, flags);
/*
* If CONFIG_MEMCG_KMEM is enabled, disable cache merging for
^ permalink raw reply [flat|nested] 34+ messages in thread
* [PATCH v7 04/17] mm/slab: Limit kmalloc() minimum alignment to dma_get_cache_alignment()
2023-06-12 15:31 [PATCH v7 00/17] mm, dma, arm64: Reduce ARCH_KMALLOC_MINALIGN to 8 Catalin Marinas
` (2 preceding siblings ...)
2023-06-12 15:31 ` [PATCH v7 03/17] mm/slab: Simplify create_kmalloc_cache() args and make it static Catalin Marinas
@ 2023-06-12 15:31 ` Catalin Marinas
2023-06-12 15:31 ` [PATCH v7 05/17] drivers/base: Use ARCH_DMA_MINALIGN instead of ARCH_KMALLOC_MINALIGN Catalin Marinas
` (14 subsequent siblings)
18 siblings, 0 replies; 34+ messages in thread
From: Catalin Marinas @ 2023-06-12 15:31 UTC (permalink / raw)
To: Andrew Morton, Linus Torvalds
Cc: Christoph Hellwig, Robin Murphy, Arnd Bergmann,
Greg Kroah-Hartman, Will Deacon, Marc Zyngier, Herbert Xu,
Ard Biesheuvel, Isaac Manjarres, Saravana Kannan,
Alasdair Kergon, Daniel Vetter, Joerg Roedel, Mark Brown,
Mike Snitzer, Rafael J. Wysocki, Jonathan Cameron,
Vlastimil Babka, linux-mm, iommu, linux-arm-kernel
Do not create kmalloc() caches which are not aligned to
dma_get_cache_alignment(). There is no functional change since for
current architectures defining ARCH_DMA_MINALIGN, ARCH_KMALLOC_MINALIGN
equals ARCH_DMA_MINALIGN (and dma_get_cache_alignment()). On
architectures without a specific ARCH_DMA_MINALIGN,
dma_get_cache_alignment() is 1, so no change to the kmalloc() caches.
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Reviewed-by: Vlastimil Babka <vbabka@suse.cz>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Christoph Hellwig <hch@lst.de>
Cc: Robin Murphy <robin.murphy@arm.com>
Tested-by: Isaac J. Manjarres <isaacmanjarres@google.com>
---
mm/slab_common.c | 24 +++++++++++++++++++++---
1 file changed, 21 insertions(+), 3 deletions(-)
diff --git a/mm/slab_common.c b/mm/slab_common.c
index 7f069159aee2..7c6475847fdf 100644
--- a/mm/slab_common.c
+++ b/mm/slab_common.c
@@ -17,6 +17,7 @@
#include <linux/cpu.h>
#include <linux/uaccess.h>
#include <linux/seq_file.h>
+#include <linux/dma-mapping.h>
#include <linux/proc_fs.h>
#include <linux/debugfs.h>
#include <linux/kasan.h>
@@ -862,9 +863,18 @@ void __init setup_kmalloc_cache_index_table(void)
}
}
+static unsigned int __kmalloc_minalign(void)
+{
+ return dma_get_cache_alignment();
+}
+
void __init
new_kmalloc_cache(int idx, enum kmalloc_cache_type type, slab_flags_t flags)
{
+ unsigned int minalign = __kmalloc_minalign();
+ unsigned int aligned_size = kmalloc_info[idx].size;
+ int aligned_idx = idx;
+
if ((KMALLOC_RECLAIM != KMALLOC_NORMAL) && (type == KMALLOC_RECLAIM)) {
flags |= SLAB_RECLAIM_ACCOUNT;
} else if (IS_ENABLED(CONFIG_MEMCG_KMEM) && (type == KMALLOC_CGROUP)) {
@@ -877,9 +887,17 @@ new_kmalloc_cache(int idx, enum kmalloc_cache_type type, slab_flags_t flags)
flags |= SLAB_CACHE_DMA;
}
- kmalloc_caches[type][idx] = create_kmalloc_cache(
- kmalloc_info[idx].name[type],
- kmalloc_info[idx].size, flags);
+ if (minalign > ARCH_KMALLOC_MINALIGN) {
+ aligned_size = ALIGN(aligned_size, minalign);
+ aligned_idx = __kmalloc_index(aligned_size, false);
+ }
+
+ if (!kmalloc_caches[type][aligned_idx])
+ kmalloc_caches[type][aligned_idx] = create_kmalloc_cache(
+ kmalloc_info[aligned_idx].name[type],
+ aligned_size, flags);
+ if (idx != aligned_idx)
+ kmalloc_caches[type][idx] = kmalloc_caches[type][aligned_idx];
/*
* If CONFIG_MEMCG_KMEM is enabled, disable cache merging for
^ permalink raw reply [flat|nested] 34+ messages in thread
* [PATCH v7 05/17] drivers/base: Use ARCH_DMA_MINALIGN instead of ARCH_KMALLOC_MINALIGN
2023-06-12 15:31 [PATCH v7 00/17] mm, dma, arm64: Reduce ARCH_KMALLOC_MINALIGN to 8 Catalin Marinas
` (3 preceding siblings ...)
2023-06-12 15:31 ` [PATCH v7 04/17] mm/slab: Limit kmalloc() minimum alignment to dma_get_cache_alignment() Catalin Marinas
@ 2023-06-12 15:31 ` Catalin Marinas
2023-06-12 15:31 ` [PATCH v7 06/17] drivers/gpu: " Catalin Marinas
` (13 subsequent siblings)
18 siblings, 0 replies; 34+ messages in thread
From: Catalin Marinas @ 2023-06-12 15:31 UTC (permalink / raw)
To: Andrew Morton, Linus Torvalds
Cc: Christoph Hellwig, Robin Murphy, Arnd Bergmann,
Greg Kroah-Hartman, Will Deacon, Marc Zyngier, Herbert Xu,
Ard Biesheuvel, Isaac Manjarres, Saravana Kannan,
Alasdair Kergon, Daniel Vetter, Joerg Roedel, Mark Brown,
Mike Snitzer, Rafael J. Wysocki, Jonathan Cameron,
Vlastimil Babka, linux-mm, iommu, linux-arm-kernel
ARCH_DMA_MINALIGN represents the minimum (static) alignment for safe DMA
operations while ARCH_KMALLOC_MINALIGN is the minimum kmalloc() objects
alignment.
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: "Rafael J. Wysocki" <rafael@kernel.org>
Tested-by: Isaac J. Manjarres <isaacmanjarres@google.com>
---
drivers/base/devres.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/base/devres.c b/drivers/base/devres.c
index 5c998cfac335..3df0025d12aa 100644
--- a/drivers/base/devres.c
+++ b/drivers/base/devres.c
@@ -29,10 +29,10 @@ struct devres {
* Some archs want to perform DMA into kmalloc caches
* and need a guaranteed alignment larger than
* the alignment of a 64-bit integer.
- * Thus we use ARCH_KMALLOC_MINALIGN here and get exactly the same
- * buffer alignment as if it was allocated by plain kmalloc().
+ * Thus we use ARCH_DMA_MINALIGN for data[] which will force the same
+ * alignment for struct devres when allocated by kmalloc().
*/
- u8 __aligned(ARCH_KMALLOC_MINALIGN) data[];
+ u8 __aligned(ARCH_DMA_MINALIGN) data[];
};
struct devres_group {
^ permalink raw reply [flat|nested] 34+ messages in thread
* [PATCH v7 06/17] drivers/gpu: Use ARCH_DMA_MINALIGN instead of ARCH_KMALLOC_MINALIGN
2023-06-12 15:31 [PATCH v7 00/17] mm, dma, arm64: Reduce ARCH_KMALLOC_MINALIGN to 8 Catalin Marinas
` (4 preceding siblings ...)
2023-06-12 15:31 ` [PATCH v7 05/17] drivers/base: Use ARCH_DMA_MINALIGN instead of ARCH_KMALLOC_MINALIGN Catalin Marinas
@ 2023-06-12 15:31 ` Catalin Marinas
2023-06-12 15:31 ` [PATCH v7 07/17] drivers/usb: " Catalin Marinas
` (12 subsequent siblings)
18 siblings, 0 replies; 34+ messages in thread
From: Catalin Marinas @ 2023-06-12 15:31 UTC (permalink / raw)
To: Andrew Morton, Linus Torvalds
Cc: Christoph Hellwig, Robin Murphy, Arnd Bergmann,
Greg Kroah-Hartman, Will Deacon, Marc Zyngier, Herbert Xu,
Ard Biesheuvel, Isaac Manjarres, Saravana Kannan,
Alasdair Kergon, Daniel Vetter, Joerg Roedel, Mark Brown,
Mike Snitzer, Rafael J. Wysocki, Jonathan Cameron,
Vlastimil Babka, linux-mm, iommu, linux-arm-kernel
ARCH_DMA_MINALIGN represents the minimum (static) alignment for safe DMA
operations while ARCH_KMALLOC_MINALIGN is the minimum kmalloc() objects
alignment.
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Cc: Daniel Vetter <daniel@ffwll.ch>
Tested-by: Isaac J. Manjarres <isaacmanjarres@google.com>
---
drivers/gpu/drm/drm_managed.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/drm_managed.c b/drivers/gpu/drm/drm_managed.c
index 4cf214de50c4..3a5802f60e65 100644
--- a/drivers/gpu/drm/drm_managed.c
+++ b/drivers/gpu/drm/drm_managed.c
@@ -49,10 +49,10 @@ struct drmres {
* Some archs want to perform DMA into kmalloc caches
* and need a guaranteed alignment larger than
* the alignment of a 64-bit integer.
- * Thus we use ARCH_KMALLOC_MINALIGN here and get exactly the same
- * buffer alignment as if it was allocated by plain kmalloc().
+ * Thus we use ARCH_DMA_MINALIGN for data[] which will force the same
+ * alignment for struct drmres when allocated by kmalloc().
*/
- u8 __aligned(ARCH_KMALLOC_MINALIGN) data[];
+ u8 __aligned(ARCH_DMA_MINALIGN) data[];
};
static void free_dr(struct drmres *dr)
^ permalink raw reply [flat|nested] 34+ messages in thread
* [PATCH v7 07/17] drivers/usb: Use ARCH_DMA_MINALIGN instead of ARCH_KMALLOC_MINALIGN
2023-06-12 15:31 [PATCH v7 00/17] mm, dma, arm64: Reduce ARCH_KMALLOC_MINALIGN to 8 Catalin Marinas
` (5 preceding siblings ...)
2023-06-12 15:31 ` [PATCH v7 06/17] drivers/gpu: " Catalin Marinas
@ 2023-06-12 15:31 ` Catalin Marinas
2023-06-12 15:31 ` [PATCH v7 08/17] drivers/spi: " Catalin Marinas
` (11 subsequent siblings)
18 siblings, 0 replies; 34+ messages in thread
From: Catalin Marinas @ 2023-06-12 15:31 UTC (permalink / raw)
To: Andrew Morton, Linus Torvalds
Cc: Christoph Hellwig, Robin Murphy, Arnd Bergmann,
Greg Kroah-Hartman, Will Deacon, Marc Zyngier, Herbert Xu,
Ard Biesheuvel, Isaac Manjarres, Saravana Kannan,
Alasdair Kergon, Daniel Vetter, Joerg Roedel, Mark Brown,
Mike Snitzer, Rafael J. Wysocki, Jonathan Cameron,
Vlastimil Babka, linux-mm, iommu, linux-arm-kernel
ARCH_DMA_MINALIGN represents the minimum (static) alignment for safe DMA
operations while ARCH_KMALLOC_MINALIGN is the minimum kmalloc() objects
alignment.
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Tested-by: Isaac J. Manjarres <isaacmanjarres@google.com>
---
drivers/usb/core/buffer.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/usb/core/buffer.c b/drivers/usb/core/buffer.c
index fbb087b728dc..e21d8d106977 100644
--- a/drivers/usb/core/buffer.c
+++ b/drivers/usb/core/buffer.c
@@ -34,13 +34,13 @@ void __init usb_init_pool_max(void)
{
/*
* The pool_max values must never be smaller than
- * ARCH_KMALLOC_MINALIGN.
+ * ARCH_DMA_MINALIGN.
*/
- if (ARCH_KMALLOC_MINALIGN <= 32)
+ if (ARCH_DMA_MINALIGN <= 32)
; /* Original value is okay */
- else if (ARCH_KMALLOC_MINALIGN <= 64)
+ else if (ARCH_DMA_MINALIGN <= 64)
pool_max[0] = 64;
- else if (ARCH_KMALLOC_MINALIGN <= 128)
+ else if (ARCH_DMA_MINALIGN <= 128)
pool_max[0] = 0; /* Don't use this pool */
else
BUILD_BUG(); /* We don't allow this */
^ permalink raw reply [flat|nested] 34+ messages in thread
* [PATCH v7 08/17] drivers/spi: Use ARCH_DMA_MINALIGN instead of ARCH_KMALLOC_MINALIGN
2023-06-12 15:31 [PATCH v7 00/17] mm, dma, arm64: Reduce ARCH_KMALLOC_MINALIGN to 8 Catalin Marinas
` (6 preceding siblings ...)
2023-06-12 15:31 ` [PATCH v7 07/17] drivers/usb: " Catalin Marinas
@ 2023-06-12 15:31 ` Catalin Marinas
2023-06-12 15:31 ` [PATCH v7 09/17] dm-crypt: " Catalin Marinas
` (10 subsequent siblings)
18 siblings, 0 replies; 34+ messages in thread
From: Catalin Marinas @ 2023-06-12 15:31 UTC (permalink / raw)
To: Andrew Morton, Linus Torvalds
Cc: Christoph Hellwig, Robin Murphy, Arnd Bergmann,
Greg Kroah-Hartman, Will Deacon, Marc Zyngier, Herbert Xu,
Ard Biesheuvel, Isaac Manjarres, Saravana Kannan,
Alasdair Kergon, Daniel Vetter, Joerg Roedel, Mark Brown,
Mike Snitzer, Rafael J. Wysocki, Jonathan Cameron,
Vlastimil Babka, linux-mm, iommu, linux-arm-kernel
ARCH_DMA_MINALIGN represents the minimum (static) alignment for safe DMA
operations while ARCH_KMALLOC_MINALIGN is the minimum kmalloc() objects
alignment.
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Acked-by: Mark Brown <broonie@kernel.org>
Tested-by: Isaac J. Manjarres <isaacmanjarres@google.com>
---
drivers/spi/spidev.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/spi/spidev.c b/drivers/spi/spidev.c
index 39d94c850839..8d009275a59d 100644
--- a/drivers/spi/spidev.c
+++ b/drivers/spi/spidev.c
@@ -237,7 +237,7 @@ static int spidev_message(struct spidev_data *spidev,
/* Ensure that also following allocations from rx_buf/tx_buf will meet
* DMA alignment requirements.
*/
- unsigned int len_aligned = ALIGN(u_tmp->len, ARCH_KMALLOC_MINALIGN);
+ unsigned int len_aligned = ALIGN(u_tmp->len, ARCH_DMA_MINALIGN);
k_tmp->len = u_tmp->len;
^ permalink raw reply [flat|nested] 34+ messages in thread
* [PATCH v7 09/17] dm-crypt: Use ARCH_DMA_MINALIGN instead of ARCH_KMALLOC_MINALIGN
2023-06-12 15:31 [PATCH v7 00/17] mm, dma, arm64: Reduce ARCH_KMALLOC_MINALIGN to 8 Catalin Marinas
` (7 preceding siblings ...)
2023-06-12 15:31 ` [PATCH v7 08/17] drivers/spi: " Catalin Marinas
@ 2023-06-12 15:31 ` Catalin Marinas
2023-06-12 15:31 ` [PATCH v7 10/17] iio: core: " Catalin Marinas
` (9 subsequent siblings)
18 siblings, 0 replies; 34+ messages in thread
From: Catalin Marinas @ 2023-06-12 15:31 UTC (permalink / raw)
To: Andrew Morton, Linus Torvalds
Cc: Christoph Hellwig, Robin Murphy, Arnd Bergmann,
Greg Kroah-Hartman, Will Deacon, Marc Zyngier, Herbert Xu,
Ard Biesheuvel, Isaac Manjarres, Saravana Kannan,
Alasdair Kergon, Daniel Vetter, Joerg Roedel, Mark Brown,
Mike Snitzer, Rafael J. Wysocki, Jonathan Cameron,
Vlastimil Babka, linux-mm, iommu, linux-arm-kernel
ARCH_DMA_MINALIGN represents the minimum (static) alignment for safe DMA
operations while ARCH_KMALLOC_MINALIGN is the minimum kmalloc() objects
alignment.
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Cc: Alasdair Kergon <agk@redhat.com>
Cc: Mike Snitzer <snitzer@kernel.org>
Tested-by: Isaac J. Manjarres <isaacmanjarres@google.com>
---
drivers/md/dm-crypt.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/md/dm-crypt.c b/drivers/md/dm-crypt.c
index 8b47b913ee83..ebbd8f7db880 100644
--- a/drivers/md/dm-crypt.c
+++ b/drivers/md/dm-crypt.c
@@ -3256,7 +3256,7 @@ static int crypt_ctr(struct dm_target *ti, unsigned int argc, char **argv)
cc->per_bio_data_size = ti->per_io_data_size =
ALIGN(sizeof(struct dm_crypt_io) + cc->dmreq_start + additional_req_size,
- ARCH_KMALLOC_MINALIGN);
+ ARCH_DMA_MINALIGN);
ret = mempool_init(&cc->page_pool, BIO_MAX_VECS, crypt_page_alloc, crypt_page_free, cc);
if (ret) {
^ permalink raw reply [flat|nested] 34+ messages in thread
* [PATCH v7 10/17] iio: core: Use ARCH_DMA_MINALIGN instead of ARCH_KMALLOC_MINALIGN
2023-06-12 15:31 [PATCH v7 00/17] mm, dma, arm64: Reduce ARCH_KMALLOC_MINALIGN to 8 Catalin Marinas
` (8 preceding siblings ...)
2023-06-12 15:31 ` [PATCH v7 09/17] dm-crypt: " Catalin Marinas
@ 2023-06-12 15:31 ` Catalin Marinas
2023-06-12 15:31 ` [PATCH v7 11/17] arm64: Allow kmalloc() caches aligned to the smaller cache_line_size() Catalin Marinas
` (8 subsequent siblings)
18 siblings, 0 replies; 34+ messages in thread
From: Catalin Marinas @ 2023-06-12 15:31 UTC (permalink / raw)
To: Andrew Morton, Linus Torvalds
Cc: Christoph Hellwig, Robin Murphy, Arnd Bergmann,
Greg Kroah-Hartman, Will Deacon, Marc Zyngier, Herbert Xu,
Ard Biesheuvel, Isaac Manjarres, Saravana Kannan,
Alasdair Kergon, Daniel Vetter, Joerg Roedel, Mark Brown,
Mike Snitzer, Rafael J. Wysocki, Jonathan Cameron,
Vlastimil Babka, linux-mm, iommu, linux-arm-kernel,
Jonathan Cameron, Lars-Peter Clausen
ARCH_DMA_MINALIGN represents the minimum (static) alignment for safe DMA
operations while ARCH_KMALLOC_MINALIGN is the minimum kmalloc() objects
alignment.
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Acked-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Cc: Lars-Peter Clausen <lars@metafoo.de>
Tested-by: Isaac J. Manjarres <isaacmanjarres@google.com>
---
include/linux/iio/iio.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/linux/iio/iio.h b/include/linux/iio/iio.h
index 81413cd3a3e7..d28a5e8097e4 100644
--- a/include/linux/iio/iio.h
+++ b/include/linux/iio/iio.h
@@ -722,7 +722,7 @@ static inline void *iio_device_get_drvdata(const struct iio_dev *indio_dev)
* must not share cachelines with the rest of the structure, thus making
* them safe for use with non-coherent DMA.
*/
-#define IIO_DMA_MINALIGN ARCH_KMALLOC_MINALIGN
+#define IIO_DMA_MINALIGN ARCH_DMA_MINALIGN
struct iio_dev *iio_device_alloc(struct device *parent, int sizeof_priv);
/* The information at the returned address is guaranteed to be cacheline aligned */
^ permalink raw reply [flat|nested] 34+ messages in thread
* [PATCH v7 11/17] arm64: Allow kmalloc() caches aligned to the smaller cache_line_size()
2023-06-12 15:31 [PATCH v7 00/17] mm, dma, arm64: Reduce ARCH_KMALLOC_MINALIGN to 8 Catalin Marinas
` (9 preceding siblings ...)
2023-06-12 15:31 ` [PATCH v7 10/17] iio: core: " Catalin Marinas
@ 2023-06-12 15:31 ` Catalin Marinas
2023-06-12 15:31 ` [PATCH v7 12/17] scatterlist: Add dedicated config for DMA flags Catalin Marinas
` (7 subsequent siblings)
18 siblings, 0 replies; 34+ messages in thread
From: Catalin Marinas @ 2023-06-12 15:31 UTC (permalink / raw)
To: Andrew Morton, Linus Torvalds
Cc: Christoph Hellwig, Robin Murphy, Arnd Bergmann,
Greg Kroah-Hartman, Will Deacon, Marc Zyngier, Herbert Xu,
Ard Biesheuvel, Isaac Manjarres, Saravana Kannan,
Alasdair Kergon, Daniel Vetter, Joerg Roedel, Mark Brown,
Mike Snitzer, Rafael J. Wysocki, Jonathan Cameron,
Vlastimil Babka, linux-mm, iommu, linux-arm-kernel
On arm64, ARCH_DMA_MINALIGN is 128, larger than the cache line size on
most of the current platforms (typically 64). Define
ARCH_KMALLOC_MINALIGN to 8 (the default for architectures without their
own ARCH_DMA_MINALIGN) and override dma_get_cache_alignment() to return
cache_line_size(), probed at run-time. The kmalloc() caches will be
limited to the cache line size. This will allow the additional
kmalloc-{64,192} caches on most arm64 platforms.
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Cc: Will Deacon <will@kernel.org>
Tested-by: Isaac J. Manjarres <isaacmanjarres@google.com>
---
arch/arm64/include/asm/cache.h | 3 +++
1 file changed, 3 insertions(+)
diff --git a/arch/arm64/include/asm/cache.h b/arch/arm64/include/asm/cache.h
index a51e6e8f3171..ceb368d33bf4 100644
--- a/arch/arm64/include/asm/cache.h
+++ b/arch/arm64/include/asm/cache.h
@@ -33,6 +33,7 @@
* the CPU.
*/
#define ARCH_DMA_MINALIGN (128)
+#define ARCH_KMALLOC_MINALIGN (8)
#ifndef __ASSEMBLY__
@@ -90,6 +91,8 @@ static inline int cache_line_size_of_cpu(void)
int cache_line_size(void);
+#define dma_get_cache_alignment cache_line_size
+
/*
* Read the effective value of CTR_EL0.
*
^ permalink raw reply [flat|nested] 34+ messages in thread
* [PATCH v7 12/17] scatterlist: Add dedicated config for DMA flags
2023-06-12 15:31 [PATCH v7 00/17] mm, dma, arm64: Reduce ARCH_KMALLOC_MINALIGN to 8 Catalin Marinas
` (10 preceding siblings ...)
2023-06-12 15:31 ` [PATCH v7 11/17] arm64: Allow kmalloc() caches aligned to the smaller cache_line_size() Catalin Marinas
@ 2023-06-12 15:31 ` Catalin Marinas
2023-06-12 15:31 ` [PATCH v7 13/17] dma-mapping: Name SG DMA flag helpers consistently Catalin Marinas
` (6 subsequent siblings)
18 siblings, 0 replies; 34+ messages in thread
From: Catalin Marinas @ 2023-06-12 15:31 UTC (permalink / raw)
To: Andrew Morton, Linus Torvalds
Cc: Christoph Hellwig, Robin Murphy, Arnd Bergmann,
Greg Kroah-Hartman, Will Deacon, Marc Zyngier, Herbert Xu,
Ard Biesheuvel, Isaac Manjarres, Saravana Kannan,
Alasdair Kergon, Daniel Vetter, Joerg Roedel, Mark Brown,
Mike Snitzer, Rafael J. Wysocki, Jonathan Cameron,
Vlastimil Babka, linux-mm, iommu, linux-arm-kernel
From: Robin Murphy <robin.murphy@arm.com>
The DMA flags field will be useful for users beyond PCI P2P, so upgrade
to its own dedicated config option.
Signed-off-by: Robin Murphy <robin.murphy@arm.com>
[catalin.marinas@arm.com: use #ifdef CONFIG_NEED_SG_DMA_FLAGS in scatterlist.h]
[catalin.marinas@arm.com: update PCI_P2PDMA dma_flags comment in scatterlist.h]
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Tested-by: Isaac J. Manjarres <isaacmanjarres@google.com>
---
drivers/pci/Kconfig | 1 +
include/linux/scatterlist.h | 13 ++++++-------
kernel/dma/Kconfig | 3 +++
3 files changed, 10 insertions(+), 7 deletions(-)
diff --git a/drivers/pci/Kconfig b/drivers/pci/Kconfig
index 9309f2469b41..3c07d8d214b3 100644
--- a/drivers/pci/Kconfig
+++ b/drivers/pci/Kconfig
@@ -168,6 +168,7 @@ config PCI_P2PDMA
#
depends on 64BIT
select GENERIC_ALLOCATOR
+ select NEED_SG_DMA_FLAGS
help
Enableѕ drivers to do PCI peer-to-peer transactions to and from
BARs that are exposed in other devices that are the part of
diff --git a/include/linux/scatterlist.h b/include/linux/scatterlist.h
index 375a5e90d86a..19833fd4113b 100644
--- a/include/linux/scatterlist.h
+++ b/include/linux/scatterlist.h
@@ -16,7 +16,7 @@ struct scatterlist {
#ifdef CONFIG_NEED_SG_DMA_LENGTH
unsigned int dma_length;
#endif
-#ifdef CONFIG_PCI_P2PDMA
+#ifdef CONFIG_NEED_SG_DMA_FLAGS
unsigned int dma_flags;
#endif
};
@@ -249,12 +249,11 @@ static inline void sg_unmark_end(struct scatterlist *sg)
}
/*
- * CONFGI_PCI_P2PDMA depends on CONFIG_64BIT which means there is 4 bytes
- * in struct scatterlist (assuming also CONFIG_NEED_SG_DMA_LENGTH is set).
- * Use this padding for DMA flags bits to indicate when a specific
- * dma address is a bus address.
+ * One 64-bit architectures there is a 4-byte padding in struct scatterlist
+ * (assuming also CONFIG_NEED_SG_DMA_LENGTH is set). Use this padding for DMA
+ * flags bits to indicate when a specific dma address is a bus address.
*/
-#ifdef CONFIG_PCI_P2PDMA
+#ifdef CONFIG_NEED_SG_DMA_FLAGS
#define SG_DMA_BUS_ADDRESS (1 << 0)
@@ -312,7 +311,7 @@ static inline void sg_dma_unmark_bus_address(struct scatterlist *sg)
{
}
-#endif
+#endif /* CONFIG_NEED_SG_DMA_FLAGS */
/**
* sg_phys - Return physical address of an sg entry
diff --git a/kernel/dma/Kconfig b/kernel/dma/Kconfig
index 6677d0e64d27..acc6f231259c 100644
--- a/kernel/dma/Kconfig
+++ b/kernel/dma/Kconfig
@@ -24,6 +24,9 @@ config DMA_OPS_BYPASS
config ARCH_HAS_DMA_MAP_DIRECT
bool
+config NEED_SG_DMA_FLAGS
+ bool
+
config NEED_SG_DMA_LENGTH
bool
^ permalink raw reply [flat|nested] 34+ messages in thread
* [PATCH v7 13/17] dma-mapping: Name SG DMA flag helpers consistently
2023-06-12 15:31 [PATCH v7 00/17] mm, dma, arm64: Reduce ARCH_KMALLOC_MINALIGN to 8 Catalin Marinas
` (11 preceding siblings ...)
2023-06-12 15:31 ` [PATCH v7 12/17] scatterlist: Add dedicated config for DMA flags Catalin Marinas
@ 2023-06-12 15:31 ` Catalin Marinas
2023-06-12 15:31 ` [PATCH v7 14/17] dma-mapping: Force bouncing if the kmalloc() size is not cache-line-aligned Catalin Marinas
` (5 subsequent siblings)
18 siblings, 0 replies; 34+ messages in thread
From: Catalin Marinas @ 2023-06-12 15:31 UTC (permalink / raw)
To: Andrew Morton, Linus Torvalds
Cc: Christoph Hellwig, Robin Murphy, Arnd Bergmann,
Greg Kroah-Hartman, Will Deacon, Marc Zyngier, Herbert Xu,
Ard Biesheuvel, Isaac Manjarres, Saravana Kannan,
Alasdair Kergon, Daniel Vetter, Joerg Roedel, Mark Brown,
Mike Snitzer, Rafael J. Wysocki, Jonathan Cameron,
Vlastimil Babka, linux-mm, iommu, linux-arm-kernel,
Jerry Snitselaar, Logan Gunthorpe
From: Robin Murphy <robin.murphy@arm.com>
sg_is_dma_bus_address() is inconsistent with the naming pattern of its
corresponding setters and its own kerneldoc, so take the majority vote
and rename it sg_dma_is_bus_address() (and fix up the missing
underscores in the kerneldoc too). This gives us a nice clear pattern
where SG DMA flags are SG_DMA_<NAME>, and the helpers for acting on them
are sg_dma_<action>_<name>().
Signed-off-by: Robin Murphy <robin.murphy@arm.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Jerry Snitselaar <jsnitsel@redhat.com>
Reviewed-by: Logan Gunthorpe <logang@deltatee.com>
Link: https://lore.kernel.org/r/fa2eca2862c7ffc41b50337abffb2dfd2864d3ea.1685036694.git.robin.murphy@arm.com
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Tested-by: Isaac J. Manjarres <isaacmanjarres@google.com>
---
drivers/iommu/dma-iommu.c | 8 ++++----
drivers/iommu/iommu.c | 2 +-
include/linux/scatterlist.h | 8 ++++----
kernel/dma/direct.c | 2 +-
4 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/drivers/iommu/dma-iommu.c b/drivers/iommu/dma-iommu.c
index 7a9f0b0bddbd..b8bba4aa196f 100644
--- a/drivers/iommu/dma-iommu.c
+++ b/drivers/iommu/dma-iommu.c
@@ -1080,7 +1080,7 @@ static int __finalise_sg(struct device *dev, struct scatterlist *sg, int nents,
sg_dma_address(s) = DMA_MAPPING_ERROR;
sg_dma_len(s) = 0;
- if (sg_is_dma_bus_address(s)) {
+ if (sg_dma_is_bus_address(s)) {
if (i > 0)
cur = sg_next(cur);
@@ -1136,7 +1136,7 @@ static void __invalidate_sg(struct scatterlist *sg, int nents)
int i;
for_each_sg(sg, s, nents, i) {
- if (sg_is_dma_bus_address(s)) {
+ if (sg_dma_is_bus_address(s)) {
sg_dma_unmark_bus_address(s);
} else {
if (sg_dma_address(s) != DMA_MAPPING_ERROR)
@@ -1329,7 +1329,7 @@ static void iommu_dma_unmap_sg(struct device *dev, struct scatterlist *sg,
* just have to be determined.
*/
for_each_sg(sg, tmp, nents, i) {
- if (sg_is_dma_bus_address(tmp)) {
+ if (sg_dma_is_bus_address(tmp)) {
sg_dma_unmark_bus_address(tmp);
continue;
}
@@ -1343,7 +1343,7 @@ static void iommu_dma_unmap_sg(struct device *dev, struct scatterlist *sg,
nents -= i;
for_each_sg(tmp, tmp, nents, i) {
- if (sg_is_dma_bus_address(tmp)) {
+ if (sg_dma_is_bus_address(tmp)) {
sg_dma_unmark_bus_address(tmp);
continue;
}
diff --git a/drivers/iommu/iommu.c b/drivers/iommu/iommu.c
index f1dcfa3f1a1b..eb620552967b 100644
--- a/drivers/iommu/iommu.c
+++ b/drivers/iommu/iommu.c
@@ -2567,7 +2567,7 @@ ssize_t iommu_map_sg(struct iommu_domain *domain, unsigned long iova,
len = 0;
}
- if (sg_is_dma_bus_address(sg))
+ if (sg_dma_is_bus_address(sg))
goto next;
if (len) {
diff --git a/include/linux/scatterlist.h b/include/linux/scatterlist.h
index 19833fd4113b..2f06178996ba 100644
--- a/include/linux/scatterlist.h
+++ b/include/linux/scatterlist.h
@@ -258,7 +258,7 @@ static inline void sg_unmark_end(struct scatterlist *sg)
#define SG_DMA_BUS_ADDRESS (1 << 0)
/**
- * sg_dma_is_bus address - Return whether a given segment was marked
+ * sg_dma_is_bus_address - Return whether a given segment was marked
* as a bus address
* @sg: SG entry
*
@@ -266,13 +266,13 @@ static inline void sg_unmark_end(struct scatterlist *sg)
* Returns true if sg_dma_mark_bus_address() has been called on
* this segment.
**/
-static inline bool sg_is_dma_bus_address(struct scatterlist *sg)
+static inline bool sg_dma_is_bus_address(struct scatterlist *sg)
{
return sg->dma_flags & SG_DMA_BUS_ADDRESS;
}
/**
- * sg_dma_mark_bus address - Mark the scatterlist entry as a bus address
+ * sg_dma_mark_bus_address - Mark the scatterlist entry as a bus address
* @sg: SG entry
*
* Description:
@@ -300,7 +300,7 @@ static inline void sg_dma_unmark_bus_address(struct scatterlist *sg)
#else
-static inline bool sg_is_dma_bus_address(struct scatterlist *sg)
+static inline bool sg_dma_is_bus_address(struct scatterlist *sg)
{
return false;
}
diff --git a/kernel/dma/direct.c b/kernel/dma/direct.c
index 5595d1d5cdcc..d29cade048db 100644
--- a/kernel/dma/direct.c
+++ b/kernel/dma/direct.c
@@ -463,7 +463,7 @@ void dma_direct_unmap_sg(struct device *dev, struct scatterlist *sgl,
int i;
for_each_sg(sgl, sg, nents, i) {
- if (sg_is_dma_bus_address(sg))
+ if (sg_dma_is_bus_address(sg))
sg_dma_unmark_bus_address(sg);
else
dma_direct_unmap_page(dev, sg->dma_address,
^ permalink raw reply [flat|nested] 34+ messages in thread
* [PATCH v7 14/17] dma-mapping: Force bouncing if the kmalloc() size is not cache-line-aligned
2023-06-12 15:31 [PATCH v7 00/17] mm, dma, arm64: Reduce ARCH_KMALLOC_MINALIGN to 8 Catalin Marinas
` (12 preceding siblings ...)
2023-06-12 15:31 ` [PATCH v7 13/17] dma-mapping: Name SG DMA flag helpers consistently Catalin Marinas
@ 2023-06-12 15:31 ` Catalin Marinas
2023-06-12 15:31 ` [PATCH v7 15/17] iommu/dma: Force bouncing if the size is not cacheline-aligned Catalin Marinas
` (4 subsequent siblings)
18 siblings, 0 replies; 34+ messages in thread
From: Catalin Marinas @ 2023-06-12 15:31 UTC (permalink / raw)
To: Andrew Morton, Linus Torvalds
Cc: Christoph Hellwig, Robin Murphy, Arnd Bergmann,
Greg Kroah-Hartman, Will Deacon, Marc Zyngier, Herbert Xu,
Ard Biesheuvel, Isaac Manjarres, Saravana Kannan,
Alasdair Kergon, Daniel Vetter, Joerg Roedel, Mark Brown,
Mike Snitzer, Rafael J. Wysocki, Jonathan Cameron,
Vlastimil Babka, linux-mm, iommu, linux-arm-kernel
For direct DMA, if the size is small enough to have originated from a
kmalloc() cache below ARCH_DMA_MINALIGN, check its alignment against
dma_get_cache_alignment() and bounce if necessary. For larger sizes, it
is the responsibility of the DMA API caller to ensure proper alignment.
At this point, the kmalloc() caches are properly aligned but this will
change in a subsequent patch.
Architectures can opt in by selecting DMA_BOUNCE_UNALIGNED_KMALLOC.
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Robin Murphy <robin.murphy@arm.com>
Tested-by: Isaac J. Manjarres <isaacmanjarres@google.com>
---
include/linux/dma-map-ops.h | 61 +++++++++++++++++++++++++++++++++++++
kernel/dma/Kconfig | 4 +++
kernel/dma/direct.h | 3 +-
3 files changed, 67 insertions(+), 1 deletion(-)
diff --git a/include/linux/dma-map-ops.h b/include/linux/dma-map-ops.h
index 31f114f486c4..9bf19b5bf755 100644
--- a/include/linux/dma-map-ops.h
+++ b/include/linux/dma-map-ops.h
@@ -8,6 +8,7 @@
#include <linux/dma-mapping.h>
#include <linux/pgtable.h>
+#include <linux/slab.h>
struct cma;
@@ -277,6 +278,66 @@ static inline bool dev_is_dma_coherent(struct device *dev)
}
#endif /* CONFIG_ARCH_HAS_DMA_COHERENCE_H */
+/*
+ * Check whether potential kmalloc() buffers are safe for non-coherent DMA.
+ */
+static inline bool dma_kmalloc_safe(struct device *dev,
+ enum dma_data_direction dir)
+{
+ /*
+ * If DMA bouncing of kmalloc() buffers is disabled, the kmalloc()
+ * caches have already been aligned to a DMA-safe size.
+ */
+ if (!IS_ENABLED(CONFIG_DMA_BOUNCE_UNALIGNED_KMALLOC))
+ return true;
+
+ /*
+ * kmalloc() buffers are DMA-safe irrespective of size if the device
+ * is coherent or the direction is DMA_TO_DEVICE (non-desctructive
+ * cache maintenance and benign cache line evictions).
+ */
+ if (dev_is_dma_coherent(dev) || dir == DMA_TO_DEVICE)
+ return true;
+
+ return false;
+}
+
+/*
+ * Check whether the given size, assuming it is for a kmalloc()'ed buffer, is
+ * sufficiently aligned for non-coherent DMA.
+ */
+static inline bool dma_kmalloc_size_aligned(size_t size)
+{
+ /*
+ * Larger kmalloc() sizes are guaranteed to be aligned to
+ * ARCH_DMA_MINALIGN.
+ */
+ if (size >= 2 * ARCH_DMA_MINALIGN ||
+ IS_ALIGNED(kmalloc_size_roundup(size), dma_get_cache_alignment()))
+ return true;
+
+ return false;
+}
+
+/*
+ * Check whether the given object size may have originated from a kmalloc()
+ * buffer with a slab alignment below the DMA-safe alignment and needs
+ * bouncing for non-coherent DMA. The pointer alignment is not considered and
+ * in-structure DMA-safe offsets are the responsibility of the caller. Such
+ * code should use the static ARCH_DMA_MINALIGN for compiler annotations.
+ *
+ * The heuristics can have false positives, bouncing unnecessarily, though the
+ * buffers would be small. False negatives are theoretically possible if, for
+ * example, multiple small kmalloc() buffers are coalesced into a larger
+ * buffer that passes the alignment check. There are no such known constructs
+ * in the kernel.
+ */
+static inline bool dma_kmalloc_needs_bounce(struct device *dev, size_t size,
+ enum dma_data_direction dir)
+{
+ return !dma_kmalloc_safe(dev, dir) && !dma_kmalloc_size_aligned(size);
+}
+
void *arch_dma_alloc(struct device *dev, size_t size, dma_addr_t *dma_handle,
gfp_t gfp, unsigned long attrs);
void arch_dma_free(struct device *dev, size_t size, void *cpu_addr,
diff --git a/kernel/dma/Kconfig b/kernel/dma/Kconfig
index acc6f231259c..abea1823fe21 100644
--- a/kernel/dma/Kconfig
+++ b/kernel/dma/Kconfig
@@ -90,6 +90,10 @@ config SWIOTLB
bool
select NEED_DMA_MAP_STATE
+config DMA_BOUNCE_UNALIGNED_KMALLOC
+ bool
+ depends on SWIOTLB
+
config DMA_RESTRICTED_POOL
bool "DMA Restricted Pool"
depends on OF && OF_RESERVED_MEM && SWIOTLB
diff --git a/kernel/dma/direct.h b/kernel/dma/direct.h
index e38ffc5e6bdd..97ec892ea0b5 100644
--- a/kernel/dma/direct.h
+++ b/kernel/dma/direct.h
@@ -94,7 +94,8 @@ static inline dma_addr_t dma_direct_map_page(struct device *dev,
return swiotlb_map(dev, phys, size, dir, attrs);
}
- if (unlikely(!dma_capable(dev, dma_addr, size, true))) {
+ if (unlikely(!dma_capable(dev, dma_addr, size, true)) ||
+ dma_kmalloc_needs_bounce(dev, size, dir)) {
if (is_pci_p2pdma_page(page))
return DMA_MAPPING_ERROR;
if (is_swiotlb_active(dev))
^ permalink raw reply [flat|nested] 34+ messages in thread
* [PATCH v7 15/17] iommu/dma: Force bouncing if the size is not cacheline-aligned
2023-06-12 15:31 [PATCH v7 00/17] mm, dma, arm64: Reduce ARCH_KMALLOC_MINALIGN to 8 Catalin Marinas
` (13 preceding siblings ...)
2023-06-12 15:31 ` [PATCH v7 14/17] dma-mapping: Force bouncing if the kmalloc() size is not cache-line-aligned Catalin Marinas
@ 2023-06-12 15:31 ` Catalin Marinas
2023-06-12 15:32 ` [PATCH v7 16/17] mm: slab: Reduce the kmalloc() minimum alignment if DMA bouncing possible Catalin Marinas
` (3 subsequent siblings)
18 siblings, 0 replies; 34+ messages in thread
From: Catalin Marinas @ 2023-06-12 15:31 UTC (permalink / raw)
To: Andrew Morton, Linus Torvalds
Cc: Christoph Hellwig, Robin Murphy, Arnd Bergmann,
Greg Kroah-Hartman, Will Deacon, Marc Zyngier, Herbert Xu,
Ard Biesheuvel, Isaac Manjarres, Saravana Kannan,
Alasdair Kergon, Daniel Vetter, Joerg Roedel, Mark Brown,
Mike Snitzer, Rafael J. Wysocki, Jonathan Cameron,
Vlastimil Babka, linux-mm, iommu, linux-arm-kernel
Similarly to the direct DMA, bounce small allocations as they may have
originated from a kmalloc() cache not safe for DMA. Unlike the direct
DMA, iommu_dma_map_sg() cannot call iommu_dma_map_sg_swiotlb() for all
non-coherent devices as this would break some cases where the iova is
expected to be contiguous (dmabuf). Instead, scan the scatterlist for
any small sizes and only go the swiotlb path if any element of the list
needs bouncing (note that iommu_dma_map_page() would still only bounce
those buffers which are not DMA-aligned).
To avoid scanning the scatterlist on the 'sync' operations, introduce an
SG_DMA_SWIOTLB flag set by iommu_dma_map_sg_swiotlb(). The
dev_use_swiotlb() function together with the newly added
dev_use_sg_swiotlb() now check for both untrusted devices and unaligned
kmalloc() buffers (suggested by Robin Murphy).
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Reviewed-by: Robin Murphy <robin.murphy@arm.com>
Cc: Joerg Roedel <joro@8bytes.org>
Cc: Christoph Hellwig <hch@lst.de>
Tested-by: Isaac J. Manjarres <isaacmanjarres@google.com>
---
drivers/iommu/Kconfig | 1 +
drivers/iommu/dma-iommu.c | 50 ++++++++++++++++++++++++++++++-------
include/linux/scatterlist.h | 41 ++++++++++++++++++++++++++++--
3 files changed, 81 insertions(+), 11 deletions(-)
diff --git a/drivers/iommu/Kconfig b/drivers/iommu/Kconfig
index db98c3f86e8c..670eff7a8e11 100644
--- a/drivers/iommu/Kconfig
+++ b/drivers/iommu/Kconfig
@@ -152,6 +152,7 @@ config IOMMU_DMA
select IOMMU_IOVA
select IRQ_MSI_IOMMU
select NEED_SG_DMA_LENGTH
+ select NEED_SG_DMA_FLAGS if SWIOTLB
# Shared Virtual Addressing
config IOMMU_SVA
diff --git a/drivers/iommu/dma-iommu.c b/drivers/iommu/dma-iommu.c
index b8bba4aa196f..e86ae462cade 100644
--- a/drivers/iommu/dma-iommu.c
+++ b/drivers/iommu/dma-iommu.c
@@ -520,9 +520,38 @@ static bool dev_is_untrusted(struct device *dev)
return dev_is_pci(dev) && to_pci_dev(dev)->untrusted;
}
-static bool dev_use_swiotlb(struct device *dev)
+static bool dev_use_swiotlb(struct device *dev, size_t size,
+ enum dma_data_direction dir)
{
- return IS_ENABLED(CONFIG_SWIOTLB) && dev_is_untrusted(dev);
+ return IS_ENABLED(CONFIG_SWIOTLB) &&
+ (dev_is_untrusted(dev) ||
+ dma_kmalloc_needs_bounce(dev, size, dir));
+}
+
+static bool dev_use_sg_swiotlb(struct device *dev, struct scatterlist *sg,
+ int nents, enum dma_data_direction dir)
+{
+ struct scatterlist *s;
+ int i;
+
+ if (!IS_ENABLED(CONFIG_SWIOTLB))
+ return false;
+
+ if (dev_is_untrusted(dev))
+ return true;
+
+ /*
+ * If kmalloc() buffers are not DMA-safe for this device and
+ * direction, check the individual lengths in the sg list. If any
+ * element is deemed unsafe, use the swiotlb for bouncing.
+ */
+ if (!dma_kmalloc_safe(dev, dir)) {
+ for_each_sg(sg, s, nents, i)
+ if (!dma_kmalloc_size_aligned(s->length))
+ return true;
+ }
+
+ return false;
}
/**
@@ -922,7 +951,7 @@ static void iommu_dma_sync_single_for_cpu(struct device *dev,
{
phys_addr_t phys;
- if (dev_is_dma_coherent(dev) && !dev_use_swiotlb(dev))
+ if (dev_is_dma_coherent(dev) && !dev_use_swiotlb(dev, size, dir))
return;
phys = iommu_iova_to_phys(iommu_get_dma_domain(dev), dma_handle);
@@ -938,7 +967,7 @@ static void iommu_dma_sync_single_for_device(struct device *dev,
{
phys_addr_t phys;
- if (dev_is_dma_coherent(dev) && !dev_use_swiotlb(dev))
+ if (dev_is_dma_coherent(dev) && !dev_use_swiotlb(dev, size, dir))
return;
phys = iommu_iova_to_phys(iommu_get_dma_domain(dev), dma_handle);
@@ -956,7 +985,7 @@ static void iommu_dma_sync_sg_for_cpu(struct device *dev,
struct scatterlist *sg;
int i;
- if (dev_use_swiotlb(dev))
+ if (sg_dma_is_swiotlb(sgl))
for_each_sg(sgl, sg, nelems, i)
iommu_dma_sync_single_for_cpu(dev, sg_dma_address(sg),
sg->length, dir);
@@ -972,7 +1001,7 @@ static void iommu_dma_sync_sg_for_device(struct device *dev,
struct scatterlist *sg;
int i;
- if (dev_use_swiotlb(dev))
+ if (sg_dma_is_swiotlb(sgl))
for_each_sg(sgl, sg, nelems, i)
iommu_dma_sync_single_for_device(dev,
sg_dma_address(sg),
@@ -998,7 +1027,8 @@ static dma_addr_t iommu_dma_map_page(struct device *dev, struct page *page,
* If both the physical buffer start address and size are
* page aligned, we don't need to use a bounce page.
*/
- if (dev_use_swiotlb(dev) && iova_offset(iovad, phys | size)) {
+ if (dev_use_swiotlb(dev, size, dir) &&
+ iova_offset(iovad, phys | size)) {
void *padding_start;
size_t padding_size, aligned_size;
@@ -1166,6 +1196,8 @@ static int iommu_dma_map_sg_swiotlb(struct device *dev, struct scatterlist *sg,
struct scatterlist *s;
int i;
+ sg_dma_mark_swiotlb(sg);
+
for_each_sg(sg, s, nents, i) {
sg_dma_address(s) = iommu_dma_map_page(dev, sg_page(s),
s->offset, s->length, dir, attrs);
@@ -1210,7 +1242,7 @@ static int iommu_dma_map_sg(struct device *dev, struct scatterlist *sg,
goto out;
}
- if (dev_use_swiotlb(dev))
+ if (dev_use_sg_swiotlb(dev, sg, nents, dir))
return iommu_dma_map_sg_swiotlb(dev, sg, nents, dir, attrs);
if (!(attrs & DMA_ATTR_SKIP_CPU_SYNC))
@@ -1315,7 +1347,7 @@ static void iommu_dma_unmap_sg(struct device *dev, struct scatterlist *sg,
struct scatterlist *tmp;
int i;
- if (dev_use_swiotlb(dev)) {
+ if (sg_dma_is_swiotlb(sg)) {
iommu_dma_unmap_sg_swiotlb(dev, sg, nents, dir, attrs);
return;
}
diff --git a/include/linux/scatterlist.h b/include/linux/scatterlist.h
index 2f06178996ba..ec46d8e8e49d 100644
--- a/include/linux/scatterlist.h
+++ b/include/linux/scatterlist.h
@@ -251,11 +251,13 @@ static inline void sg_unmark_end(struct scatterlist *sg)
/*
* One 64-bit architectures there is a 4-byte padding in struct scatterlist
* (assuming also CONFIG_NEED_SG_DMA_LENGTH is set). Use this padding for DMA
- * flags bits to indicate when a specific dma address is a bus address.
+ * flags bits to indicate when a specific dma address is a bus address or the
+ * buffer may have been bounced via SWIOTLB.
*/
#ifdef CONFIG_NEED_SG_DMA_FLAGS
-#define SG_DMA_BUS_ADDRESS (1 << 0)
+#define SG_DMA_BUS_ADDRESS (1 << 0)
+#define SG_DMA_SWIOTLB (1 << 1)
/**
* sg_dma_is_bus_address - Return whether a given segment was marked
@@ -298,6 +300,34 @@ static inline void sg_dma_unmark_bus_address(struct scatterlist *sg)
sg->dma_flags &= ~SG_DMA_BUS_ADDRESS;
}
+/**
+ * sg_dma_is_swiotlb - Return whether the scatterlist was marked for SWIOTLB
+ * bouncing
+ * @sg: SG entry
+ *
+ * Description:
+ * Returns true if the scatterlist was marked for SWIOTLB bouncing. Not all
+ * elements may have been bounced, so the caller would have to check
+ * individual SG entries with is_swiotlb_buffer().
+ */
+static inline bool sg_dma_is_swiotlb(struct scatterlist *sg)
+{
+ return sg->dma_flags & SG_DMA_SWIOTLB;
+}
+
+/**
+ * sg_dma_mark_swiotlb - Mark the scatterlist for SWIOTLB bouncing
+ * @sg: SG entry
+ *
+ * Description:
+ * Marks a a scatterlist for SWIOTLB bounce. Not all SG entries may be
+ * bounced.
+ */
+static inline void sg_dma_mark_swiotlb(struct scatterlist *sg)
+{
+ sg->dma_flags |= SG_DMA_SWIOTLB;
+}
+
#else
static inline bool sg_dma_is_bus_address(struct scatterlist *sg)
@@ -310,6 +340,13 @@ static inline void sg_dma_mark_bus_address(struct scatterlist *sg)
static inline void sg_dma_unmark_bus_address(struct scatterlist *sg)
{
}
+static inline bool sg_dma_is_swiotlb(struct scatterlist *sg)
+{
+ return false;
+}
+static inline void sg_dma_mark_swiotlb(struct scatterlist *sg)
+{
+}
#endif /* CONFIG_NEED_SG_DMA_FLAGS */
^ permalink raw reply [flat|nested] 34+ messages in thread
* [PATCH v7 16/17] mm: slab: Reduce the kmalloc() minimum alignment if DMA bouncing possible
2023-06-12 15:31 [PATCH v7 00/17] mm, dma, arm64: Reduce ARCH_KMALLOC_MINALIGN to 8 Catalin Marinas
` (14 preceding siblings ...)
2023-06-12 15:31 ` [PATCH v7 15/17] iommu/dma: Force bouncing if the size is not cacheline-aligned Catalin Marinas
@ 2023-06-12 15:32 ` Catalin Marinas
2023-06-12 15:32 ` [PATCH v7 17/17] arm64: Enable ARCH_WANT_KMALLOC_DMA_BOUNCE for arm64 Catalin Marinas
` (2 subsequent siblings)
18 siblings, 0 replies; 34+ messages in thread
From: Catalin Marinas @ 2023-06-12 15:32 UTC (permalink / raw)
To: Andrew Morton, Linus Torvalds
Cc: Christoph Hellwig, Robin Murphy, Arnd Bergmann,
Greg Kroah-Hartman, Will Deacon, Marc Zyngier, Herbert Xu,
Ard Biesheuvel, Isaac Manjarres, Saravana Kannan,
Alasdair Kergon, Daniel Vetter, Joerg Roedel, Mark Brown,
Mike Snitzer, Rafael J. Wysocki, Jonathan Cameron,
Vlastimil Babka, linux-mm, iommu, linux-arm-kernel
If an architecture opted in to DMA bouncing of unaligned kmalloc()
buffers (ARCH_WANT_KMALLOC_DMA_BOUNCE), reduce the minimum kmalloc()
cache alignment below cache-line size to ARCH_KMALLOC_MINALIGN.
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Reviewed-by: Vlastimil Babka <vbabka@suse.cz>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Christoph Hellwig <hch@lst.de>
Cc: Robin Murphy <robin.murphy@arm.com>
Tested-by: Isaac J. Manjarres <isaacmanjarres@google.com>
---
mm/slab_common.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/mm/slab_common.c b/mm/slab_common.c
index 7c6475847fdf..43c008165f56 100644
--- a/mm/slab_common.c
+++ b/mm/slab_common.c
@@ -18,6 +18,7 @@
#include <linux/uaccess.h>
#include <linux/seq_file.h>
#include <linux/dma-mapping.h>
+#include <linux/swiotlb.h>
#include <linux/proc_fs.h>
#include <linux/debugfs.h>
#include <linux/kasan.h>
@@ -865,6 +866,10 @@ void __init setup_kmalloc_cache_index_table(void)
static unsigned int __kmalloc_minalign(void)
{
+#ifdef CONFIG_DMA_BOUNCE_UNALIGNED_KMALLOC
+ if (io_tlb_default_mem.nslabs)
+ return ARCH_KMALLOC_MINALIGN;
+#endif
return dma_get_cache_alignment();
}
^ permalink raw reply [flat|nested] 34+ messages in thread
* [PATCH v7 17/17] arm64: Enable ARCH_WANT_KMALLOC_DMA_BOUNCE for arm64
2023-06-12 15:31 [PATCH v7 00/17] mm, dma, arm64: Reduce ARCH_KMALLOC_MINALIGN to 8 Catalin Marinas
` (15 preceding siblings ...)
2023-06-12 15:32 ` [PATCH v7 16/17] mm: slab: Reduce the kmalloc() minimum alignment if DMA bouncing possible Catalin Marinas
@ 2023-06-12 15:32 ` Catalin Marinas
2023-07-05 13:40 ` [PATCH v7 00/17] mm, dma, arm64: Reduce ARCH_KMALLOC_MINALIGN to 8 Amit Pundir
2025-03-28 16:41 ` John Ernberg
18 siblings, 0 replies; 34+ messages in thread
From: Catalin Marinas @ 2023-06-12 15:32 UTC (permalink / raw)
To: Andrew Morton, Linus Torvalds
Cc: Christoph Hellwig, Robin Murphy, Arnd Bergmann,
Greg Kroah-Hartman, Will Deacon, Marc Zyngier, Herbert Xu,
Ard Biesheuvel, Isaac Manjarres, Saravana Kannan,
Alasdair Kergon, Daniel Vetter, Joerg Roedel, Mark Brown,
Mike Snitzer, Rafael J. Wysocki, Jonathan Cameron,
Vlastimil Babka, linux-mm, iommu, linux-arm-kernel
With the DMA bouncing of unaligned kmalloc() buffers now in place,
enable it for arm64 to allow the kmalloc-{8,16,32,48,96} caches. In
addition, always create the swiotlb buffer even when the end of RAM is
within the 32-bit physical address range (the swiotlb buffer can still
be disabled on the kernel command line).
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Cc: Will Deacon <will@kernel.org>
Tested-by: Isaac J. Manjarres <isaacmanjarres@google.com>
---
arch/arm64/Kconfig | 1 +
arch/arm64/mm/init.c | 7 ++++++-
2 files changed, 7 insertions(+), 1 deletion(-)
diff --git a/arch/arm64/Kconfig b/arch/arm64/Kconfig
index b1201d25a8a4..af42871431c0 100644
--- a/arch/arm64/Kconfig
+++ b/arch/arm64/Kconfig
@@ -120,6 +120,7 @@ config ARM64
select CRC32
select DCACHE_WORD_ACCESS
select DYNAMIC_FTRACE if FUNCTION_TRACER
+ select DMA_BOUNCE_UNALIGNED_KMALLOC
select DMA_DIRECT_REMAP
select EDAC_SUPPORT
select FRAME_POINTER
diff --git a/arch/arm64/mm/init.c b/arch/arm64/mm/init.c
index 66e70ca47680..3ac2e9d79ce4 100644
--- a/arch/arm64/mm/init.c
+++ b/arch/arm64/mm/init.c
@@ -442,7 +442,12 @@ void __init bootmem_init(void)
*/
void __init mem_init(void)
{
- swiotlb_init(max_pfn > PFN_DOWN(arm64_dma_phys_limit), SWIOTLB_VERBOSE);
+ bool swiotlb = max_pfn > PFN_DOWN(arm64_dma_phys_limit);
+
+ if (IS_ENABLED(CONFIG_DMA_BOUNCE_UNALIGNED_KMALLOC))
+ swiotlb = true;
+
+ swiotlb_init(swiotlb, SWIOTLB_VERBOSE);
/* this will put all unused low memory onto the freelists */
memblock_free_all();
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH v7 01/17] mm/slab: Decouple ARCH_KMALLOC_MINALIGN from ARCH_DMA_MINALIGN
2023-06-12 15:31 ` [PATCH v7 01/17] mm/slab: Decouple ARCH_KMALLOC_MINALIGN from ARCH_DMA_MINALIGN Catalin Marinas
@ 2023-06-13 9:46 ` Vlastimil Babka
2023-06-13 11:13 ` Catalin Marinas
0 siblings, 1 reply; 34+ messages in thread
From: Vlastimil Babka @ 2023-06-13 9:46 UTC (permalink / raw)
To: Catalin Marinas, Andrew Morton, Linus Torvalds
Cc: Christoph Hellwig, Robin Murphy, Arnd Bergmann,
Greg Kroah-Hartman, Will Deacon, Marc Zyngier, Herbert Xu,
Ard Biesheuvel, Isaac Manjarres, Saravana Kannan,
Alasdair Kergon, Daniel Vetter, Joerg Roedel, Mark Brown,
Mike Snitzer, Rafael J. Wysocki, Jonathan Cameron, linux-mm,
iommu, linux-arm-kernel
On 6/12/23 17:31, Catalin Marinas wrote:
> In preparation for supporting a kmalloc() minimum alignment smaller than
> the arch DMA alignment, decouple the two definitions. This requires that
> either the kmalloc() caches are aligned to a (run-time) cache-line size
> or the DMA API bounces unaligned kmalloc() allocations. Subsequent
> patches will implement both options.
>
> After this patch, ARCH_DMA_MINALIGN is expected to be used in static
> alignment annotations and defined by an architecture to be the maximum
> alignment for all supported configurations/SoCs in a single Image.
> Architectures opting in to a smaller ARCH_KMALLOC_MINALIGN will need to
> define its value in the arch headers.
>
> Since ARCH_DMA_MINALIGN is now always defined, adjust the #ifdef in
> dma_get_cache_alignment() so that there is no change for architectures
> not requiring a minimum DMA alignment.
>
> Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
> Cc: Andrew Morton <akpm@linux-foundation.org>
> Cc: Vlastimil Babka <vbabka@suse.cz>
> Cc: Christoph Hellwig <hch@lst.de>
> Cc: Robin Murphy <robin.murphy@arm.com>
> Tested-by: Isaac J. Manjarres <isaacmanjarres@google.com>
Acked-by: Vlastimil Babka <vbabka@suse.cz>
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH v7 01/17] mm/slab: Decouple ARCH_KMALLOC_MINALIGN from ARCH_DMA_MINALIGN
2023-06-13 9:46 ` Vlastimil Babka
@ 2023-06-13 11:13 ` Catalin Marinas
0 siblings, 0 replies; 34+ messages in thread
From: Catalin Marinas @ 2023-06-13 11:13 UTC (permalink / raw)
To: Vlastimil Babka
Cc: Andrew Morton, Linus Torvalds, Christoph Hellwig, Robin Murphy,
Arnd Bergmann, Greg Kroah-Hartman, Will Deacon, Marc Zyngier,
Herbert Xu, Ard Biesheuvel, Isaac Manjarres, Saravana Kannan,
Alasdair Kergon, Daniel Vetter, Joerg Roedel, Mark Brown,
Mike Snitzer, Rafael J. Wysocki, Jonathan Cameron, linux-mm,
iommu, linux-arm-kernel, Michael Ellerman
On Tue, Jun 13, 2023 at 11:46:31AM +0200, Vlastimil Babka wrote:
> On 6/12/23 17:31, Catalin Marinas wrote:
> > In preparation for supporting a kmalloc() minimum alignment smaller than
> > the arch DMA alignment, decouple the two definitions. This requires that
> > either the kmalloc() caches are aligned to a (run-time) cache-line size
> > or the DMA API bounces unaligned kmalloc() allocations. Subsequent
> > patches will implement both options.
> >
> > After this patch, ARCH_DMA_MINALIGN is expected to be used in static
> > alignment annotations and defined by an architecture to be the maximum
> > alignment for all supported configurations/SoCs in a single Image.
> > Architectures opting in to a smaller ARCH_KMALLOC_MINALIGN will need to
> > define its value in the arch headers.
> >
> > Since ARCH_DMA_MINALIGN is now always defined, adjust the #ifdef in
> > dma_get_cache_alignment() so that there is no change for architectures
> > not requiring a minimum DMA alignment.
> >
> > Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
> > Cc: Andrew Morton <akpm@linux-foundation.org>
> > Cc: Vlastimil Babka <vbabka@suse.cz>
> > Cc: Christoph Hellwig <hch@lst.de>
> > Cc: Robin Murphy <robin.murphy@arm.com>
> > Tested-by: Isaac J. Manjarres <isaacmanjarres@google.com>
>
> Acked-by: Vlastimil Babka <vbabka@suse.cz>
Thanks for the ack.
It looks like moving the ARCH_DMA_MINALIGN definition to linux/cache.h
messes up powerpc32 -
https://lore.kernel.org/r/202306131053.1ybvRRhO-lkp@intel.com - possibly
a few other architecture that define this macro in a file other than
asm/cache.h (I only tested powerpc64 before posting).
At a quick grep, we have:
arch/microblaze/include/asm/page.h:34: #define ARCH_DMA_MINALIGN L1_CACHE_BYTES
This could be moved to asm/cache.h. It probably already relies on some
indirect includes.
arch/mips/include/asm/mach-generic/kmalloc.h:10: #define ARCH_DMA_MINALIGN 128
arch/mips/include/asm/mach-ip32/kmalloc.h:7: #define ARCH_DMA_MINALIGN 32
arch/mips/include/asm/mach-ip32/kmalloc.h:9: #define ARCH_DMA_MINALIGN 128
arch/mips/include/asm/mach-n64/kmalloc.h:6: #define ARCH_DMA_MINALIGN L1_CACHE_BYTES
arch/mips/include/asm/mach-tx49xx/kmalloc.h:5: #define ARCH_DMA_MINALIGN L1_CACHE_BYTES
These are ok since kmalloc.h is included in asm/cache.h.
arch/powerpc/include/asm/page_32.h:16: #define ARCH_DMA_MINALIGN L1_CACHE_BYTES
I'd move this macro to asm/cache.h on powerpc. asm/page_32.h already
includes asm/cache.h.
arch/sh/include/asm/page.h:181: #define ARCH_DMA_MINALIGN L1_CACHE_BYTES
Same here. L1_CACHE_BYTES is defined in asm/cache.h but it's not
included in asm/page.h, so I guess it's relying on some indirect
includes.
I'll post three more patches to move the ARCH_DMA_MINALIGN to
asm/cache.h for microblaze, powerpc and sh (once I finished build
testing).
--
Catalin
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH v7 00/17] mm, dma, arm64: Reduce ARCH_KMALLOC_MINALIGN to 8
2023-06-12 15:31 [PATCH v7 00/17] mm, dma, arm64: Reduce ARCH_KMALLOC_MINALIGN to 8 Catalin Marinas
` (16 preceding siblings ...)
2023-06-12 15:32 ` [PATCH v7 17/17] arm64: Enable ARCH_WANT_KMALLOC_DMA_BOUNCE for arm64 Catalin Marinas
@ 2023-07-05 13:40 ` Amit Pundir
2023-07-07 0:41 ` Isaac Manjarres
2023-07-09 3:27 ` Catalin Marinas
2025-03-28 16:41 ` John Ernberg
18 siblings, 2 replies; 34+ messages in thread
From: Amit Pundir @ 2023-07-05 13:40 UTC (permalink / raw)
To: Catalin Marinas
Cc: Andrew Morton, Linus Torvalds, Christoph Hellwig, Robin Murphy,
Arnd Bergmann, Greg Kroah-Hartman, Will Deacon, Marc Zyngier,
Herbert Xu, Ard Biesheuvel, Isaac Manjarres, Saravana Kannan,
Alasdair Kergon, Daniel Vetter, Joerg Roedel, Mark Brown,
Mike Snitzer, Rafael J. Wysocki, Jonathan Cameron,
Vlastimil Babka, linux-mm, iommu, linux-arm-kernel,
Linux regressions mailing list
Hi Catalin,
On Wed, 5 Jul 2023 at 18:17, Catalin Marinas <catalin.marinas@arm.com> wrote:
>
> Hi,
>
> That's v7 of the series reducing the kmalloc() minimum alignment on
> arm64 to 8 (from 128). There's no new/different functionality, mostly
> cosmetic changes and acks/tested-bys.
>
> Andrew, if there are no further comments or objections to this version,
> are you ok to take the series through the mm tree? The arm64 changes are
> fairly small. Alternatively, I can push it into linux-next now to give
> it some wider exposure and decide whether to upstream it when the
> merging window opens. Thanks.
This patch series broke Dragonboard 845c (SDM845) running AOSP.
With this series I run into random oops at __kmem_cache_alloc_node().
Here is one such boot log https://bugs.linaro.org/attachment.cgi?id=1146
Reverting "arm64: Enable ARCH_WANT_KMALLOC_DMA_BOUNCE for arm64"
fixes it for the time being.
Regards,
Amit Pundir
>
> The updated patches are also available on this branch:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux devel/kmalloc-minalign
>
> Changes since v6
> (https://lore.kernel.org/r/20230531154836.1366225-1-catalin.marinas@arm.com):
>
> - Moved ARCH_DMA_MINALIGN to include/linux/cache.h from slab.h (it
> matches the asm/cache.h where most architectures defining this macro
> place it).
>
> - Single body for __kmalloc_minalign() with an #ifdef.
>
> - Renamed the sg_dma_use_swiotlb() to sg_dma_is_swiotlb() (Robin's
> suggestion).
>
> - Added acks/tested-by.
>
> Catalin Marinas (15):
> mm/slab: Decouple ARCH_KMALLOC_MINALIGN from ARCH_DMA_MINALIGN
> dma: Allow dma_get_cache_alignment() to be overridden by the arch code
> mm/slab: Simplify create_kmalloc_cache() args and make it static
> mm/slab: Limit kmalloc() minimum alignment to
> dma_get_cache_alignment()
> drivers/base: Use ARCH_DMA_MINALIGN instead of ARCH_KMALLOC_MINALIGN
> drivers/gpu: Use ARCH_DMA_MINALIGN instead of ARCH_KMALLOC_MINALIGN
> drivers/usb: Use ARCH_DMA_MINALIGN instead of ARCH_KMALLOC_MINALIGN
> drivers/spi: Use ARCH_DMA_MINALIGN instead of ARCH_KMALLOC_MINALIGN
> dm-crypt: Use ARCH_DMA_MINALIGN instead of ARCH_KMALLOC_MINALIGN
> iio: core: Use ARCH_DMA_MINALIGN instead of ARCH_KMALLOC_MINALIGN
> arm64: Allow kmalloc() caches aligned to the smaller cache_line_size()
> dma-mapping: Force bouncing if the kmalloc() size is not
> cache-line-aligned
> iommu/dma: Force bouncing if the size is not cacheline-aligned
> mm: slab: Reduce the kmalloc() minimum alignment if DMA bouncing
> possible
> arm64: Enable ARCH_WANT_KMALLOC_DMA_BOUNCE for arm64
>
> Robin Murphy (2):
> scatterlist: Add dedicated config for DMA flags
> dma-mapping: Name SG DMA flag helpers consistently
>
> arch/arm64/Kconfig | 1 +
> arch/arm64/include/asm/cache.h | 3 ++
> arch/arm64/mm/init.c | 7 +++-
> drivers/base/devres.c | 6 ++--
> drivers/gpu/drm/drm_managed.c | 6 ++--
> drivers/iommu/Kconfig | 1 +
> drivers/iommu/dma-iommu.c | 58 ++++++++++++++++++++++++--------
> drivers/iommu/iommu.c | 2 +-
> drivers/md/dm-crypt.c | 2 +-
> drivers/pci/Kconfig | 1 +
> drivers/spi/spidev.c | 2 +-
> drivers/usb/core/buffer.c | 8 ++---
> include/linux/cache.h | 6 ++++
> include/linux/dma-map-ops.h | 61 ++++++++++++++++++++++++++++++++++
> include/linux/dma-mapping.h | 5 ++-
> include/linux/iio/iio.h | 2 +-
> include/linux/scatterlist.h | 60 ++++++++++++++++++++++++++-------
> include/linux/slab.h | 14 +++++---
> kernel/dma/Kconfig | 7 ++++
> kernel/dma/direct.c | 2 +-
> kernel/dma/direct.h | 3 +-
> mm/slab.c | 6 +---
> mm/slab.h | 5 ++-
> mm/slab_common.c | 41 +++++++++++++++++------
> 24 files changed, 244 insertions(+), 65 deletions(-)
>
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH v7 00/17] mm, dma, arm64: Reduce ARCH_KMALLOC_MINALIGN to 8
2023-07-05 13:40 ` [PATCH v7 00/17] mm, dma, arm64: Reduce ARCH_KMALLOC_MINALIGN to 8 Amit Pundir
@ 2023-07-07 0:41 ` Isaac Manjarres
2023-07-08 13:02 ` Amit Pundir
2023-07-09 3:27 ` Catalin Marinas
1 sibling, 1 reply; 34+ messages in thread
From: Isaac Manjarres @ 2023-07-07 0:41 UTC (permalink / raw)
To: Amit Pundir
Cc: Catalin Marinas, Andrew Morton, Linus Torvalds,
Christoph Hellwig, Robin Murphy, Arnd Bergmann,
Greg Kroah-Hartman, Will Deacon, Marc Zyngier, Herbert Xu,
Ard Biesheuvel, Saravana Kannan, Alasdair Kergon, Daniel Vetter,
Joerg Roedel, Mark Brown, Mike Snitzer, Rafael J. Wysocki,
Jonathan Cameron, Vlastimil Babka, linux-mm, iommu,
linux-arm-kernel, Linux regressions mailing list
On Wed, Jul 05, 2023 at 07:10:02PM +0530, Amit Pundir wrote:
> Hi Catalin,
>
> On Wed, 5 Jul 2023 at 18:17, Catalin Marinas <catalin.marinas@arm.com> wrote:
> >
> > Hi,
> >
> > That's v7 of the series reducing the kmalloc() minimum alignment on
> > arm64 to 8 (from 128). There's no new/different functionality, mostly
> > cosmetic changes and acks/tested-bys.
> >
> > Andrew, if there are no further comments or objections to this version,
> > are you ok to take the series through the mm tree? The arm64 changes are
> > fairly small. Alternatively, I can push it into linux-next now to give
> > it some wider exposure and decide whether to upstream it when the
> > merging window opens. Thanks.
>
> This patch series broke Dragonboard 845c (SDM845) running AOSP.
> With this series I run into random oops at __kmem_cache_alloc_node().
> Here is one such boot log https://bugs.linaro.org/attachment.cgi?id=1146
Hey Amit,
From the log that you linked, this looks like there's corruption within
the kmalloc slab caches. Can you please try enabling slub debug? That
might give us more information about who is causing the corruption
you're seeing here.
To enable slub debug, you can add the following to your kernel config:
CONFIG_SLUB_DEBUG=y
and CONFIG_SLUB_DEBUG_ON=y or add slub_debug to the kernel command line.
--Isaac
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH v7 00/17] mm, dma, arm64: Reduce ARCH_KMALLOC_MINALIGN to 8
2023-07-07 0:41 ` Isaac Manjarres
@ 2023-07-08 13:02 ` Amit Pundir
2023-07-11 19:44 ` Isaac Manjarres
0 siblings, 1 reply; 34+ messages in thread
From: Amit Pundir @ 2023-07-08 13:02 UTC (permalink / raw)
To: Isaac Manjarres
Cc: Catalin Marinas, Andrew Morton, Linus Torvalds,
Christoph Hellwig, Robin Murphy, Arnd Bergmann,
Greg Kroah-Hartman, Will Deacon, Marc Zyngier, Herbert Xu,
Ard Biesheuvel, Saravana Kannan, Alasdair Kergon, Daniel Vetter,
Joerg Roedel, Mark Brown, Mike Snitzer, Rafael J. Wysocki,
Jonathan Cameron, Vlastimil Babka, linux-mm, iommu,
linux-arm-kernel, Linux regressions mailing list
On Fri, 7 Jul 2023 at 06:12, Isaac Manjarres <isaacmanjarres@google.com> wrote:
>
> On Wed, Jul 05, 2023 at 07:10:02PM +0530, Amit Pundir wrote:
> > Hi Catalin,
> >
> > On Wed, 5 Jul 2023 at 18:17, Catalin Marinas <catalin.marinas@arm.com> wrote:
> > >
> > > Hi,
> > >
> > > That's v7 of the series reducing the kmalloc() minimum alignment on
> > > arm64 to 8 (from 128). There's no new/different functionality, mostly
> > > cosmetic changes and acks/tested-bys.
> > >
> > > Andrew, if there are no further comments or objections to this version,
> > > are you ok to take the series through the mm tree? The arm64 changes are
> > > fairly small. Alternatively, I can push it into linux-next now to give
> > > it some wider exposure and decide whether to upstream it when the
> > > merging window opens. Thanks.
> >
> > This patch series broke Dragonboard 845c (SDM845) running AOSP.
> > With this series I run into random oops at __kmem_cache_alloc_node().
> > Here is one such boot log https://bugs.linaro.org/attachment.cgi?id=1146
>
> Hey Amit,
>
> From the log that you linked, this looks like there's corruption within
> the kmalloc slab caches. Can you please try enabling slub debug? That
> might give us more information about who is causing the corruption
> you're seeing here.
>
> To enable slub debug, you can add the following to your kernel config:
>
> CONFIG_SLUB_DEBUG=y
>
> and CONFIG_SLUB_DEBUG_ON=y or add slub_debug to the kernel command line.
Hi Issac, I can't reproduce this crash if I have slub_debug enabled
https://bugs.linaro.org/attachment.cgi?id=1149.
But I can still reproduce the crash, with the same build, if I just
remove the slub_debug bootarg
https://bugs.linaro.org/attachment.cgi?id=1150
Is there any specific (slub_debug=) option(s) you want me to try?
May be I can reproduce this bug just with those options.
Regards,
Amit Pundir
>
> --Isaac
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH v7 00/17] mm, dma, arm64: Reduce ARCH_KMALLOC_MINALIGN to 8
2023-07-05 13:40 ` [PATCH v7 00/17] mm, dma, arm64: Reduce ARCH_KMALLOC_MINALIGN to 8 Amit Pundir
2023-07-07 0:41 ` Isaac Manjarres
@ 2023-07-09 3:27 ` Catalin Marinas
1 sibling, 0 replies; 34+ messages in thread
From: Catalin Marinas @ 2023-07-09 3:27 UTC (permalink / raw)
To: Amit Pundir
Cc: Andrew Morton, Linus Torvalds, Christoph Hellwig, Robin Murphy,
Arnd Bergmann, Greg Kroah-Hartman, Will Deacon, Marc Zyngier,
Herbert Xu, Ard Biesheuvel, Isaac Manjarres, Saravana Kannan,
Alasdair Kergon, Daniel Vetter, Joerg Roedel, Mark Brown,
Mike Snitzer, Rafael J. Wysocki, Jonathan Cameron,
Vlastimil Babka, linux-mm, iommu, linux-arm-kernel,
Linux regressions mailing list
Hi Amit,
On Wed, Jul 05, 2023 at 07:10:02PM +0530, Amit Pundir wrote:
> On Wed, 5 Jul 2023 at 18:17, Catalin Marinas <catalin.marinas@arm.com> wrote:
> > That's v7 of the series reducing the kmalloc() minimum alignment on
> > arm64 to 8 (from 128). There's no new/different functionality, mostly
> > cosmetic changes and acks/tested-bys.
> >
> > Andrew, if there are no further comments or objections to this version,
> > are you ok to take the series through the mm tree? The arm64 changes are
> > fairly small. Alternatively, I can push it into linux-next now to give
> > it some wider exposure and decide whether to upstream it when the
> > merging window opens. Thanks.
>
> This patch series broke Dragonboard 845c (SDM845) running AOSP.
> With this series I run into random oops at __kmem_cache_alloc_node().
> Here is one such boot log https://bugs.linaro.org/attachment.cgi?id=1146
>
> Reverting "arm64: Enable ARCH_WANT_KMALLOC_DMA_BOUNCE for arm64"
> fixes it for the time being.
I'm on holiday until the 24th, away from my computer and I don't have
much time to dig into this. Are the DMA-capable devices on this platform
non-coherent? We'd need to check whether the bouncing logic somehow
overflows and corrupts adjacent memory. If the devices are coherent,
maybe the DMA spills over the kmalloc() boundaries, now that we
allocate buffers smaller than a cacheline even for DMA (no bouncing if
the DMA is coherent). Also, are these devices behind an IOMMU?
Yet another possibility is a not fully transparent system level cache
with a line size larger than what's reported by the CTR_EL0.CWG. If you
boot the platform with "swiotlb=noforce", do you still see issues? Or
there's no swiotlb buffer allocated anyway.
In addition to what Isaac suggests on slab debugging, it may be worth
enabling DMA debugging as well (I don't remember the config name).
--
Catalin
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH v7 00/17] mm, dma, arm64: Reduce ARCH_KMALLOC_MINALIGN to 8
2023-07-08 13:02 ` Amit Pundir
@ 2023-07-11 19:44 ` Isaac Manjarres
2023-07-12 4:57 ` Amit Pundir
0 siblings, 1 reply; 34+ messages in thread
From: Isaac Manjarres @ 2023-07-11 19:44 UTC (permalink / raw)
To: Amit Pundir
Cc: Catalin Marinas, Andrew Morton, Linus Torvalds,
Christoph Hellwig, Robin Murphy, Arnd Bergmann,
Greg Kroah-Hartman, Will Deacon, Marc Zyngier, Herbert Xu,
Ard Biesheuvel, Saravana Kannan, Alasdair Kergon, Daniel Vetter,
Joerg Roedel, Mark Brown, Mike Snitzer, Rafael J. Wysocki,
Jonathan Cameron, Vlastimil Babka, linux-mm, iommu,
linux-arm-kernel, Linux regressions mailing list, John Stultz
On Sat, Jul 8, 2023 at 6:03 AM Amit Pundir <amit.pundir@linaro.org> wrote:
> Hi Issac, I can't reproduce this crash if I have slub_debug enabled
> https://bugs.linaro.org/attachment.cgi?id=1149.
>
> But I can still reproduce the crash, with the same build, if I just
> remove the slub_debug bootarg
> https://bugs.linaro.org/attachment.cgi?id=1150
>
Hey Amit,
Thanks for trying this out. John Stultz and I tried this out as well, and we
couldn't reproduce the issue with slub_debug enabled either.
However, we were able to reproduce the issue you reported along with
KASAN enabled, which also helped us catch an out-of-bounds access
in the regmap-irq code. Once we fixed it, the memory corruption you
reported was also fixed. I've sent the patch [1] for review. Can you please
test it out and see if it works for you too?
[1]: https://lore.kernel.org/all/20230711193059.2480971-1-isaacmanjarres@google.com/
Thanks,
Isaac
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH v7 00/17] mm, dma, arm64: Reduce ARCH_KMALLOC_MINALIGN to 8
2023-07-11 19:44 ` Isaac Manjarres
@ 2023-07-12 4:57 ` Amit Pundir
0 siblings, 0 replies; 34+ messages in thread
From: Amit Pundir @ 2023-07-12 4:57 UTC (permalink / raw)
To: Isaac Manjarres
Cc: Catalin Marinas, Andrew Morton, Linus Torvalds,
Christoph Hellwig, Robin Murphy, Arnd Bergmann,
Greg Kroah-Hartman, Will Deacon, Marc Zyngier, Herbert Xu,
Ard Biesheuvel, Saravana Kannan, Alasdair Kergon, Daniel Vetter,
Joerg Roedel, Mark Brown, Mike Snitzer, Rafael J. Wysocki,
Jonathan Cameron, Vlastimil Babka, linux-mm, iommu,
linux-arm-kernel, Linux regressions mailing list, John Stultz
On Wed, 12 Jul 2023 at 01:14, Isaac Manjarres <isaacmanjarres@google.com> wrote:
>
> On Sat, Jul 8, 2023 at 6:03 AM Amit Pundir <amit.pundir@linaro.org> wrote:
> > Hi Issac, I can't reproduce this crash if I have slub_debug enabled
> > https://bugs.linaro.org/attachment.cgi?id=1149.
> >
> > But I can still reproduce the crash, with the same build, if I just
> > remove the slub_debug bootarg
> > https://bugs.linaro.org/attachment.cgi?id=1150
> >
>
> Hey Amit,
>
> Thanks for trying this out. John Stultz and I tried this out as well, and we
> couldn't reproduce the issue with slub_debug enabled either.
>
> However, we were able to reproduce the issue you reported along with
> KASAN enabled, which also helped us catch an out-of-bounds access
> in the regmap-irq code. Once we fixed it, the memory corruption you
> reported was also fixed. I've sent the patch [1] for review. Can you please
> test it out and see if it works for you too?
It does fix the v6.5-rc1 boot regression I reported above on
Dragonboard 845c running AOSP. Thank you.
Regards,
Amit Pundir
>
> [1]: https://lore.kernel.org/all/20230711193059.2480971-1-isaacmanjarres@google.com/
>
> Thanks,
> Isaac
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH v7 00/17] mm, dma, arm64: Reduce ARCH_KMALLOC_MINALIGN to 8
2023-06-12 15:31 [PATCH v7 00/17] mm, dma, arm64: Reduce ARCH_KMALLOC_MINALIGN to 8 Catalin Marinas
` (17 preceding siblings ...)
2023-07-05 13:40 ` [PATCH v7 00/17] mm, dma, arm64: Reduce ARCH_KMALLOC_MINALIGN to 8 Amit Pundir
@ 2025-03-28 16:41 ` John Ernberg
2025-03-28 19:38 ` Frank Li
2025-04-01 16:43 ` Catalin Marinas
18 siblings, 2 replies; 34+ messages in thread
From: John Ernberg @ 2025-03-28 16:41 UTC (permalink / raw)
To: Catalin Marinas, Peter Chen, Pawel Laszczak, Roger Quadros
Cc: linux-mm, linux-arm-kernel, linux-usb, imx, Jonas Blixt
[-- Attachment #1: Type: text/plain, Size: 4237 bytes --]
On 6/12/23 5:31 PM, Catalin Marinas wrote:
> Hi,
>
> That's v7 of the series reducing the kmalloc() minimum alignment on
> arm64 to 8 (from 128). There's no new/different functionality, mostly
> cosmetic changes and acks/tested-bys.
>
> Andrew, if there are no further comments or objections to this version,
> are you ok to take the series through the mm tree? The arm64 changes are
> fairly small. Alternatively, I can push it into linux-next now to give
> it some wider exposure and decide whether to upstream it when the
> merging window opens. Thanks.
>
> The updated patches are also available on this branch:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux devel/kmalloc-minalign
>
(I trimmed the recipients and added linux-usb and imx mailing list, +
cdns3 maintainers)
Hi Catalin, lists,
Seen on Linux 6.12.20, it is not trivial for us to test later kernels so
if the issue is potentially fixed we are more than happy to cherry-pick
the potential fixes and give them a go.
Having an SMSC9512 (smsc95xx) USB Ethernet/Hub chip attached to the armv8
SoC iMX8QXP over the Cadence USB3 USB2 interface (cdns3-imx) will since
the patch set at [0] cause random interrupt storms over the SMSC9512 INT
EP.
The reason for the storm is that the async URBs queued at [1] right before
the interrupt configuration [2] in the driver.
With [0] applied, those async URBs are likely clobbering any URB located
after them in memory somewhere in the xhci memory space.
The memory corruption only happens if there is more than one URB in the
queue at the same time, making these async URBs a good trigger of the
problem.
If we force those URBs to be sync or use the hack inlined below, the
problem goes away.
The content of read_buf in the interrupt configuration read at [2] looks
to be the lo-part of a pointer +-20 bytes distance from the pointers
present in the async URBs queued from [1] when we dumped the URB structures
instead of the expected register contents.
Attached are 3 usbmon captures, with some annotations, which we thought
might contain useful hints.
* usb-annotated-bad.pcapng shows the URB that will get clobbered is queued
at position 280, and completes at 282.
* usb-annotated-good.pcapng shows the URB that gets clobbered in the bad
case is queued at position 282 and completes at 283.
The above captures are from a kernel where the hack has not been applied.
* usb-annotated-hackfix.pcapng shows the URB that gets clobbered in the
bad case is queued at position 238 and completes at 240.
This was captured after the hack fix inlined below was applied.
We have no reason to believe [0] is actually causing this, but rather
the improvements uncovered a pre-existing issue with the Cadence 3
integration in the iMX8QXP, as otherwise USB would be some level of broken
for absolutely everyone on ARM64 since 2+ years.
The reason we did not notice the issue earlier is that until very recently
we have been stuck on the NXP vendoring of 6.1 which pre-dates [0].
We determined [0] uncovers the breakage by replacing the host/ and cdns3/
code with the NXP 6.1 vendor kernel code in a Frankenstein fashion and
still ending up with the same USB breakage.
Running KASAN on this doesn't trigger anything, so it's not a KASAN
detectable issue.
Our knowledge on how to progress on debugging this has unfortunately come
to an end. We'd deeply appreciate any suggestion or possible patches to
test.
Best regards // John Ernberg
[0]:
https://lore.kernel.org/linux-mm/20230612153201.554742-1-catalin.marinas@arm.com/
[1]:
https://elixir.bootlin.com/linux/v6.12.19/source/drivers/net/usb/smsc95xx.c#L525
[2]:
https://elixir.bootlin.com/linux/v6.12.19/source/drivers/net/usb/smsc95xx.c#L1045
------------------->8-----------
diff --git a/arch/arm64/include/asm/cache.h b/arch/arm64/include/asm/cache.h
index 06a4670bdb0b..7356801faa52 100644
--- a/arch/arm64/include/asm/cache.h
+++ b/arch/arm64/include/asm/cache.h
@@ -33,7 +33,7 @@
* the CPU.
*/
#define ARCH_DMA_MINALIGN (128)
-#define ARCH_KMALLOC_MINALIGN (8)
+#define ARCH_KMALLOC_MINALIGN (128)
#ifndef __ASSEMBLY__
[-- Attachment #2: usb-annotated-bad.pcapng --]
[-- Type: application/x-pcapng, Size: 62472 bytes --]
[-- Attachment #3: usb-annotated-good.pcapng --]
[-- Type: application/x-pcapng, Size: 52692 bytes --]
[-- Attachment #4: usb-annotated-hackfix.pcapng --]
[-- Type: application/x-pcapng, Size: 58324 bytes --]
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH v7 00/17] mm, dma, arm64: Reduce ARCH_KMALLOC_MINALIGN to 8
2025-03-28 16:41 ` John Ernberg
@ 2025-03-28 19:38 ` Frank Li
2025-03-31 8:02 ` John Ernberg
2025-04-01 16:43 ` Catalin Marinas
1 sibling, 1 reply; 34+ messages in thread
From: Frank Li @ 2025-03-28 19:38 UTC (permalink / raw)
To: John Ernberg
Cc: Catalin Marinas, Peter Chen, Pawel Laszczak, Roger Quadros,
linux-mm, linux-arm-kernel, linux-usb, imx, Jonas Blixt
On Fri, Mar 28, 2025 at 04:41:05PM +0000, John Ernberg wrote:
> On 6/12/23 5:31 PM, Catalin Marinas wrote:
> > Hi,
> >
> > That's v7 of the series reducing the kmalloc() minimum alignment on
> > arm64 to 8 (from 128). There's no new/different functionality, mostly
> > cosmetic changes and acks/tested-bys.
> >
> > Andrew, if there are no further comments or objections to this version,
> > are you ok to take the series through the mm tree? The arm64 changes are
> > fairly small. Alternatively, I can push it into linux-next now to give
> > it some wider exposure and decide whether to upstream it when the
> > merging window opens. Thanks.
> >
> > The updated patches are also available on this branch:
> >
> > git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux devel/kmalloc-minalign
> >
>
> (I trimmed the recipients and added linux-usb and imx mailing list, +
> cdns3 maintainers)
>
> Hi Catalin, lists,
>
> Seen on Linux 6.12.20, it is not trivial for us to test later kernels so
> if the issue is potentially fixed we are more than happy to cherry-pick
> the potential fixes and give them a go.
>
> Having an SMSC9512 (smsc95xx) USB Ethernet/Hub chip attached to the armv8
> SoC iMX8QXP over the Cadence USB3 USB2 interface (cdns3-imx) will since
> the patch set at [0] cause random interrupt storms over the SMSC9512 INT
> EP.
Do you know where buy SMSC9512 USB Ethernet/Hub?
>
> The reason for the storm is that the async URBs queued at [1] right before
> the interrupt configuration [2] in the driver.
> With [0] applied, those async URBs are likely clobbering any URB located
> after them in memory somewhere in the xhci memory space.
> The memory corruption only happens if there is more than one URB in the
> queue at the same time, making these async URBs a good trigger of the
> problem.
> If we force those URBs to be sync or use the hack inlined below, the
> problem goes away.
>
> The content of read_buf in the interrupt configuration read at [2] looks
> to be the lo-part of a pointer +-20 bytes distance from the pointers
> present in the async URBs queued from [1] when we dumped the URB structures
> instead of the expected register contents.
>
> Attached are 3 usbmon captures, with some annotations, which we thought
> might contain useful hints.
>
> * usb-annotated-bad.pcapng shows the URB that will get clobbered is queued
> at position 280, and completes at 282.
>
> * usb-annotated-good.pcapng shows the URB that gets clobbered in the bad
> case is queued at position 282 and completes at 283.
>
> The above captures are from a kernel where the hack has not been applied.
>
> * usb-annotated-hackfix.pcapng shows the URB that gets clobbered in the
> bad case is queued at position 238 and completes at 240.
Maillist have not attachment. Can you send it to me directly?
Frank
>
> This was captured after the hack fix inlined below was applied.
>
> We have no reason to believe [0] is actually causing this, but rather
> the improvements uncovered a pre-existing issue with the Cadence 3
> integration in the iMX8QXP, as otherwise USB would be some level of broken
> for absolutely everyone on ARM64 since 2+ years.
>
> The reason we did not notice the issue earlier is that until very recently
> we have been stuck on the NXP vendoring of 6.1 which pre-dates [0].
>
> We determined [0] uncovers the breakage by replacing the host/ and cdns3/
> code with the NXP 6.1 vendor kernel code in a Frankenstein fashion and
> still ending up with the same USB breakage.
>
> Running KASAN on this doesn't trigger anything, so it's not a KASAN
> detectable issue.
>
> Our knowledge on how to progress on debugging this has unfortunately come
> to an end. We'd deeply appreciate any suggestion or possible patches to
> test.
>
> Best regards // John Ernberg
>
> [0]:
> https://lore.kernel.org/linux-mm/20230612153201.554742-1-catalin.marinas@arm.com/
> [1]:
> https://elixir.bootlin.com/linux/v6.12.19/source/drivers/net/usb/smsc95xx.c#L525
> [2]:
> https://elixir.bootlin.com/linux/v6.12.19/source/drivers/net/usb/smsc95xx.c#L1045
>
> ------------------->8-----------
> diff --git a/arch/arm64/include/asm/cache.h b/arch/arm64/include/asm/cache.h
> index 06a4670bdb0b..7356801faa52 100644
> --- a/arch/arm64/include/asm/cache.h
> +++ b/arch/arm64/include/asm/cache.h
> @@ -33,7 +33,7 @@
> * the CPU.
> */
> #define ARCH_DMA_MINALIGN (128)
> -#define ARCH_KMALLOC_MINALIGN (8)
> +#define ARCH_KMALLOC_MINALIGN (128)
>
> #ifndef __ASSEMBLY__
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH v7 00/17] mm, dma, arm64: Reduce ARCH_KMALLOC_MINALIGN to 8
2025-03-28 19:38 ` Frank Li
@ 2025-03-31 8:02 ` John Ernberg
2025-03-31 16:21 ` Frank Li
0 siblings, 1 reply; 34+ messages in thread
From: John Ernberg @ 2025-03-31 8:02 UTC (permalink / raw)
To: Frank Li
Cc: Catalin Marinas, Peter Chen, Pawel Laszczak, Roger Quadros,
linux-mm, linux-arm-kernel, linux-usb, imx, Jonas Blixt
Hi Frank,
On 3/28/25 8:38 PM, Frank Li wrote:
> On Fri, Mar 28, 2025 at 04:41:05PM +0000, John Ernberg wrote:
>> On 6/12/23 5:31 PM, Catalin Marinas wrote:
>>> Hi,
>>>
>>> That's v7 of the series reducing the kmalloc() minimum alignment on
>>> arm64 to 8 (from 128). There's no new/different functionality, mostly
>>> cosmetic changes and acks/tested-bys.
>>>
>>> Andrew, if there are no further comments or objections to this version,
>>> are you ok to take the series through the mm tree? The arm64 changes are
>>> fairly small. Alternatively, I can push it into linux-next now to give
>>> it some wider exposure and decide whether to upstream it when the
>>> merging window opens. Thanks.
>>>
>>> The updated patches are also available on this branch:
>>>
>>> git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux devel/kmalloc-minalign
>>>
>>
>> (I trimmed the recipients and added linux-usb and imx mailing list, +
>> cdns3 maintainers)
>>
>> Hi Catalin, lists,
>>
>> Seen on Linux 6.12.20, it is not trivial for us to test later kernels so
>> if the issue is potentially fixed we are more than happy to cherry-pick
>> the potential fixes and give them a go.
>>
>> Having an SMSC9512 (smsc95xx) USB Ethernet/Hub chip attached to the armv8
>> SoC iMX8QXP over the Cadence USB3 USB2 interface (cdns3-imx) will since
>> the patch set at [0] cause random interrupt storms over the SMSC9512 INT
>> EP.
>
> Do you know where buy SMSC9512 USB Ethernet/Hub?
A quick google search didn't find my any dongles that are still
available, however the SMSC 95xx series of chips used to be popular in
USB to Ethernet dongles.
Otherwise they are made by Microchip today, any variant of the SMSC 95xx
should be able to trigger the problem.
>
>>
>> The reason for the storm is that the async URBs queued at [1] right before
>> the interrupt configuration [2] in the driver.
>> With [0] applied, those async URBs are likely clobbering any URB located
>> after them in memory somewhere in the xhci memory space.
>> The memory corruption only happens if there is more than one URB in the
>> queue at the same time, making these async URBs a good trigger of the
>> problem.
>> If we force those URBs to be sync or use the hack inlined below, the
>> problem goes away.
>>
>> The content of read_buf in the interrupt configuration read at [2] looks
>> to be the lo-part of a pointer +-20 bytes distance from the pointers
>> present in the async URBs queued from [1] when we dumped the URB structures
>> instead of the expected register contents.
>>
>> Attached are 3 usbmon captures, with some annotations, which we thought
>> might contain useful hints.
>>
>> * usb-annotated-bad.pcapng shows the URB that will get clobbered is queued
>> at position 280, and completes at 282.
>>
>> * usb-annotated-good.pcapng shows the URB that gets clobbered in the bad
>> case is queued at position 282 and completes at 283.
>>
>> The above captures are from a kernel where the hack has not been applied.
>>
>> * usb-annotated-hackfix.pcapng shows the URB that gets clobbered in the
>> bad case is queued at position 238 and completes at 240.
>
> Maillist have not attachment. Can you send it to me directly?
The linux-usb mailing list picked up the attachments.
https://lore.kernel.org/linux-usb/Z+b6qrgXz%2FNTOs5r@lizhi-Precision-Tower-5810/T/#t
Best regards // John Ernberg
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH v7 00/17] mm, dma, arm64: Reduce ARCH_KMALLOC_MINALIGN to 8
2025-03-31 8:02 ` John Ernberg
@ 2025-03-31 16:21 ` Frank Li
2025-04-01 12:56 ` John Ernberg
0 siblings, 1 reply; 34+ messages in thread
From: Frank Li @ 2025-03-31 16:21 UTC (permalink / raw)
To: John Ernberg
Cc: Catalin Marinas, Peter Chen, Pawel Laszczak, Roger Quadros,
linux-mm, linux-arm-kernel, linux-usb, imx, Jonas Blixt
On Mon, Mar 31, 2025 at 08:02:20AM +0000, John Ernberg wrote:
> Hi Frank,
>
> On 3/28/25 8:38 PM, Frank Li wrote:
> > On Fri, Mar 28, 2025 at 04:41:05PM +0000, John Ernberg wrote:
> >> On 6/12/23 5:31 PM, Catalin Marinas wrote:
> >>> Hi,
> >>>
> >>> That's v7 of the series reducing the kmalloc() minimum alignment on
> >>> arm64 to 8 (from 128). There's no new/different functionality, mostly
> >>> cosmetic changes and acks/tested-bys.
> >>>
> >>> Andrew, if there are no further comments or objections to this version,
> >>> are you ok to take the series through the mm tree? The arm64 changes are
> >>> fairly small. Alternatively, I can push it into linux-next now to give
> >>> it some wider exposure and decide whether to upstream it when the
> >>> merging window opens. Thanks.
> >>>
> >>> The updated patches are also available on this branch:
> >>>
> >>> git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux devel/kmalloc-minalign
> >>>
> >>
> >> (I trimmed the recipients and added linux-usb and imx mailing list, +
> >> cdns3 maintainers)
> >>
> >> Hi Catalin, lists,
> >>
> >> Seen on Linux 6.12.20, it is not trivial for us to test later kernels so
> >> if the issue is potentially fixed we are more than happy to cherry-pick
> >> the potential fixes and give them a go.
> >>
> >> Having an SMSC9512 (smsc95xx) USB Ethernet/Hub chip attached to the armv8
> >> SoC iMX8QXP over the Cadence USB3 USB2 interface (cdns3-imx) will since
> >> the patch set at [0] cause random interrupt storms over the SMSC9512 INT
> >> EP.
> >
> > Do you know where buy SMSC9512 USB Ethernet/Hub?
>
> A quick google search didn't find my any dongles that are still
> available, however the SMSC 95xx series of chips used to be popular in
> USB to Ethernet dongles.
>
> Otherwise they are made by Microchip today, any variant of the SMSC 95xx
> should be able to trigger the problem.
I worry about that xhci have similar issue with gadget dma.
/*
* In versions preceding DEV_VER_V2, for example, iMX8QM, there exit the bugs
* in the DMA. These bugs occur when the trb_burst_size exceeds 16 and the
* address is not aligned to 128 Bytes (which is a product of the 64-bit AXI
* and AXI maximum burst length of 16 or 0xF+1, dma_axi_ctrl0[3:0]). This
* results in data corruption when it crosses the 4K border. The corruption
* specifically occurs from the position (4K - (address & 0x7F)) to 4K.
*
* So force trb_burst_size to 16 at such platform.
*/
Let try reduce AXI burst len to help your case.
diff --git a/drivers/usb/cdns3/host.c b/drivers/usb/cdns3/host.c
index f0df114c2b53b..200166395c09d 100644
--- a/drivers/usb/cdns3/host.c
+++ b/drivers/usb/cdns3/host.c
@@ -24,6 +24,7 @@
* with Cadence CDNSP dual-role controller.
*/
#define XECP_PORT_CAP_REG 0x8000
+#define XECP_AXI_CTRL0 0x8034
#define XECP_AUX_CTRL_REG1 0x8120
#define CFG_RXDET_P3_EN BIT(15)
@@ -121,7 +122,9 @@ static int __cdns_host_init(struct cdns *cdns)
if (hcd)
cdns->xhci_regs = hcd->regs;
- return 0;
+ writel(0x1, cdns->xhci_regs + XECP_AXI_CTRL0);
+
+ return 0;
Frank
>
> >
> >>
> >> The reason for the storm is that the async URBs queued at [1] right before
> >> the interrupt configuration [2] in the driver.
> >> With [0] applied, those async URBs are likely clobbering any URB located
> >> after them in memory somewhere in the xhci memory space.
> >> The memory corruption only happens if there is more than one URB in the
> >> queue at the same time, making these async URBs a good trigger of the
> >> problem.
> >> If we force those URBs to be sync or use the hack inlined below, the
> >> problem goes away.
> >>
> >> The content of read_buf in the interrupt configuration read at [2] looks
> >> to be the lo-part of a pointer +-20 bytes distance from the pointers
> >> present in the async URBs queued from [1] when we dumped the URB structures
> >> instead of the expected register contents.
> >>
> >> Attached are 3 usbmon captures, with some annotations, which we thought
> >> might contain useful hints.
> >>
> >> * usb-annotated-bad.pcapng shows the URB that will get clobbered is queued
> >> at position 280, and completes at 282.
> >>
> >> * usb-annotated-good.pcapng shows the URB that gets clobbered in the bad
> >> case is queued at position 282 and completes at 283.
> >>
> >> The above captures are from a kernel where the hack has not been applied.
> >>
> >> * usb-annotated-hackfix.pcapng shows the URB that gets clobbered in the
> >> bad case is queued at position 238 and completes at 240.
> >
> > Maillist have not attachment. Can you send it to me directly?
>
>
> The linux-usb mailing list picked up the attachments.
>
> https://lore.kernel.org/linux-usb/Z+b6qrgXz%2FNTOs5r@lizhi-Precision-Tower-5810/T/#t
>
> Best regards // John Ernberg
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH v7 00/17] mm, dma, arm64: Reduce ARCH_KMALLOC_MINALIGN to 8
2025-03-31 16:21 ` Frank Li
@ 2025-04-01 12:56 ` John Ernberg
0 siblings, 0 replies; 34+ messages in thread
From: John Ernberg @ 2025-04-01 12:56 UTC (permalink / raw)
To: Frank Li
Cc: Catalin Marinas, Peter Chen, Pawel Laszczak, Roger Quadros,
linux-mm, linux-arm-kernel, linux-usb, imx, Jonas Blixt
[-- Attachment #1: Type: text/plain, Size: 4145 bytes --]
Hi Frank,
On 3/31/25 6:21 PM, Frank Li wrote:
> On Mon, Mar 31, 2025 at 08:02:20AM +0000, John Ernberg wrote:
>> Hi Frank,
>>
>> On 3/28/25 8:38 PM, Frank Li wrote:
>>> On Fri, Mar 28, 2025 at 04:41:05PM +0000, John Ernberg wrote:
>>>> On 6/12/23 5:31 PM, Catalin Marinas wrote:
>>>>> Hi,
>>>>>
>>>>> That's v7 of the series reducing the kmalloc() minimum alignment on
>>>>> arm64 to 8 (from 128). There's no new/different functionality, mostly
>>>>> cosmetic changes and acks/tested-bys.
>>>>>
>>>>> Andrew, if there are no further comments or objections to this version,
>>>>> are you ok to take the series through the mm tree? The arm64 changes are
>>>>> fairly small. Alternatively, I can push it into linux-next now to give
>>>>> it some wider exposure and decide whether to upstream it when the
>>>>> merging window opens. Thanks.
>>>>>
>>>>> The updated patches are also available on this branch:
>>>>>
>>>>> git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux devel/kmalloc-minalign
>>>>>
>>>>
>>>> (I trimmed the recipients and added linux-usb and imx mailing list, +
>>>> cdns3 maintainers)
>>>>
>>>> Hi Catalin, lists,
>>>>
>>>> Seen on Linux 6.12.20, it is not trivial for us to test later kernels so
>>>> if the issue is potentially fixed we are more than happy to cherry-pick
>>>> the potential fixes and give them a go.
>>>>
>>>> Having an SMSC9512 (smsc95xx) USB Ethernet/Hub chip attached to the armv8
>>>> SoC iMX8QXP over the Cadence USB3 USB2 interface (cdns3-imx) will since
>>>> the patch set at [0] cause random interrupt storms over the SMSC9512 INT
>>>> EP.
>>>
>>> Do you know where buy SMSC9512 USB Ethernet/Hub?
>>
>> A quick google search didn't find my any dongles that are still
>> available, however the SMSC 95xx series of chips used to be popular in
>> USB to Ethernet dongles.
>>
>> Otherwise they are made by Microchip today, any variant of the SMSC 95xx
>> should be able to trigger the problem.
>
> I worry about that xhci have similar issue with gadget dma.
>
> /*
> * In versions preceding DEV_VER_V2, for example, iMX8QM, there exit the bugs
> * in the DMA. These bugs occur when the trb_burst_size exceeds 16 and the
> * address is not aligned to 128 Bytes (which is a product of the 64-bit AXI
> * and AXI maximum burst length of 16 or 0xF+1, dma_axi_ctrl0[3:0]). This
> * results in data corruption when it crosses the 4K border. The corruption
> * specifically occurs from the position (4K - (address & 0x7F)) to 4K.
> *
> * So force trb_burst_size to 16 at such platform.
> */
>
> Let try reduce AXI burst len to help your case.
>
> diff --git a/drivers/usb/cdns3/host.c b/drivers/usb/cdns3/host.c
> index f0df114c2b53b..200166395c09d 100644
> --- a/drivers/usb/cdns3/host.c
> +++ b/drivers/usb/cdns3/host.c
> @@ -24,6 +24,7 @@
> * with Cadence CDNSP dual-role controller.
> */
> #define XECP_PORT_CAP_REG 0x8000
> +#define XECP_AXI_CTRL0 0x8034
> #define XECP_AUX_CTRL_REG1 0x8120
>
> #define CFG_RXDET_P3_EN BIT(15)
> @@ -121,7 +122,9 @@ static int __cdns_host_init(struct cdns *cdns)
> if (hcd)
> cdns->xhci_regs = hcd->regs;
>
> - return 0;
> + writel(0x1, cdns->xhci_regs + XECP_AXI_CTRL0);
> +
> + return 0;
>
> Frank
>
I gave your patch a try and it didn't fix the issue.
Since you mentioned trb I spent some time enabling xhci tracing and took
some traces of each situation in case that shows something useful.
Adding them as attachments since they are over 3500 lines each.
The URB that may trigger the problem behavior is queued when
xhci_queue_trb contains bRequest = 'a1' and wIndex = '0068' in these traces.
* xhci-trace-bad was taken without the hack inlined in earlier mails nor
your suggested patch, bug occurred
* xhci-trace-hackfix was taken with the hack fix, bug did not occur
* xhci-trace-frank was taken with your suggestion, bug occurred
Best regards // John Ernberg
[-- Attachment #2: xhci-trace-bad --]
[-- Type: text/plain, Size: 767270 bytes --]
# tracer: nop
#
# entries-in-buffer/entries-written: 4314/4314 #P:2
#
# _-----=> irqs-off/BH-disabled
# / _----=> need-resched
# | / _---=> hardirq/softirq
# || / _--=> preempt-depth
# ||| / _-=> migrate-disable
# |||| / delay
# TASK-PID CPU# ||||| TIMESTAMP FUNCTION
# | | | ||||| | |
<task>-59 [001] d.... 2.862691: xhci_get_port_status: port 2-0: 0x000002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake:
<task>-59 [001] d.... 2.862855: xhci_hub_status_data: port 2-0: 0x0a0002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake: WCE WOE
<task>-23 [001] d.... 2.867210: xhci_get_port_status: port 1-0: 0x000006e1 Powered Connected Disabled Link:Polling PortSpeed:1 Change: Wake:
<task>-23 [001] d.... 2.867321: xhci_queue_trb: CMD: Enable Slot Command: flags C
<task>-23 [001] d.... 2.867326: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e3913010(0x00000000e3913000) deq 0x00000000e3913000(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-23 [001] d.... 2.867330: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-94 [000] d.h.. 2.867371: xhci_handle_event: EVENT: TRB 00000000e3913000 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
<task>-94 [000] d.h.. 2.867377: xhci_handle_command: CMD: Enable Slot Command: flags C
<task>-94 [000] d.h.. 2.867390: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e3913010(0x00000000e3913000) deq 0x00000000e3913010(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-94 [000] d.h.. 2.867392: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961020(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] ..... 2.867764: xhci_ring_alloc: CTRL ffffff80238d3f80: enq 0x00000000e4c89000(0x00000000e4c89000) deq 0x00000000e4c89000(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] ..... 2.867769: xhci_alloc_virt_device: vdev ffffff802159c000 ctx e4c8a000 | e4c8b000 num 0 state 0 speed 0 port 0 level 0 slot 0
<task>-23 [001] ..... 2.867773: xhci_alloc_dev: RS 00000 UNKNOWN speed Ctx Entries 0 MEL 0 us Port# 0/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<idle>-0 [001] d.s.. 2.874657: xhci_hub_status_data: port 1-0: 0x00000f91 Powered Connected Disabled Link:Unknown PortSpeed:3 In-Reset Change: Wake:
<task>-59 [001] d.... 2.906932: xhci_get_port_status: port 2-0: 0x000002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake:
<task>-59 [001] d.... 2.907117: xhci_hub_status_data: port 2-0: 0x0a0002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake: WCE WOE
<task>-135 [000] dNh.. 2.922944: xhci_handle_event: EVENT: TRB 0000000001000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
<task>-135 [000] dNh.. 2.922955: xhci_handle_port_status: port 1-0: 0x00200e03 Powered Connected Enabled Link:U0 PortSpeed:3 Change: PRC Wake:
<task>-135 [000] dNh.. 2.922962: xhci_hub_status_data: port 1-0: 0x00200e03 Powered Connected Enabled Link:U0 PortSpeed:3 Change: PRC Wake:
<task>-135 [000] dNh.. 2.922973: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961030(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-94 [001] dNs.. 2.930632: xhci_hub_status_data: port 1-0: 0x00200e03 Powered Connected Enabled Link:U0 PortSpeed:3 Change: PRC Wake:
<task>-23 [001] d.... 2.930812: xhci_get_port_status: port 1-0: 0x00200e03 Powered Connected Enabled Link:U0 PortSpeed:3 Change: PRC Wake:
<task>-59 [001] d.... 2.943345: xhci_get_port_status: port 2-0: 0x000002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake:
<task>-59 [001] d.... 2.943521: xhci_hub_status_data: port 2-0: 0x0a0002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake: WCE WOE
<task>-23 [001] .N... 2.994049: xhci_setup_device_slot: RS 00000 UNKNOWN speed Ctx Entries 0 MEL 0 us Port# 0/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-23 [001] .N... 2.994068: xhci_setup_addressable_virt_device: vdev ffffff802159c000 ctx e4c8a000 | e4c8b000 num 0 state 5 speed 3 port 1 level 1 slot 1
<task>-23 [001] .N... 2.994071: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e4c8a000, ctx_va=@ffffffc080dc3000
<task>-23 [001] .N... 2.994075: xhci_address_ctrl_ctx: Add: slot ep0
<task>-23 [001] dN... 2.994078: xhci_setup_device: vdev ffffff802159c000 ctx e4c8a000 | e4c8b000 num 0 state 5 speed 3 port 1 level 1 slot 1
<task>-23 [001] dN... 2.994087: xhci_queue_trb: CMD: Address Device Command: ctx 00000000e4c8a000 slot 1 flags B:C
<task>-23 [001] dN... 2.994091: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e3913020(0x00000000e3913000) deq 0x00000000e3913010(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-23 [001] dN... 2.994095: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-94 [000] d.h.. 2.994115: xhci_handle_event: EVENT: TRB 00000000e3913010 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
<task>-94 [000] d.h.. 2.994121: xhci_handle_command: CMD: Address Device Command: ctx 00000000e4c8a000 slot 1 flags B:C
<task>-94 [000] d.h.. 2.994127: xhci_handle_cmd_addr_dev: RS 00000 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<task>-94 [000] d.h.. 2.994138: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e3913020(0x00000000e3913000) deq 0x00000000e3913020(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-94 [000] d.h.. 2.994140: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961040(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 2.994163: xhci_get_port_status: port 2-0: 0x000002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake:
<task>-59 [001] d.... 2.994416: xhci_hub_status_data: port 2-0: 0x0a0002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake: WCE WOE
<task>-23 [001] ..... 2.999225: xhci_dbg_address: Successful setup context command
<task>-23 [001] ..... 2.999240: xhci_dbg_address: Op regs DCBAA ptr = 0x000000e38fc000
<task>-23 [001] ..... 2.999248: xhci_dbg_address: Slot ID 1 dcbaa entry @ffffffc080c1d008 = 0x000000e4c8b000
<task>-23 [001] ..... 2.999253: xhci_dbg_address: Output Context DMA address = 0xe4c8b000
<task>-23 [001] ..... 2.999257: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e4c8a000, ctx_va=@ffffffc080dc3000
<task>-23 [001] ..... 2.999261: xhci_address_ctx: ctx_64=0, ctx_type=1, ctx_dma=@e4c8b000, ctx_va=@ffffffc080dc1000
<task>-23 [001] ..... 2.999264: xhci_dbg_address: Internal device address = 0
<task>-23 [001] ..... 2.999294: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff80246bb0c0 pipe 2147483776 slot 1 length 0/64 sgs 0/0 stream 0 flags 00110200
<task>-23 [001] d.... 2.999306: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0100 wIndex 0000 wLength 64 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-23 [001] d.... 2.999310: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c89010(0x00000000e4c89000) deq 0x00000000e4c89000(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] d.... 2.999313: xhci_queue_trb: CTRL: Buffer 00000000e3925ac0 length 64 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-23 [001] d.... 2.999315: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c89020(0x00000000e4c89000) deq 0x00000000e4c89000(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] d.... 2.999317: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-23 [001] d.... 2.999319: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c89030(0x00000000e4c89000) deq 0x00000000e4c89000(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] d.... 2.999322: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-94 [000] dNh.. 2.999351: xhci_handle_event: EVENT: TRB 00000000e4c89010 status 'Short Packet' len 46 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-94 [000] dNh.. 2.999359: xhci_handle_transfer: CTRL: Buffer 00000000e3925ac0 length 64 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-94 [000] dNh.. 2.999365: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961050(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-94 [000] dNh.. 2.999367: xhci_handle_event: EVENT: TRB 00000000e4c89020 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-94 [000] dNh.. 2.999369: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-94 [000] dNh.. 2.999373: xhci_inc_deq: CTRL ffffff80238d3f80: enq 0x00000000e4c89030(0x00000000e4c89000) deq 0x00000000e4c89030(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-94 [000] dNh.. 2.999379: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff80246bb0c0 pipe 2147483776 slot 1 length 18/64 sgs 0/0 stream 0 flags 00110200
<task>-94 [000] dNh.. 2.999388: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961060(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.026700: xhci_get_port_status: port 2-0: 0x000002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake:
<task>-59 [001] d.... 3.026897: xhci_hub_status_data: port 2-0: 0x0a0002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake: WCE WOE
<task>-46 [000] d.H.. 3.054637: xhci_handle_event: EVENT: TRB 0000000001000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
<task>-46 [000] d.H.. 3.054649: xhci_handle_port_status: port 1-0: 0x00200e03 Powered Connected Enabled Link:U0 PortSpeed:3 Change: PRC Wake:
<task>-46 [000] d.H.. 3.054656: xhci_hub_status_data: port 1-0: 0x00200e03 Powered Connected Enabled Link:U0 PortSpeed:3 Change: PRC Wake:
<task>-46 [000] d.H.. 3.054674: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961070(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.062663: xhci_get_port_status: port 2-0: 0x000002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake:
<task>-59 [001] d.... 3.062839: xhci_hub_status_data: port 2-0: 0x0a0002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake: WCE WOE
<task>-23 [001] d.... 3.062886: xhci_get_port_status: port 1-0: 0x00200e03 Powered Connected Enabled Link:U0 PortSpeed:3 Change: PRC Wake:
<task>-59 [001] d.... 3.098650: xhci_get_port_status: port 2-0: 0x000002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake:
<task>-59 [001] d.... 3.098845: xhci_hub_status_data: port 2-0: 0x0a0002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake: WCE WOE
<task>-23 [001] ..... 3.118690: xhci_discover_or_reset_device: RS 00000 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<task>-23 [001] d.... 3.118713: xhci_queue_trb: CMD: Reset Device Command: slot 1 flags C
<task>-23 [001] d.... 3.118717: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e3913030(0x00000000e3913000) deq 0x00000000e3913020(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-23 [001] d.... 3.118721: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-75 [000] d.h.. 3.118761: xhci_handle_event: EVENT: TRB 00000000e3913020 status 'Context State Error' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
<task>-75 [000] d.h.. 3.118767: xhci_handle_command: CMD: Reset Device Command: slot 1 flags C
<task>-75 [000] d.h.. 3.118774: xhci_handle_cmd_reset_dev: RS 00000 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<task>-75 [000] d.h.. 3.118797: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e3913030(0x00000000e3913000) deq 0x00000000e3913030(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-75 [000] d.h.. 3.118799: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961080(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] ..... 3.118842: xhci_setup_device_slot: RS 00000 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<task>-23 [001] ..... 3.118849: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e4c8a000, ctx_va=@ffffffc080dc3000
<task>-23 [001] ..... 3.118853: xhci_address_ctrl_ctx: Add: slot ep0
<task>-23 [001] d.... 3.118856: xhci_setup_device: vdev ffffff802159c000 ctx e4c8a000 | e4c8b000 num 0 state 5 speed 3 port 1 level 1 slot 1
<task>-23 [001] d.... 3.118861: xhci_queue_trb: CMD: Address Device Command: ctx 00000000e4c8a000 slot 1 flags b:C
<task>-23 [001] d.... 3.118863: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e3913040(0x00000000e3913000) deq 0x00000000e3913030(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-23 [001] d.... 3.118865: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-1 [000] d.h.. 3.118877: xhci_handle_event: EVENT: TRB 00000000e3913030 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
<task>-1 [000] d.h.. 3.118880: xhci_handle_command: CMD: Address Device Command: ctx 00000000e4c8a000 slot 1 flags b:C
<task>-1 [000] d.h.. 3.118884: xhci_handle_cmd_addr_dev: RS 00000 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 1 State addressed
<task>-1 [000] d.h.. 3.118892: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e3913040(0x00000000e3913000) deq 0x00000000e3913040(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-1 [000] d.h.. 3.118894: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961090(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] ..... 3.118915: xhci_dbg_address: Successful setup address command
<task>-23 [001] ..... 3.118923: xhci_dbg_address: Op regs DCBAA ptr = 0x000000e38fc000
<task>-23 [001] ..... 3.118930: xhci_dbg_address: Slot ID 1 dcbaa entry @ffffffc080c1d008 = 0x000000e4c8b000
<task>-23 [001] ..... 3.118935: xhci_dbg_address: Output Context DMA address = 0xe4c8b000
<task>-23 [001] ..... 3.118938: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e4c8a000, ctx_va=@ffffffc080dc3000
<task>-23 [001] ..... 3.118941: xhci_address_ctx: ctx_64=0, ctx_type=1, ctx_dma=@e4c8b000, ctx_va=@ffffffc080dc1000
<task>-23 [001] ..... 3.118944: xhci_dbg_address: Internal device address = 1
<task>-59 [001] d.... 3.134693: xhci_get_port_status: port 2-0: 0x000002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake:
<task>-59 [001] d.... 3.134872: xhci_hub_status_data: port 2-0: 0x0a0002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake: WCE WOE
<task>-23 [001] ..... 3.134906: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8025892900 pipe 2147484288 slot 1 length 0/18 sgs 0/0 stream 0 flags 00110200
<task>-23 [001] d.... 3.134919: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0100 wIndex 0000 wLength 18 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-23 [001] d.... 3.134924: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c89040(0x00000000e4c89000) deq 0x00000000e4c89030(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] d.... 3.134927: xhci_queue_trb: CTRL: Buffer 00000000e4cc99c0 length 18 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-23 [001] d.... 3.134929: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c89050(0x00000000e4c89000) deq 0x00000000e4c89030(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] d.... 3.134931: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-23 [001] d.... 3.134933: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c89060(0x00000000e4c89000) deq 0x00000000e4c89030(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] d.... 3.134935: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-182 [000] d.h.. 3.134963: xhci_handle_event: EVENT: TRB 00000000e4c89050 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-182 [000] d.h.. 3.134972: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-182 [000] d.h.. 3.134978: xhci_inc_deq: CTRL ffffff80238d3f80: enq 0x00000000e4c89060(0x00000000e4c89000) deq 0x00000000e4c89060(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-182 [000] d.h.. 3.134984: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8025892900 pipe 2147484288 slot 1 length 18/18 sgs 0/0 stream 0 flags 00110200
<task>-182 [000] d.h.. 3.134989: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39610a0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] ..... 3.135071: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8025892900 pipe 2147484288 slot 1 length 0/9 sgs 0/0 stream 0 flags 00110200
<task>-23 [001] d.... 3.135075: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0200 wIndex 0000 wLength 9 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-23 [001] d.... 3.135078: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c89070(0x00000000e4c89000) deq 0x00000000e4c89060(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] d.... 3.135080: xhci_queue_trb: CTRL: Buffer 00000000e4c7d680 length 9 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-23 [001] d.... 3.135082: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c89080(0x00000000e4c89000) deq 0x00000000e4c89060(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] d.... 3.135083: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-23 [001] d.... 3.135088: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c89090(0x00000000e4c89000) deq 0x00000000e4c89060(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] d.... 3.135090: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-182 [000] d.h.. 3.135106: xhci_handle_event: EVENT: TRB 00000000e4c89080 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-182 [000] d.h.. 3.135110: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-182 [000] d.h.. 3.135114: xhci_inc_deq: CTRL ffffff80238d3f80: enq 0x00000000e4c89090(0x00000000e4c89000) deq 0x00000000e4c89090(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-182 [000] d.h.. 3.135116: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8025892900 pipe 2147484288 slot 1 length 9/9 sgs 0/0 stream 0 flags 00110200
<task>-182 [000] d.h.. 3.135119: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39610b0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] ..... 3.135160: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8025892900 pipe 2147484288 slot 1 length 0/41 sgs 0/0 stream 0 flags 00110200
<task>-23 [001] d.... 3.135164: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0200 wIndex 0000 wLength 41 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-23 [001] d.... 3.135166: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c890a0(0x00000000e4c89000) deq 0x00000000e4c89090(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] d.... 3.135168: xhci_queue_trb: CTRL: Buffer 00000000e4ccf280 length 41 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-23 [001] d.... 3.135170: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c890b0(0x00000000e4c89000) deq 0x00000000e4c89090(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] d.... 3.135171: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-23 [001] d.... 3.135174: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c890c0(0x00000000e4c89000) deq 0x00000000e4c89090(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] d.... 3.135175: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-182 [000] d.h.. 3.135193: xhci_handle_event: EVENT: TRB 00000000e4c890b0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-182 [000] d.h.. 3.135197: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-182 [000] d.h.. 3.135201: xhci_inc_deq: CTRL ffffff80238d3f80: enq 0x00000000e4c890c0(0x00000000e4c89000) deq 0x00000000e4c890c0(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-182 [000] d.h.. 3.135203: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8025892900 pipe 2147484288 slot 1 length 41/41 sgs 0/0 stream 0 flags 00110200
<task>-182 [000] d.h.. 3.135206: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39610c0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] ..... 3.137624: xhci_ring_alloc: INTR ffffff8023ae9800: enq 0x00000000e5889000(0x00000000e5889000) deq 0x00000000e5889000(0x00000000e5889000) segs 2 stream 0 bounce 1 cycle 1
<task>-23 [001] ..... 3.137634: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 256000 us max ESIT payload 1 CErr 3 Type Int IN burst 0 maxp 1 deq 00000000e5889001 avg trb len 1
<task>-23 [001] d.... 3.137653: xhci_configure_endpoint_ctrl_ctx: Add: slot 1in
<task>-23 [001] d.... 3.137656: xhci_configure_endpoint: RS 00000 high-speed Ctx Entries 3 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-23 [001] d.... 3.137668: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e4c8a000 slot 1 flags d:C
<task>-23 [001] d.... 3.137672: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e3913050(0x00000000e3913000) deq 0x00000000e3913040(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-23 [001] d.... 3.137675: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-180 [000] d.h.. 3.137747: xhci_handle_event: EVENT: TRB 00000000e3913040 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
<task>-180 [000] d.h.. 3.137753: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e4c8a000 slot 1 flags d:C
<task>-180 [000] d.h.. 3.137770: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e3913050(0x00000000e3913000) deq 0x00000000e3913050(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-180 [000] d.h.. 3.137772: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39610d0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] ..... 3.138094: xhci_dbg_context_change: Successful Endpoint Configure command
<task>-23 [001] d.... 3.138141: xhci_queue_trb: CMD: Stop Ring Command: slot 1 sp 0 ep 3 flags C
<task>-23 [001] d.... 3.138144: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e3913060(0x00000000e3913000) deq 0x00000000e3913050(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-23 [001] d.... 3.138147: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-180 [000] d.h.. 3.138166: xhci_handle_event: EVENT: TRB 00000000e5889000 status 'Stopped - Length Invalid' len 0 slot 1 ep 3 type 'Transfer Event' flags e:C
<task>-180 [000] d.h.. 3.138174: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39610e0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-180 [000] d.h.. 3.138175: xhci_handle_event: EVENT: TRB 00000000e3913050 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
<task>-180 [000] d.h.. 3.138178: xhci_handle_command: CMD: Stop Ring Command: slot 1 sp 0 ep 3 flags C
<task>-180 [000] d.h.. 3.138188: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e3913060(0x00000000e3913000) deq 0x00000000e3913060(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-180 [000] d.h.. 3.138190: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39610f0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] d.... 3.138257: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e0fa0000 slot 1 flags d:C
<task>-23 [001] d.... 3.138260: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e3913070(0x00000000e3913000) deq 0x00000000e3913060(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-23 [001] d.... 3.138262: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-180 [000] d.h.. 3.138328: xhci_handle_event: EVENT: TRB 00000000e3913060 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
<task>-180 [000] d.h.. 3.138331: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e0fa0000 slot 1 flags d:C
<task>-180 [000] d.h.. 3.138345: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e3913070(0x00000000e3913000) deq 0x00000000e3913070(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-180 [000] d.h.. 3.138346: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961100(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] ..... 3.138698: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8025892780 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-23 [001] d.... 3.138710: xhci_queue_trb: CTRL: bRequestType 00 bRequest 09 wValue 0001 wIndex 0000 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-23 [001] d.... 3.138712: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c890d0(0x00000000e4c89000) deq 0x00000000e4c890c0(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] d.... 3.138715: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-23 [001] d.... 3.138717: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c890e0(0x00000000e4c89000) deq 0x00000000e4c890c0(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] d.... 3.138719: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-180 [000] d.h.. 3.138736: xhci_handle_event: EVENT: TRB 00000000e4c890d0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-180 [000] d.h.. 3.138743: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-180 [000] d.h.. 3.138748: xhci_inc_deq: CTRL ffffff80238d3f80: enq 0x00000000e4c890e0(0x00000000e4c89000) deq 0x00000000e4c890e0(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-180 [000] d.h.. 3.138753: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8025892780 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-180 [000] d.h.. 3.138762: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961110(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] .N... 3.143722: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8025892780 pipe 2147484288 slot 1 length 0/15 sgs 0/0 stream 0 flags 00110200
<task>-23 [001] dN... 3.143740: xhci_queue_trb: CTRL: bRequestType a0 bRequest 06 wValue 2900 wIndex 0000 wLength 15 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-23 [001] dN... 3.143745: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c890f0(0x00000000e4c89000) deq 0x00000000e4c890e0(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] dN... 3.143748: xhci_queue_trb: CTRL: Buffer 00000000e4c7d7f0 length 15 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-23 [001] dN... 3.143750: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c89100(0x00000000e4c89000) deq 0x00000000e4c890e0(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] dN... 3.143752: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-23 [001] dN... 3.143754: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c89110(0x00000000e4c89000) deq 0x00000000e4c890e0(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] dN... 3.143757: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-75 [000] d.h.. 3.143778: xhci_handle_event: EVENT: TRB 00000000e4c890f0 status 'Short Packet' len 6 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-75 [000] d.h.. 3.143787: xhci_handle_transfer: CTRL: Buffer 00000000e4c7d7f0 length 15 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-75 [000] d.h.. 3.143793: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961120(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-75 [000] d.h.. 3.143794: xhci_handle_event: EVENT: TRB 00000000e4c89100 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-75 [000] d.h.. 3.143797: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-75 [000] d.h.. 3.143801: xhci_inc_deq: CTRL ffffff80238d3f80: enq 0x00000000e4c89110(0x00000000e4c89000) deq 0x00000000e4c89110(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-75 [000] d.h.. 3.143808: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8025892780 pipe 2147484288 slot 1 length 9/15 sgs 0/0 stream 0 flags 00110200
<task>-75 [000] d.h.. 3.143814: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961130(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] .N... 3.153829: xhci_ring_alloc: INTR ffffff8023ae9c80: enq 0x00000000e592d000(0x00000000e592d000) deq 0x00000000e592d000(0x00000000e592d000) segs 2 stream 0 bounce 1 cycle 1
<task>-23 [001] .N... 3.153839: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 256000 us max ESIT payload 1 CErr 3 Type Int IN burst 0 maxp 1 deq 00000000e592d001 avg trb len 1
<task>-23 [001] dN... 3.153858: xhci_configure_endpoint_ctrl_ctx: Drop: 1in, Add: slot 1in
<task>-23 [001] dN... 3.153861: xhci_configure_endpoint: RS 00000 high-speed Ctx Entries 3 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-23 [001] dN... 3.153872: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e4c8a000 slot 1 flags d:C
<task>-23 [001] dN... 3.153875: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e3913080(0x00000000e3913000) deq 0x00000000e3913070(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-23 [001] dN... 3.153879: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-94 [000] d.h.. 3.153955: xhci_handle_event: EVENT: TRB 00000000e3913070 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
<task>-94 [000] d.h.. 3.153960: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e4c8a000 slot 1 flags d:C
<task>-94 [000] d.h.. 3.153975: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e3913080(0x00000000e3913000) deq 0x00000000e3913080(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-94 [000] d.h.. 3.153977: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961140(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] ..... 3.154059: xhci_dbg_context_change: Successful Endpoint Configure command
<task>-23 [001] .N... 3.154080: xhci_ring_free: INTR ffffff8023ae9800: enq 0x00000000e5889000(0x00000000e5889000) deq 0x00000000e5889000(0x00000000e5889000) segs 2 stream 0 bounce 1 cycle 1
<task>-23 [001] .N... 3.154101: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8025892780 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-23 [001] dN... 3.154109: xhci_queue_trb: CTRL: bRequestType 01 bRequest 0b wValue 0001 wIndex 0000 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-23 [001] dN... 3.154111: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c89120(0x00000000e4c89000) deq 0x00000000e4c89110(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] dN... 3.154113: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-23 [001] dN... 3.154115: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c89130(0x00000000e4c89000) deq 0x00000000e4c89110(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] dN... 3.154118: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-94 [000] d.h.. 3.154131: xhci_handle_event: EVENT: TRB 00000000e4c89120 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-94 [000] d.h.. 3.154139: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-94 [000] d.h.. 3.154144: xhci_inc_deq: CTRL ffffff80238d3f80: enq 0x00000000e4c89130(0x00000000e4c89000) deq 0x00000000e4c89130(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-94 [000] d.h.. 3.154149: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8025892780 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-94 [000] d.h.. 3.154156: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961150(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] dN... 3.154379: xhci_queue_trb: CMD: Stop Ring Command: slot 1 sp 0 ep 3 flags C
<task>-23 [001] dN... 3.154382: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e3913090(0x00000000e3913000) deq 0x00000000e3913080(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-23 [001] dN... 3.154384: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-94 [000] d.h.. 3.154395: xhci_handle_event: EVENT: TRB 00000000e592d000 status 'Stopped - Length Invalid' len 0 slot 1 ep 3 type 'Transfer Event' flags e:C
<task>-94 [000] d.h.. 3.154400: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961160(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-94 [000] d.h.. 3.154401: xhci_handle_event: EVENT: TRB 00000000e3913080 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
<task>-94 [000] d.h.. 3.154404: xhci_handle_command: CMD: Stop Ring Command: slot 1 sp 0 ep 3 flags C
<task>-94 [000] d.h.. 3.154412: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e3913090(0x00000000e3913000) deq 0x00000000e3913090(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-94 [000] d.h.. 3.154414: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961170(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] d.... 3.154749: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e0fa0000 slot 1 flags d:C
<task>-23 [001] d.... 3.154754: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e39130a0(0x00000000e3913000) deq 0x00000000e3913090(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-23 [001] d.... 3.154756: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-94 [000] dNh.. 3.154820: xhci_handle_event: EVENT: TRB 00000000e3913090 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
<task>-94 [000] dNh.. 3.154824: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e0fa0000 slot 1 flags d:C
<task>-94 [000] dNh.. 3.154837: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e39130a0(0x00000000e3913000) deq 0x00000000e39130a0(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-94 [000] dNh.. 3.154838: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961180(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] ..... 3.155143: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8025892780 pipe 2147484288 slot 1 length 0/2 sgs 0/0 stream 0 flags 00110200
<task>-23 [001] d.... 3.155150: xhci_queue_trb: CTRL: bRequestType 80 bRequest 00 wValue 0000 wIndex 0000 wLength 2 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-23 [001] d.... 3.155153: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c89140(0x00000000e4c89000) deq 0x00000000e4c89130(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] d.... 3.155155: xhci_queue_trb: CTRL: Buffer 00000000e3b16e80 length 2 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-23 [001] d.... 3.155157: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c89150(0x00000000e4c89000) deq 0x00000000e4c89130(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] d.... 3.155159: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-23 [001] d.... 3.155161: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c89160(0x00000000e4c89000) deq 0x00000000e4c89130(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] d.... 3.155164: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-94 [000] dNh.. 3.161901: xhci_handle_event: EVENT: TRB 00000000e4c89150 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-94 [000] dNh.. 3.161917: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-94 [000] dNh.. 3.161925: xhci_inc_deq: CTRL ffffff80238d3f80: enq 0x00000000e4c89160(0x00000000e4c89000) deq 0x00000000e4c89160(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-94 [000] dNh.. 3.161932: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8025892780 pipe 2147484288 slot 1 length 2/2 sgs 0/0 stream 0 flags 00110200
<task>-94 [000] dNh.. 3.161943: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961190(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] ..... 3.162922: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8025892780 pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-23 [001] d.... 3.162938: xhci_queue_trb: CTRL: bRequestType a0 bRequest 00 wValue 0000 wIndex 0000 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-23 [001] d.... 3.162942: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c89170(0x00000000e4c89000) deq 0x00000000e4c89160(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] d.... 3.162945: xhci_queue_trb: CTRL: Buffer 00000000e3b16e50 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-23 [001] d.... 3.162947: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c89180(0x00000000e4c89000) deq 0x00000000e4c89160(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] d.... 3.162948: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-23 [001] d.... 3.162950: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c89190(0x00000000e4c89000) deq 0x00000000e4c89160(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] d.... 3.162953: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-94 [000] dNH.. 3.168569: xhci_handle_event: EVENT: TRB 00000000e4c89180 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-94 [000] dNH.. 3.168580: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-94 [000] dNH.. 3.168586: xhci_inc_deq: CTRL ffffff80238d3f80: enq 0x00000000e4c89190(0x00000000e4c89000) deq 0x00000000e4c89190(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-94 [000] dNH.. 3.168593: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8025892780 pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-94 [000] dNH.. 3.168602: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39611a0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] d.... 3.169517: xhci_configure_endpoint_ctrl_ctx: Add: slot
<task>-23 [001] d.... 3.169526: xhci_configure_endpoint: RS 00000 high-speed multi-TT Hub Ctx Entries 3 MEL 0 us Port# 1/2 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-23 [001] d.... 3.169537: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e0fa0000 slot 1 flags d:C
<task>-23 [001] d.... 3.169541: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e39130b0(0x00000000e3913000) deq 0x00000000e39130a0(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-23 [001] d.... 3.169545: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-94 [000] dNh.. 3.176499: xhci_handle_event: EVENT: TRB 00000000e39130a0 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
<task>-94 [000] dNh.. 3.176510: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e0fa0000 slot 1 flags d:C
<task>-94 [000] dNh.. 3.176535: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e39130b0(0x00000000e3913000) deq 0x00000000e39130b0(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-94 [000] dNh.. 3.176538: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39611b0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] ..... 3.176882: xhci_dbg_context_change: Successful Endpoint Configure command
<task>-23 [001] ..... 3.176906: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8025892540 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-23 [001] d.... 3.176918: xhci_queue_trb: CTRL: bRequestType 23 bRequest 03 wValue 0008 wIndex 0001 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-23 [001] d.... 3.176925: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c891a0(0x00000000e4c89000) deq 0x00000000e4c89190(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] d.... 3.176927: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-23 [001] d.... 3.176929: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c891b0(0x00000000e4c89000) deq 0x00000000e4c89190(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] d.... 3.176932: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-59 [001] d.... 3.178625: xhci_get_port_status: port 2-0: 0x000002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake:
<task>-59 [001] d.... 3.178805: xhci_hub_status_data: port 2-0: 0x0a0002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake: WCE WOE
<task>-94 [000] dNh.. 3.183106: xhci_handle_event: EVENT: TRB 00000000e4c891a0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-94 [000] dNh.. 3.183117: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-94 [000] dNh.. 3.183123: xhci_inc_deq: CTRL ffffff80238d3f80: enq 0x00000000e4c891b0(0x00000000e4c89000) deq 0x00000000e4c891b0(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-94 [000] dNh.. 3.183129: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8025892540 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-94 [000] dNh.. 3.183135: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39611c0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] ..... 3.183254: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8025892540 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-23 [001] d.... 3.183263: xhci_queue_trb: CTRL: bRequestType 23 bRequest 03 wValue 0008 wIndex 0002 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-23 [001] d.... 3.183267: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c891c0(0x00000000e4c89000) deq 0x00000000e4c891b0(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] d.... 3.183268: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-23 [001] d.... 3.183270: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c891d0(0x00000000e4c89000) deq 0x00000000e4c891b0(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-23 [001] d.... 3.183272: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-94 [000] dNh.. 3.183287: xhci_handle_event: EVENT: TRB 00000000e4c891c0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-94 [000] dNh.. 3.183292: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-94 [000] dNh.. 3.183297: xhci_inc_deq: CTRL ffffff80238d3f80: enq 0x00000000e4c891d0(0x00000000e4c89000) deq 0x00000000e4c891d0(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-94 [000] dNh.. 3.183299: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8025892540 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-94 [000] dNh.. 3.183304: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39611d0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-153 [001] d.s.. 3.186598: xhci_hub_status_data: port 1-0: 0x00000e03 Powered Connected Enabled Link:U0 PortSpeed:3 Change: Wake:
<task>-59 [001] d.... 3.214610: xhci_get_port_status: port 2-0: 0x000002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake:
<task>-59 [001] d.... 3.214790: xhci_hub_status_data: port 2-0: 0x0a0002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake: WCE WOE
<task>-59 [001] ..... 3.286854: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff80258b8480 pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 3.286875: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0001 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 3.286879: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c891e0(0x00000000e4c89000) deq 0x00000000e4c891d0(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.286882: xhci_queue_trb: CTRL: Buffer 00000000e3b16e50 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 3.286884: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c891f0(0x00000000e4c89000) deq 0x00000000e4c891d0(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.286886: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 3.286888: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c89200(0x00000000e4c89000) deq 0x00000000e4c891d0(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.286891: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-140 [000] dNh.. 3.286935: xhci_handle_event: EVENT: TRB 00000000e4c891f0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-140 [000] dNh.. 3.286945: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-140 [000] dNh.. 3.286951: xhci_inc_deq: CTRL ffffff80238d3f80: enq 0x00000000e4c89200(0x00000000e4c89000) deq 0x00000000e4c89200(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-140 [000] dNh.. 3.286957: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff80258b8480 pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-140 [000] dNh.. 3.286964: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39611e0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 3.287094: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff80258b8480 pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 3.287098: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0002 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 3.287101: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c89210(0x00000000e4c89000) deq 0x00000000e4c89200(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.287102: xhci_queue_trb: CTRL: Buffer 00000000e3b16e50 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 3.287105: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c89220(0x00000000e4c89000) deq 0x00000000e4c89200(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.287106: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 3.287108: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c89230(0x00000000e4c89000) deq 0x00000000e4c89200(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.287110: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-9 [000] d.h.. 3.287126: xhci_handle_event: EVENT: TRB 00000000e4c89220 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-9 [000] d.h.. 3.287130: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-9 [000] d.h.. 3.287134: xhci_inc_deq: CTRL ffffff80238d3f80: enq 0x00000000e4c89230(0x00000000e4c89000) deq 0x00000000e4c89230(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-9 [000] d.h.. 3.287136: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff80258b8480 pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-9 [000] d.h.. 3.287140: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39611f0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 3.287206: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff80258b8480 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 3.287210: xhci_queue_trb: CTRL: bRequestType 23 bRequest 01 wValue 0010 wIndex 0002 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 3.287212: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c89240(0x00000000e4c89000) deq 0x00000000e4c89230(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.287213: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 3.287215: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c89250(0x00000000e4c89000) deq 0x00000000e4c89230(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.287217: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-9 [000] d.h.. 3.287229: xhci_handle_event: EVENT: TRB 00000000e4c89240 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-9 [000] d.h.. 3.287233: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-9 [000] d.h.. 3.287236: xhci_inc_deq: CTRL ffffff80238d3f80: enq 0x00000000e4c89250(0x00000000e4c89000) deq 0x00000000e4c89250(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-9 [000] d.h.. 3.287238: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff80258b8480 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-9 [000] d.h.. 3.287241: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961200(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 3.390699: xhci_urb_enqueue: 1-1 ep1in-intr: urb ffffff8025892780 pipe 1077969536 slot 1 length 0/1 sgs 0/0 stream 0 flags 00010200
<task>-59 [001] d.... 3.390722: xhci_queue_trb: INTR: Buffer 00000000e3b16e48 length 1 TD size 0 intr 0 type 'Normal' flags b:i:I:c:s:I:e:c
<task>-59 [001] d.... 3.390726: xhci_inc_enq: INTR ffffff8023ae9c80: enq 0x00000000e592d010(0x00000000e592d000) deq 0x00000000e592d000(0x00000000e592d000) segs 2 stream 0 bounce 1 cycle 1
<task>-59 [001] d.... 3.390730: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep1in
<task>-59 [001] ..... 3.390847: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8025812b40 pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 3.390852: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0002 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 3.390854: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c89260(0x00000000e4c89000) deq 0x00000000e4c89250(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.390856: xhci_queue_trb: CTRL: Buffer 00000000e3b16e50 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 3.390858: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c89270(0x00000000e4c89000) deq 0x00000000e4c89250(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.390859: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 3.390862: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c89280(0x00000000e4c89000) deq 0x00000000e4c89250(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.390864: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-197 [000] d.h.. 3.390891: xhci_handle_event: EVENT: TRB 00000000e4c89270 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-197 [000] d.h.. 3.390900: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-197 [000] d.h.. 3.390907: xhci_inc_deq: CTRL ffffff80238d3f80: enq 0x00000000e4c89280(0x00000000e4c89000) deq 0x00000000e4c89280(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-197 [000] d.h.. 3.390913: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8025812b40 pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-197 [000] d.h.. 3.390920: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961210(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.394763: xhci_queue_trb: CMD: Enable Slot Command: flags C
<task>-59 [001] d.... 3.394772: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e39130c0(0x00000000e3913000) deq 0x00000000e39130b0(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.394776: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-202 [000] d.h.. 3.394804: xhci_handle_event: EVENT: TRB 00000000e39130b0 status 'Success' len 0 slot 2 ep 0 type 'Command Completion Event' flags e:C
<task>-202 [000] d.h.. 3.394809: xhci_handle_command: CMD: Enable Slot Command: flags C
<task>-202 [000] d.h.. 3.394825: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e39130c0(0x00000000e3913000) deq 0x00000000e39130c0(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-202 [000] d.h.. 3.394827: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961220(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 3.395205: xhci_ring_alloc: CTRL ffffff80259b6880: enq 0x00000000e5889000(0x00000000e5889000) deq 0x00000000e5889000(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 3.395212: xhci_alloc_virt_device: vdev ffffff802159e000 ctx e582d000 | e0fa0000 num 0 state 0 speed 0 port 0 level 0 slot 0
<task>-59 [001] ..... 3.395216: xhci_alloc_dev: RS 00000 UNKNOWN speed Ctx Entries 0 MEL 0 us Port# 0/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-59 [001] ..... 3.395272: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8025812b40 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 3.395282: xhci_queue_trb: CTRL: bRequestType 23 bRequest 03 wValue 0004 wIndex 0002 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 3.395286: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c89290(0x00000000e4c89000) deq 0x00000000e4c89280(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.395287: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 3.395289: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c892a0(0x00000000e4c89000) deq 0x00000000e4c89280(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.395292: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-202 [000] d.h.. 3.395316: xhci_handle_event: EVENT: TRB 00000000e4c89290 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-202 [000] d.h.. 3.395324: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-202 [000] d.h.. 3.395329: xhci_inc_deq: CTRL ffffff80238d3f80: enq 0x00000000e4c892a0(0x00000000e4c89000) deq 0x00000000e4c892a0(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-202 [000] d.h.. 3.395334: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8025812b40 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-202 [000] d.h.. 3.395345: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961230(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 3.411460: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8025b0ea80 pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 3.411480: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0002 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 3.411484: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c892b0(0x00000000e4c89000) deq 0x00000000e4c892a0(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.411487: xhci_queue_trb: CTRL: Buffer 00000000e3b16e50 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 3.411489: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c892c0(0x00000000e4c89000) deq 0x00000000e4c892a0(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.411490: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 3.411492: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c892d0(0x00000000e4c89000) deq 0x00000000e4c892a0(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.411495: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-202 [000] d.h.. 3.411524: xhci_handle_event: EVENT: TRB 00000000e4c892c0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-202 [000] d.h.. 3.411534: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-202 [000] d.h.. 3.411540: xhci_inc_deq: CTRL ffffff80238d3f80: enq 0x00000000e4c892d0(0x00000000e4c89000) deq 0x00000000e4c892d0(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-202 [000] d.h.. 3.411546: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8025b0ea80 pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-202 [000] d.h.. 3.411552: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961240(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 3.412376: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8025b0ea80 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 3.412390: xhci_queue_trb: CTRL: bRequestType 23 bRequest 01 wValue 0014 wIndex 0002 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 3.412394: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c892e0(0x00000000e4c89000) deq 0x00000000e4c892d0(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.412395: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 3.412397: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c892f0(0x00000000e4c89000) deq 0x00000000e4c892d0(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.412401: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-202 [000] d.h.. 3.412427: xhci_handle_event: EVENT: TRB 00000000e4c892e0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-202 [000] d.h.. 3.412434: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-202 [000] d.h.. 3.412439: xhci_inc_deq: CTRL ffffff80238d3f80: enq 0x00000000e4c892f0(0x00000000e4c89000) deq 0x00000000e4c892f0(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-202 [000] d.h.. 3.412444: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8025b0ea80 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-202 [000] d.h.. 3.412450: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961250(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-106 [001] d.s.. 3.426569: xhci_hub_status_data: port 1-0: 0x00000e03 Powered Connected Enabled Link:U0 PortSpeed:3 Change: Wake:
<task>-59 [001] .N... 3.478967: xhci_setup_device_slot: RS 00000 UNKNOWN speed Ctx Entries 0 MEL 0 us Port# 0/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-59 [001] .N... 3.478990: xhci_setup_addressable_virt_device: vdev ffffff802159e000 ctx e582d000 | e0fa0000 num 0 state 5 speed 3 port 2 level 2 slot 2
<task>-59 [001] .N... 3.478994: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e582d000, ctx_va=@ffffffc080f25000
<task>-59 [001] .N... 3.478998: xhci_address_ctrl_ctx: Add: slot ep0
<task>-59 [001] dN... 3.479004: xhci_setup_device: vdev ffffff802159e000 ctx e582d000 | e0fa0000 num 0 state 5 speed 3 port 2 level 2 slot 2
<task>-59 [001] dN... 3.479015: xhci_queue_trb: CMD: Address Device Command: ctx 00000000e582d000 slot 2 flags B:C
<task>-59 [001] dN... 3.479019: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e39130d0(0x00000000e3913000) deq 0x00000000e39130c0(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-59 [001] dN... 3.479022: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-215 [000] d.h.. 3.479044: xhci_handle_event: EVENT: TRB 00000000e39130c0 status 'Success' len 0 slot 2 ep 0 type 'Command Completion Event' flags e:C
<task>-215 [000] d.h.. 3.479050: xhci_handle_command: CMD: Address Device Command: ctx 00000000e582d000 slot 2 flags B:C
<task>-215 [000] d.h.. 3.479056: xhci_handle_cmd_addr_dev: RS 00002 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<task>-215 [000] d.h.. 3.479067: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e39130d0(0x00000000e3913000) deq 0x00000000e39130d0(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-215 [000] d.h.. 3.479069: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961260(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 3.558020: xhci_dbg_address: Successful setup context command
<task>-59 [001] ..... 3.558036: xhci_dbg_address: Op regs DCBAA ptr = 0x000000e38fc000
<task>-59 [001] ..... 3.558044: xhci_dbg_address: Slot ID 2 dcbaa entry @ffffffc080c1d010 = 0x000000e0fa0000
<task>-59 [001] ..... 3.558049: xhci_dbg_address: Output Context DMA address = 0xe0fa0000
<task>-59 [001] ..... 3.558053: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e582d000, ctx_va=@ffffffc080f25000
<task>-59 [001] ..... 3.558056: xhci_address_ctx: ctx_64=0, ctx_type=1, ctx_dma=@e0fa0000, ctx_va=@ffffffc080e26000
<task>-59 [001] ..... 3.558060: xhci_dbg_address: Internal device address = 0
<task>-59 [001] ..... 3.558091: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024f05f00 pipe 2147483776 slot 2 length 0/64 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 3.558102: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0100 wIndex 0000 wLength 64 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 3.558106: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889010(0x00000000e5889000) deq 0x00000000e5889000(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.558109: xhci_queue_trb: CTRL: Buffer 00000000e59aeb00 length 64 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 3.558111: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889020(0x00000000e5889000) deq 0x00000000e5889000(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.558112: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 3.558114: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889030(0x00000000e5889000) deq 0x00000000e5889000(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.558117: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-228 [000] d.h.. 3.558165: xhci_handle_event: EVENT: TRB 00000000e5889010 status 'Short Packet' len 46 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-228 [000] d.h.. 3.558179: xhci_handle_transfer: CTRL: Buffer 00000000e59aeb00 length 64 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-228 [000] d.h.. 3.558185: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961270(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-228 [000] d.h.. 3.558187: xhci_handle_event: EVENT: TRB 00000000e5889020 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-228 [000] d.h.. 3.558192: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-228 [000] d.h.. 3.558196: xhci_inc_deq: CTRL ffffff80259b6880: enq 0x00000000e5889030(0x00000000e5889000) deq 0x00000000e5889030(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-228 [000] d.h.. 3.558205: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024f05f00 pipe 2147483776 slot 2 length 18/64 sgs 0/0 stream 0 flags 00110200
<task>-228 [000] d.h.. 3.558220: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961280(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 3.566828: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8024f05f00 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 3.566849: xhci_queue_trb: CTRL: bRequestType 23 bRequest 03 wValue 0004 wIndex 0002 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 3.566853: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c89300(0x00000000e4c89000) deq 0x00000000e4c892f0(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.566855: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 3.566857: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c89310(0x00000000e4c89000) deq 0x00000000e4c892f0(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.566861: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-105 [000] d.h.. 3.566886: xhci_handle_event: EVENT: TRB 00000000e4c89300 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-105 [000] d.h.. 3.566896: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-105 [000] d.h.. 3.566902: xhci_inc_deq: CTRL ffffff80238d3f80: enq 0x00000000e4c89310(0x00000000e4c89000) deq 0x00000000e4c89310(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-105 [000] d.h.. 3.566908: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8024f05f00 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-105 [000] d.h.. 3.566919: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961290(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 3.590748: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8024f0e180 pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 3.590769: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0002 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 3.590773: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c89320(0x00000000e4c89000) deq 0x00000000e4c89310(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.590776: xhci_queue_trb: CTRL: Buffer 00000000e3b16e50 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 3.590778: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c89330(0x00000000e4c89000) deq 0x00000000e4c89310(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.590779: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 3.590781: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c89340(0x00000000e4c89000) deq 0x00000000e4c89310(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.590784: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-231 [000] D.h.. 3.590813: xhci_handle_event: EVENT: TRB 00000000e4c89330 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-231 [000] D.h.. 3.590823: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-231 [000] D.h.. 3.590829: xhci_inc_deq: CTRL ffffff80238d3f80: enq 0x00000000e4c89340(0x00000000e4c89000) deq 0x00000000e4c89340(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-231 [000] D.h.. 3.590836: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8024f0e180 pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-231 [000] D.h.. 3.590846: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39612a0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 3.591057: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8024f0e180 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 3.591062: xhci_queue_trb: CTRL: bRequestType 23 bRequest 01 wValue 0014 wIndex 0002 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 3.591064: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c89350(0x00000000e4c89000) deq 0x00000000e4c89340(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.591066: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 3.591068: xhci_inc_enq: CTRL ffffff80238d3f80: enq 0x00000000e4c89360(0x00000000e4c89000) deq 0x00000000e4c89340(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.591069: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-105 [000] d.h.. 3.591090: xhci_handle_event: EVENT: TRB 00000000e4c89350 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-105 [000] d.h.. 3.591094: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-105 [000] d.h.. 3.591097: xhci_inc_deq: CTRL ffffff80238d3f80: enq 0x00000000e4c89360(0x00000000e4c89000) deq 0x00000000e4c89360(0x00000000e4c89000) segs 2 stream 0 bounce 0 cycle 1
<task>-105 [000] d.h.. 3.591100: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8024f0e180 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-105 [000] d.h.. 3.591105: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39612b0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 3.647303: xhci_discover_or_reset_device: RS 00002 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<task>-59 [001] d.... 3.647323: xhci_queue_trb: CMD: Reset Device Command: slot 2 flags C
<task>-59 [001] d.... 3.647327: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e39130e0(0x00000000e3913000) deq 0x00000000e39130d0(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.647331: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-156 [000] d.h.. 3.647351: xhci_handle_event: EVENT: TRB 00000000e39130d0 status 'Context State Error' len 0 slot 2 ep 0 type 'Command Completion Event' flags e:C
<task>-156 [000] d.h.. 3.647357: xhci_handle_command: CMD: Reset Device Command: slot 2 flags C
<task>-156 [000] d.h.. 3.647364: xhci_handle_cmd_reset_dev: RS 00002 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<task>-156 [000] d.h.. 3.647380: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e39130e0(0x00000000e3913000) deq 0x00000000e39130e0(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-156 [000] d.h.. 3.647383: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39612c0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 3.647438: xhci_setup_device_slot: RS 00002 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<task>-59 [001] ..... 3.647454: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e582d000, ctx_va=@ffffffc080f25000
<task>-59 [001] ..... 3.647458: xhci_address_ctrl_ctx: Add: slot ep0
<task>-59 [001] d.... 3.647461: xhci_setup_device: vdev ffffff802159e000 ctx e582d000 | e0fa0000 num 0 state 5 speed 3 port 2 level 2 slot 2
<task>-59 [001] d.... 3.647466: xhci_queue_trb: CMD: Address Device Command: ctx 00000000e582d000 slot 2 flags b:C
<task>-59 [001] d.... 3.647468: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e39130f0(0x00000000e3913000) deq 0x00000000e39130e0(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.647470: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-30 [000] d.h.. 3.647508: xhci_handle_event: EVENT: TRB 00000000e39130e0 status 'Success' len 0 slot 2 ep 0 type 'Command Completion Event' flags e:C
<task>-30 [000] d.h.. 3.647511: xhci_handle_command: CMD: Address Device Command: ctx 00000000e582d000 slot 2 flags b:C
<task>-30 [000] d.h.. 3.647515: xhci_handle_cmd_addr_dev: RS 00002 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 2 State addressed
<task>-30 [000] d.h.. 3.647522: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e39130f0(0x00000000e3913000) deq 0x00000000e39130f0(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-30 [000] d.h.. 3.647524: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39612d0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 3.647571: xhci_dbg_address: Successful setup address command
<task>-59 [001] ..... 3.647578: xhci_dbg_address: Op regs DCBAA ptr = 0x000000e38fc000
<task>-59 [001] ..... 3.647584: xhci_dbg_address: Slot ID 2 dcbaa entry @ffffffc080c1d010 = 0x000000e0fa0000
<task>-59 [001] ..... 3.647589: xhci_dbg_address: Output Context DMA address = 0xe0fa0000
<task>-59 [001] ..... 3.647592: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e582d000, ctx_va=@ffffffc080f25000
<task>-59 [001] ..... 3.647594: xhci_address_ctx: ctx_64=0, ctx_type=1, ctx_dma=@e0fa0000, ctx_va=@ffffffc080e26000
<task>-59 [001] ..... 3.647597: xhci_dbg_address: Internal device address = 2
<task>-59 [001] ..... 3.662596: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024fc4240 pipe 2147484544 slot 2 length 0/18 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 3.662615: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0100 wIndex 0000 wLength 18 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 3.662619: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889040(0x00000000e5889000) deq 0x00000000e5889030(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.662622: xhci_queue_trb: CTRL: Buffer 00000000e5a9ed40 length 18 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 3.662624: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889050(0x00000000e5889000) deq 0x00000000e5889030(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.662625: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 3.662627: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889060(0x00000000e5889000) deq 0x00000000e5889030(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.662630: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-241 [000] d.H.. 3.662655: xhci_handle_event: EVENT: TRB 00000000e5889050 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-241 [000] d.H.. 3.662664: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-241 [000] d.H.. 3.662670: xhci_inc_deq: CTRL ffffff80259b6880: enq 0x00000000e5889060(0x00000000e5889000) deq 0x00000000e5889060(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-241 [000] d.H.. 3.662675: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024fc4240 pipe 2147484544 slot 2 length 18/18 sgs 0/0 stream 0 flags 00110200
<task>-241 [000] d.H.. 3.662688: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39612e0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 3.662870: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024fc4240 pipe 2147484544 slot 2 length 0/2 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 3.662875: xhci_queue_trb: CTRL: bRequestType 80 bRequest 00 wValue 0000 wIndex 0000 wLength 2 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 3.662877: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889070(0x00000000e5889000) deq 0x00000000e5889060(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.662879: xhci_queue_trb: CTRL: Buffer 00000000e59432f0 length 2 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 3.662881: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889080(0x00000000e5889000) deq 0x00000000e5889060(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.662882: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 3.662888: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889090(0x00000000e5889000) deq 0x00000000e5889060(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.662890: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-213 [000] d.h.. 3.662907: xhci_handle_event: EVENT: TRB 00000000e5889080 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-213 [000] d.h.. 3.662913: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-213 [000] d.h.. 3.662917: xhci_inc_deq: CTRL ffffff80259b6880: enq 0x00000000e5889090(0x00000000e5889000) deq 0x00000000e5889090(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-213 [000] d.h.. 3.662919: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024fc4240 pipe 2147484544 slot 2 length 2/2 sgs 0/0 stream 0 flags 00110200
<task>-213 [000] d.h.. 3.662924: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39612f0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 3.662974: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024fc4240 pipe 2147484544 slot 2 length 0/9 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 3.662978: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0200 wIndex 0000 wLength 9 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 3.662981: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e58890a0(0x00000000e5889000) deq 0x00000000e5889090(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.662982: xhci_queue_trb: CTRL: Buffer 00000000e4c7d9f0 length 9 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 3.662985: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e58890b0(0x00000000e5889000) deq 0x00000000e5889090(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.662986: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 3.662988: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e58890c0(0x00000000e5889000) deq 0x00000000e5889090(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.662989: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-241 [000] d.h.. 3.663005: xhci_handle_event: EVENT: TRB 00000000e58890b0 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-241 [000] d.h.. 3.663009: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-241 [000] d.h.. 3.663012: xhci_inc_deq: CTRL ffffff80259b6880: enq 0x00000000e58890c0(0x00000000e5889000) deq 0x00000000e58890c0(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-241 [000] d.h.. 3.663015: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024fc4240 pipe 2147484544 slot 2 length 9/9 sgs 0/0 stream 0 flags 00110200
<task>-241 [000] d.h.. 3.663018: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961300(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 3.663079: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024fc4240 pipe 2147484544 slot 2 length 0/41 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 3.663083: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0200 wIndex 0000 wLength 41 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 3.663085: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e58890d0(0x00000000e5889000) deq 0x00000000e58890c0(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.663086: xhci_queue_trb: CTRL: Buffer 00000000e5b36000 length 41 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 3.663088: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e58890e0(0x00000000e5889000) deq 0x00000000e58890c0(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.663090: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 3.663091: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e58890f0(0x00000000e5889000) deq 0x00000000e58890c0(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.663093: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-241 [000] d.h.. 3.663109: xhci_handle_event: EVENT: TRB 00000000e58890e0 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-241 [000] d.h.. 3.663113: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-241 [000] d.h.. 3.663116: xhci_inc_deq: CTRL ffffff80259b6880: enq 0x00000000e58890f0(0x00000000e5889000) deq 0x00000000e58890f0(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-241 [000] d.h.. 3.663118: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024fc4240 pipe 2147484544 slot 2 length 41/41 sgs 0/0 stream 0 flags 00110200
<task>-241 [000] d.h.. 3.663121: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961310(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 3.663731: xhci_ring_alloc: INTR ffffff80259b6f80: enq 0x00000000e58a1000(0x00000000e58a1000) deq 0x00000000e58a1000(0x00000000e58a1000) segs 2 stream 0 bounce 1 cycle 1
<task>-59 [001] ..... 3.663736: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 256000 us max ESIT payload 1 CErr 3 Type Int IN burst 0 maxp 1 deq 00000000e58a1001 avg trb len 1
<task>-59 [001] d.... 3.663755: xhci_configure_endpoint_ctrl_ctx: Add: slot 1in
<task>-59 [001] d.... 3.663758: xhci_configure_endpoint: RS 00002 high-speed Ctx Entries 3 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-59 [001] d.... 3.663768: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e582d000 slot 2 flags d:C
<task>-59 [001] d.... 3.663770: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e3913100(0x00000000e3913000) deq 0x00000000e39130f0(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.663773: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-213 [000] d.h.. 3.663852: xhci_handle_event: EVENT: TRB 00000000e39130f0 status 'Success' len 0 slot 2 ep 0 type 'Command Completion Event' flags e:C
<task>-213 [000] d.h.. 3.663857: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e582d000 slot 2 flags d:C
<task>-213 [000] d.h.. 3.663869: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e3913100(0x00000000e3913000) deq 0x00000000e3913100(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-213 [000] d.h.. 3.663873: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961320(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 3.663888: xhci_dbg_context_change: Successful Endpoint Configure command
<task>-59 [001] d.... 3.663920: xhci_queue_trb: CMD: Stop Ring Command: slot 2 sp 0 ep 3 flags C
<task>-59 [001] d.... 3.663922: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e3913110(0x00000000e3913000) deq 0x00000000e3913100(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.663924: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-241 [000] d.h.. 3.663935: xhci_handle_event: EVENT: TRB 00000000e58a1000 status 'Stopped - Length Invalid' len 0 slot 2 ep 3 type 'Transfer Event' flags e:C
<task>-241 [000] d.h.. 3.663940: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961330(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-241 [000] d.h.. 3.663942: xhci_handle_event: EVENT: TRB 00000000e3913100 status 'Success' len 0 slot 2 ep 0 type 'Command Completion Event' flags e:C
<task>-241 [000] d.h.. 3.663944: xhci_handle_command: CMD: Stop Ring Command: slot 2 sp 0 ep 3 flags C
<task>-241 [000] d.h.. 3.663953: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e3913110(0x00000000e3913000) deq 0x00000000e3913110(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-241 [000] d.h.. 3.663955: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961340(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.664754: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e5a01000 slot 2 flags d:C
<task>-59 [001] d.... 3.664763: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e3913120(0x00000000e3913000) deq 0x00000000e3913110(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.664765: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-241 [000] d.h.. 3.664849: xhci_handle_event: EVENT: TRB 00000000e3913110 status 'Success' len 0 slot 2 ep 0 type 'Command Completion Event' flags e:C
<task>-241 [000] d.h.. 3.664853: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e5a01000 slot 2 flags d:C
<task>-241 [000] d.h.. 3.664864: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e3913120(0x00000000e3913000) deq 0x00000000e3913120(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-241 [000] d.h.. 3.664866: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961350(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 3.664921: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff80259bf540 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 3.664930: xhci_queue_trb: CTRL: bRequestType 00 bRequest 09 wValue 0001 wIndex 0000 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 3.664933: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889100(0x00000000e5889000) deq 0x00000000e58890f0(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.664935: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 3.664937: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889110(0x00000000e5889000) deq 0x00000000e58890f0(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.664940: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-241 [000] d.h.. 3.664954: xhci_handle_event: EVENT: TRB 00000000e5889100 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-241 [000] d.h.. 3.664961: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-241 [000] d.h.. 3.664965: xhci_inc_deq: CTRL ffffff80259b6880: enq 0x00000000e5889110(0x00000000e5889000) deq 0x00000000e5889110(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-241 [000] d.h.. 3.664971: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff80259bf540 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-241 [000] d.h.. 3.664980: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961360(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] .N... 3.670258: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff80259bf540 pipe 2147484544 slot 2 length 0/15 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] dN... 3.670275: xhci_queue_trb: CTRL: bRequestType a0 bRequest 06 wValue 2900 wIndex 0000 wLength 15 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] dN... 3.670279: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889120(0x00000000e5889000) deq 0x00000000e5889110(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] dN... 3.670282: xhci_queue_trb: CTRL: Buffer 00000000e4c7df30 length 15 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] dN... 3.670285: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889130(0x00000000e5889000) deq 0x00000000e5889110(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] dN... 3.670286: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] dN... 3.670288: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889140(0x00000000e5889000) deq 0x00000000e5889110(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] dN... 3.670291: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-241 [000] d.h.. 3.670314: xhci_handle_event: EVENT: TRB 00000000e5889120 status 'Short Packet' len 6 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-241 [000] d.h.. 3.670323: xhci_handle_transfer: CTRL: Buffer 00000000e4c7df30 length 15 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-241 [000] d.h.. 3.670329: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961370(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-241 [000] d.h.. 3.670330: xhci_handle_event: EVENT: TRB 00000000e5889130 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-241 [000] d.h.. 3.670333: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-241 [000] d.h.. 3.670337: xhci_inc_deq: CTRL ffffff80259b6880: enq 0x00000000e5889140(0x00000000e5889000) deq 0x00000000e5889140(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-241 [000] d.h.. 3.670342: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff80259bf540 pipe 2147484544 slot 2 length 9/15 sgs 0/0 stream 0 flags 00110200
<task>-241 [000] d.h.. 3.670352: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961380(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] .N... 3.685408: xhci_ring_alloc: INTR ffffff80259b6180: enq 0x00000000e581a000(0x00000000e581a000) deq 0x00000000e581a000(0x00000000e581a000) segs 2 stream 0 bounce 1 cycle 1
<task>-59 [001] .N... 3.685417: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 256000 us max ESIT payload 1 CErr 3 Type Int IN burst 0 maxp 1 deq 00000000e581a001 avg trb len 1
<task>-59 [001] dN... 3.685435: xhci_configure_endpoint_ctrl_ctx: Drop: 1in, Add: slot 1in
<task>-59 [001] dN... 3.685438: xhci_configure_endpoint: RS 00002 high-speed Ctx Entries 3 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-59 [001] dN... 3.685449: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e582d000 slot 2 flags d:C
<task>-59 [001] dN... 3.685453: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e3913130(0x00000000e3913000) deq 0x00000000e3913120(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-59 [001] dN... 3.685456: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-241 [000] d.h.. 3.685544: xhci_handle_event: EVENT: TRB 00000000e3913120 status 'Success' len 0 slot 2 ep 0 type 'Command Completion Event' flags e:C
<task>-241 [000] d.h.. 3.685549: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e582d000 slot 2 flags d:C
<task>-241 [000] d.h.. 3.685563: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e3913130(0x00000000e3913000) deq 0x00000000e3913130(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-241 [000] d.h.. 3.685565: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961390(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 3.700147: xhci_dbg_context_change: Successful Endpoint Configure command
<task>-59 [001] ..... 3.700168: xhci_ring_free: INTR ffffff80259b6f80: enq 0x00000000e58a1000(0x00000000e58a1000) deq 0x00000000e58a1000(0x00000000e58a1000) segs 2 stream 0 bounce 1 cycle 1
<task>-59 [001] ..... 3.700199: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024fc4240 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 3.700212: xhci_queue_trb: CTRL: bRequestType 01 bRequest 0b wValue 0001 wIndex 0000 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 3.700216: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889150(0x00000000e5889000) deq 0x00000000e5889140(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.700217: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 3.700220: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889160(0x00000000e5889000) deq 0x00000000e5889140(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.700223: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-241 [000] d.h.. 3.700247: xhci_handle_event: EVENT: TRB 00000000e5889150 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-241 [000] d.h.. 3.700256: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-241 [000] d.h.. 3.700262: xhci_inc_deq: CTRL ffffff80259b6880: enq 0x00000000e5889160(0x00000000e5889000) deq 0x00000000e5889160(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-241 [000] d.h.. 3.700267: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024fc4240 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-241 [000] d.h.. 3.700276: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39613a0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.700453: xhci_queue_trb: CMD: Stop Ring Command: slot 2 sp 0 ep 3 flags C
<task>-59 [001] d.... 3.700456: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e3913140(0x00000000e3913000) deq 0x00000000e3913130(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.700459: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-131 [000] d.h.. 3.700473: xhci_handle_event: EVENT: TRB 00000000e581a000 status 'Stopped - Length Invalid' len 0 slot 2 ep 3 type 'Transfer Event' flags e:C
<task>-131 [000] d.h.. 3.700478: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39613b0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-131 [000] d.h.. 3.700480: xhci_handle_event: EVENT: TRB 00000000e3913130 status 'Success' len 0 slot 2 ep 0 type 'Command Completion Event' flags e:C
<task>-131 [000] d.h.. 3.700483: xhci_handle_command: CMD: Stop Ring Command: slot 2 sp 0 ep 3 flags C
<task>-131 [000] d.h.. 3.700494: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e3913140(0x00000000e3913000) deq 0x00000000e3913140(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-131 [000] d.h.. 3.700496: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39613c0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.700513: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e5a01000 slot 2 flags d:C
<task>-59 [001] d.... 3.700516: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e3913150(0x00000000e3913000) deq 0x00000000e3913140(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.700517: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-241 [000] d.h.. 3.700595: xhci_handle_event: EVENT: TRB 00000000e3913140 status 'Success' len 0 slot 2 ep 0 type 'Command Completion Event' flags e:C
<task>-241 [000] d.h.. 3.700598: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e5a01000 slot 2 flags d:C
<task>-241 [000] d.h.. 3.700607: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e3913150(0x00000000e3913000) deq 0x00000000e3913150(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-241 [000] d.h.. 3.700608: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39613d0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 3.700726: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024fc4240 pipe 2147484544 slot 2 length 0/2 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 3.700731: xhci_queue_trb: CTRL: bRequestType 80 bRequest 00 wValue 0000 wIndex 0000 wLength 2 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 3.700734: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889170(0x00000000e5889000) deq 0x00000000e5889160(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.700736: xhci_queue_trb: CTRL: Buffer 00000000e59433e8 length 2 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 3.700738: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889180(0x00000000e5889000) deq 0x00000000e5889160(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.700739: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 3.700741: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889190(0x00000000e5889000) deq 0x00000000e5889160(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.700743: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-241 [000] d.h.. 3.700758: xhci_handle_event: EVENT: TRB 00000000e5889180 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-241 [000] d.h.. 3.700763: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-241 [000] d.h.. 3.700766: xhci_inc_deq: CTRL ffffff80259b6880: enq 0x00000000e5889190(0x00000000e5889000) deq 0x00000000e5889190(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-241 [000] d.h.. 3.700769: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024fc4240 pipe 2147484544 slot 2 length 2/2 sgs 0/0 stream 0 flags 00110200
<task>-241 [000] d.h.. 3.700776: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39613e0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 3.700835: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024fc4240 pipe 2147484544 slot 2 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 3.700839: xhci_queue_trb: CTRL: bRequestType a0 bRequest 00 wValue 0000 wIndex 0000 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 3.700841: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e58891a0(0x00000000e5889000) deq 0x00000000e5889190(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.700843: xhci_queue_trb: CTRL: Buffer 00000000e5943300 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 3.700845: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e58891b0(0x00000000e5889000) deq 0x00000000e5889190(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.700846: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 3.700851: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e58891c0(0x00000000e5889000) deq 0x00000000e5889190(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.700853: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-173 [000] d.h.. 3.700870: xhci_handle_event: EVENT: TRB 00000000e58891b0 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-173 [000] d.h.. 3.700875: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-173 [000] d.h.. 3.700878: xhci_inc_deq: CTRL ffffff80259b6880: enq 0x00000000e58891c0(0x00000000e5889000) deq 0x00000000e58891c0(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-173 [000] d.h.. 3.700880: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024fc4240 pipe 2147484544 slot 2 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-173 [000] d.h.. 3.700883: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39613f0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.701300: xhci_configure_endpoint_ctrl_ctx: Add: slot
<task>-59 [001] d.... 3.701305: xhci_configure_endpoint: RS 00002 high-speed multi-TT Hub Ctx Entries 3 MEL 0 us Port# 1/3 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-59 [001] d.... 3.701312: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e5a01000 slot 2 flags d:C
<task>-59 [001] d.... 3.701315: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e3913160(0x00000000e3913000) deq 0x00000000e3913150(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.701317: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-131 [000] d.h.. 3.701401: xhci_handle_event: EVENT: TRB 00000000e3913150 status 'Success' len 0 slot 2 ep 0 type 'Command Completion Event' flags e:C
<task>-131 [000] d.h.. 3.701405: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e5a01000 slot 2 flags d:C
<task>-131 [000] d.h.. 3.701423: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e3913160(0x00000000e3913000) deq 0x00000000e3913160(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-131 [000] d.h.. 3.701424: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961400(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 3.701667: xhci_dbg_context_change: Successful Endpoint Configure command
<task>-59 [001] .N... 3.701693: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024ef0240 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] dN... 3.701699: xhci_queue_trb: CTRL: bRequestType 23 bRequest 03 wValue 0008 wIndex 0001 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] dN... 3.701701: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e58891d0(0x00000000e5889000) deq 0x00000000e58891c0(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] dN... 3.701703: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] dN... 3.701705: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e58891e0(0x00000000e5889000) deq 0x00000000e58891c0(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] dN... 3.701707: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-172 [000] d.h.. 3.701723: xhci_handle_event: EVENT: TRB 00000000e58891d0 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-172 [000] d.h.. 3.701730: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-172 [000] d.h.. 3.701734: xhci_inc_deq: CTRL ffffff80259b6880: enq 0x00000000e58891e0(0x00000000e5889000) deq 0x00000000e58891e0(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-172 [000] d.h.. 3.701737: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024ef0240 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-172 [000] d.h.. 3.701743: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961410(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 3.701795: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024ef0240 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 3.701799: xhci_queue_trb: CTRL: bRequestType 23 bRequest 03 wValue 0008 wIndex 0002 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 3.701801: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e58891f0(0x00000000e5889000) deq 0x00000000e58891e0(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.701803: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 3.701805: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889200(0x00000000e5889000) deq 0x00000000e58891e0(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.701806: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-172 [000] d.h.. 3.701821: xhci_handle_event: EVENT: TRB 00000000e58891f0 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-172 [000] d.h.. 3.701825: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-172 [000] d.h.. 3.701828: xhci_inc_deq: CTRL ffffff80259b6880: enq 0x00000000e5889200(0x00000000e5889000) deq 0x00000000e5889200(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-172 [000] d.h.. 3.701831: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024ef0240 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-172 [000] d.h.. 3.701834: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961420(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 3.701889: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024ef0240 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 3.701893: xhci_queue_trb: CTRL: bRequestType 23 bRequest 03 wValue 0008 wIndex 0003 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 3.701895: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889210(0x00000000e5889000) deq 0x00000000e5889200(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.701897: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 3.701899: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889220(0x00000000e5889000) deq 0x00000000e5889200(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.701900: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-172 [000] dNh.. 3.701915: xhci_handle_event: EVENT: TRB 00000000e5889210 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-172 [000] dNh.. 3.701919: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-172 [000] dNh.. 3.701922: xhci_inc_deq: CTRL ffffff80259b6880: enq 0x00000000e5889220(0x00000000e5889000) deq 0x00000000e5889220(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-172 [000] dNh.. 3.701924: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024ef0240 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-172 [000] dNh.. 3.701931: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961430(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 3.810771: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024ec8a80 pipe 2147484544 slot 2 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 3.810791: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0001 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 3.810795: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889230(0x00000000e5889000) deq 0x00000000e5889220(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.810798: xhci_queue_trb: CTRL: Buffer 00000000e5943300 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 3.810800: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889240(0x00000000e5889000) deq 0x00000000e5889220(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.810802: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 3.810804: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889250(0x00000000e5889000) deq 0x00000000e5889220(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.810807: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-246 [000] d.h.. 3.810833: xhci_handle_event: EVENT: TRB 00000000e5889240 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-246 [000] d.h.. 3.810842: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-246 [000] d.h.. 3.810849: xhci_inc_deq: CTRL ffffff80259b6880: enq 0x00000000e5889250(0x00000000e5889000) deq 0x00000000e5889250(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-246 [000] d.h.. 3.810855: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024ec8a80 pipe 2147484544 slot 2 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-246 [000] d.h.. 3.810862: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961440(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 3.810910: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024ec8a80 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 3.810914: xhci_queue_trb: CTRL: bRequestType 23 bRequest 01 wValue 0010 wIndex 0001 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 3.810916: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889260(0x00000000e5889000) deq 0x00000000e5889250(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.810917: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 3.810919: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889270(0x00000000e5889000) deq 0x00000000e5889250(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.810921: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-246 [000] d.h.. 3.810938: xhci_handle_event: EVENT: TRB 00000000e5889260 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-246 [000] d.h.. 3.810943: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-246 [000] d.h.. 3.810946: xhci_inc_deq: CTRL ffffff80259b6880: enq 0x00000000e5889270(0x00000000e5889000) deq 0x00000000e5889270(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-246 [000] d.h.. 3.810948: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024ec8a80 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-246 [000] d.h.. 3.810952: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961450(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 3.810999: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024ec8a80 pipe 2147484544 slot 2 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 3.811003: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0002 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 3.811005: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889280(0x00000000e5889000) deq 0x00000000e5889270(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.811007: xhci_queue_trb: CTRL: Buffer 00000000e5943300 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 3.811009: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889290(0x00000000e5889000) deq 0x00000000e5889270(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.811010: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 3.811012: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e58892a0(0x00000000e5889000) deq 0x00000000e5889270(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.811013: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-246 [000] d.h.. 3.811029: xhci_handle_event: EVENT: TRB 00000000e5889290 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-246 [000] d.h.. 3.811034: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-246 [000] d.h.. 3.811037: xhci_inc_deq: CTRL ffffff80259b6880: enq 0x00000000e58892a0(0x00000000e5889000) deq 0x00000000e58892a0(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-246 [000] d.h.. 3.811039: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024ec8a80 pipe 2147484544 slot 2 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-246 [000] d.h.. 3.811042: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961460(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 3.811073: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024ec8a80 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 3.811077: xhci_queue_trb: CTRL: bRequestType 23 bRequest 01 wValue 0010 wIndex 0002 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 3.811079: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e58892b0(0x00000000e5889000) deq 0x00000000e58892a0(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.811080: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 3.811083: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e58892c0(0x00000000e5889000) deq 0x00000000e58892a0(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.811084: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-246 [000] d.h.. 3.811097: xhci_handle_event: EVENT: TRB 00000000e58892b0 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-246 [000] d.h.. 3.811101: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-246 [000] d.h.. 3.811104: xhci_inc_deq: CTRL ffffff80259b6880: enq 0x00000000e58892c0(0x00000000e5889000) deq 0x00000000e58892c0(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-246 [000] d.h.. 3.811106: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024ec8a80 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-246 [000] d.h.. 3.811109: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961470(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 3.811148: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024ec8a80 pipe 2147484544 slot 2 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 3.811151: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0003 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 3.811154: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e58892d0(0x00000000e5889000) deq 0x00000000e58892c0(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.811155: xhci_queue_trb: CTRL: Buffer 00000000e5943300 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 3.811158: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e58892e0(0x00000000e5889000) deq 0x00000000e58892c0(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.811159: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 3.811161: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e58892f0(0x00000000e5889000) deq 0x00000000e58892c0(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.811162: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-246 [000] d.h.. 3.811178: xhci_handle_event: EVENT: TRB 00000000e58892e0 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-246 [000] d.h.. 3.811182: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-246 [000] d.h.. 3.811185: xhci_inc_deq: CTRL ffffff80259b6880: enq 0x00000000e58892f0(0x00000000e5889000) deq 0x00000000e58892f0(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-246 [000] d.h.. 3.811187: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024ec8a80 pipe 2147484544 slot 2 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-246 [000] d.h.. 3.811190: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961480(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 3.914607: xhci_urb_enqueue: 1-1.2 ep1in-intr: urb ffffff8024fc4240 pipe 1077969792 slot 2 length 0/1 sgs 0/0 stream 0 flags 00010200
<task>-59 [001] d.... 3.914629: xhci_queue_trb: INTR: Buffer 00000000e5943370 length 1 TD size 0 intr 0 type 'Normal' flags b:i:I:c:s:I:e:c
<task>-59 [001] d.... 3.914633: xhci_inc_enq: INTR ffffff80259b6180: enq 0x00000000e581a010(0x00000000e581a000) deq 0x00000000e581a000(0x00000000e581a000) segs 2 stream 0 bounce 1 cycle 1
<task>-59 [001] d.... 3.914637: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep1in
<task>-59 [001] ..... 3.914667: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024e5b0c0 pipe 2147484544 slot 2 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 3.914671: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0001 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 3.914673: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889300(0x00000000e5889000) deq 0x00000000e58892f0(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.914675: xhci_queue_trb: CTRL: Buffer 00000000e5943300 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 3.914677: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889310(0x00000000e5889000) deq 0x00000000e58892f0(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.914679: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 3.914680: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889320(0x00000000e5889000) deq 0x00000000e58892f0(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.914682: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-15 [000] d.h.. 3.914708: xhci_handle_event: EVENT: TRB 00000000e5889310 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-15 [000] d.h.. 3.914717: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-15 [000] d.h.. 3.914723: xhci_inc_deq: CTRL ffffff80259b6880: enq 0x00000000e5889320(0x00000000e5889000) deq 0x00000000e5889320(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-15 [000] d.h.. 3.914729: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024e5b0c0 pipe 2147484544 slot 2 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-15 [000] d.h.. 3.914735: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961490(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.914791: xhci_queue_trb: CMD: Enable Slot Command: flags C
<task>-59 [001] d.... 3.914794: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e3913170(0x00000000e3913000) deq 0x00000000e3913160(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.914797: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-247 [000] d.h.. 3.914814: xhci_handle_event: EVENT: TRB 00000000e3913160 status 'Success' len 0 slot 3 ep 0 type 'Command Completion Event' flags e:C
<task>-247 [000] d.h.. 3.914818: xhci_handle_command: CMD: Enable Slot Command: flags C
<task>-247 [000] d.h.. 3.914828: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e3913170(0x00000000e3913000) deq 0x00000000e3913170(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-247 [000] d.h.. 3.914830: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39614a0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 3.914912: xhci_ring_alloc: CTRL ffffff8023ae9b00: enq 0x00000000e58a1000(0x00000000e58a1000) deq 0x00000000e58a1000(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 3.914919: xhci_alloc_virt_device: vdev ffffff8027030000 ctx e4e61000 | e5a01000 num 0 state 0 speed 0 port 0 level 0 slot 0
<task>-59 [001] ..... 3.914923: xhci_alloc_dev: RS 00000 UNKNOWN speed Ctx Entries 0 MEL 0 us Port# 0/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-59 [001] ..... 3.914965: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024e5b0c0 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 3.914969: xhci_queue_trb: CTRL: bRequestType 23 bRequest 03 wValue 0004 wIndex 0001 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 3.914972: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889330(0x00000000e5889000) deq 0x00000000e5889320(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.914973: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 3.914975: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889340(0x00000000e5889000) deq 0x00000000e5889320(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.914977: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-247 [000] d.h.. 3.914992: xhci_handle_event: EVENT: TRB 00000000e5889330 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-247 [000] d.h.. 3.914997: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-247 [000] d.h.. 3.915000: xhci_inc_deq: CTRL ffffff80259b6880: enq 0x00000000e5889340(0x00000000e5889000) deq 0x00000000e5889340(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-247 [000] d.h.. 3.915004: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024e5b0c0 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-247 [000] d.h.. 3.915007: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39614b0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 3.958502: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024e5b0c0 pipe 2147484544 slot 2 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 3.958520: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0001 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 3.958524: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889350(0x00000000e5889000) deq 0x00000000e5889340(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.958527: xhci_queue_trb: CTRL: Buffer 00000000e5943300 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 3.958529: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889360(0x00000000e5889000) deq 0x00000000e5889340(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.958530: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 3.958532: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889370(0x00000000e5889000) deq 0x00000000e5889340(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.958535: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-250 [000] dNH.. 3.962792: xhci_handle_event: EVENT: TRB 00000000e5889360 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-250 [000] dNH.. 3.962802: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-250 [000] dNH.. 3.962808: xhci_inc_deq: CTRL ffffff80259b6880: enq 0x00000000e5889370(0x00000000e5889000) deq 0x00000000e5889370(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-250 [000] dNH.. 3.962814: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024e5b0c0 pipe 2147484544 slot 2 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-250 [000] dNH.. 3.962824: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39614c0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 3.962923: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024e5b0c0 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 3.962928: xhci_queue_trb: CTRL: bRequestType 23 bRequest 01 wValue 0014 wIndex 0001 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 3.962930: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889380(0x00000000e5889000) deq 0x00000000e5889370(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.962932: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 3.962934: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889390(0x00000000e5889000) deq 0x00000000e5889370(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 3.962936: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-250 [000] dNh.. 3.962950: xhci_handle_event: EVENT: TRB 00000000e5889380 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-250 [000] dNh.. 3.962954: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-250 [000] dNh.. 3.962957: xhci_inc_deq: CTRL ffffff80259b6880: enq 0x00000000e5889390(0x00000000e5889000) deq 0x00000000e5889390(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-250 [000] dNh.. 3.962960: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024e5b0c0 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-250 [000] dNh.. 3.962962: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39614d0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] .N... 4.026486: xhci_setup_device_slot: RS 00000 UNKNOWN speed Ctx Entries 0 MEL 0 us Port# 0/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-59 [001] .N... 4.026508: xhci_setup_addressable_virt_device: vdev ffffff8027030000 ctx e4e61000 | e5a01000 num 0 state 5 speed 3 port 1 level 3 slot 3
<task>-59 [001] .N... 4.026512: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e4e61000, ctx_va=@ffffffc080f4d000
<task>-59 [001] .N... 4.026516: xhci_address_ctrl_ctx: Add: slot ep0
<task>-59 [001] dN... 4.026519: xhci_setup_device: vdev ffffff8027030000 ctx e4e61000 | e5a01000 num 0 state 5 speed 3 port 1 level 3 slot 3
<task>-59 [001] dN... 4.026534: xhci_queue_trb: CMD: Address Device Command: ctx 00000000e4e61000 slot 3 flags B:C
<task>-59 [001] dN... 4.026538: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e3913180(0x00000000e3913000) deq 0x00000000e3913170(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-59 [001] dN... 4.026541: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-188 [000] d.h.. 4.026570: xhci_handle_event: EVENT: TRB 00000000e3913170 status 'Success' len 0 slot 3 ep 0 type 'Command Completion Event' flags e:C
<task>-188 [000] d.h.. 4.026576: xhci_handle_command: CMD: Address Device Command: ctx 00000000e4e61000 slot 3 flags B:C
<task>-188 [000] d.h.. 4.026584: xhci_handle_cmd_addr_dev: RS 00012 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<task>-188 [000] d.h.. 4.027326: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e3913180(0x00000000e3913000) deq 0x00000000e3913180(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-188 [000] d.h.. 4.027341: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39614e0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.036828: xhci_dbg_address: Successful setup context command
<task>-59 [001] ..... 4.036847: xhci_dbg_address: Op regs DCBAA ptr = 0x000000e38fc000
<task>-59 [001] ..... 4.036856: xhci_dbg_address: Slot ID 3 dcbaa entry @ffffffc080c1d018 = 0x000000e5a01000
<task>-59 [001] ..... 4.036861: xhci_dbg_address: Output Context DMA address = 0xe5a01000
<task>-59 [001] ..... 4.036865: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e4e61000, ctx_va=@ffffffc080f4d000
<task>-59 [001] ..... 4.036869: xhci_address_ctx: ctx_64=0, ctx_type=1, ctx_dma=@e5a01000, ctx_va=@ffffffc081bce000
<task>-59 [001] ..... 4.036872: xhci_dbg_address: Internal device address = 0
<task>-59 [001] ..... 4.036915: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147483776 slot 3 length 0/64 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.036929: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0100 wIndex 0000 wLength 64 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.036933: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1010(0x00000000e58a1000) deq 0x00000000e58a1000(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.036936: xhci_queue_trb: CTRL: Buffer 00000000e5b36fc0 length 64 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.036938: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1020(0x00000000e58a1000) deq 0x00000000e58a1000(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.036939: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.036941: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1030(0x00000000e58a1000) deq 0x00000000e58a1000(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.036945: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-130 [000] d.h.. 4.036975: xhci_handle_event: EVENT: TRB 00000000e58a1010 status 'Short Packet' len 46 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-130 [000] d.h.. 4.036986: xhci_handle_transfer: CTRL: Buffer 00000000e5b36fc0 length 64 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-130 [000] d.h.. 4.036992: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39614f0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-130 [000] d.h.. 4.036993: xhci_handle_event: EVENT: TRB 00000000e58a1020 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-130 [000] d.h.. 4.036997: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-130 [000] d.h.. 4.037001: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1030(0x00000000e58a1000) deq 0x00000000e58a1030(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-130 [000] d.h.. 4.037008: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147483776 slot 3 length 18/64 sgs 0/0 stream 0 flags 00110200
<task>-130 [000] d.h.. 4.037022: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961500(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.037136: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024e5b180 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.037147: xhci_queue_trb: CTRL: bRequestType 23 bRequest 03 wValue 0004 wIndex 0001 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.037150: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e58893a0(0x00000000e5889000) deq 0x00000000e5889390(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.037152: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.037154: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e58893b0(0x00000000e5889000) deq 0x00000000e5889390(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.037156: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-130 [000] d.h.. 4.037168: xhci_handle_event: EVENT: TRB 00000000e58893a0 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-130 [000] d.h.. 4.037172: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-130 [000] d.h.. 4.037176: xhci_inc_deq: CTRL ffffff80259b6880: enq 0x00000000e58893b0(0x00000000e5889000) deq 0x00000000e58893b0(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-130 [000] d.h.. 4.037179: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024e5b180 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-130 [000] d.h.. 4.037182: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961510(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.050513: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024e5b180 pipe 2147484544 slot 2 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.050532: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0001 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.050536: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e58893c0(0x00000000e5889000) deq 0x00000000e58893b0(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.050538: xhci_queue_trb: CTRL: Buffer 00000000e5943300 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.050540: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e58893d0(0x00000000e5889000) deq 0x00000000e58893b0(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.050542: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.050544: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e58893e0(0x00000000e5889000) deq 0x00000000e58893b0(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.050547: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-188 [000] d.h.. 4.050576: xhci_handle_event: EVENT: TRB 00000000e58893d0 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-188 [000] d.h.. 4.050585: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-188 [000] d.h.. 4.050595: xhci_inc_deq: CTRL ffffff80259b6880: enq 0x00000000e58893e0(0x00000000e5889000) deq 0x00000000e58893e0(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-188 [000] d.h.. 4.050602: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024e5b180 pipe 2147484544 slot 2 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-188 [000] d.h.. 4.050613: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961520(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.066514: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024e5b240 pipe 2147484544 slot 2 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.066530: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0001 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.066533: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e58893f0(0x00000000e5889000) deq 0x00000000e58893e0(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.066536: xhci_queue_trb: CTRL: Buffer 00000000e5943300 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.066538: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889400(0x00000000e5889000) deq 0x00000000e58893e0(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.066539: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.066541: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889410(0x00000000e5889000) deq 0x00000000e58893e0(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.066544: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<idle>-0 [000] d.h.. 4.066582: xhci_handle_event: EVENT: TRB 00000000e5889400 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.066590: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.066597: xhci_inc_deq: CTRL ffffff80259b6880: enq 0x00000000e5889410(0x00000000e5889000) deq 0x00000000e5889410(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.066603: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024e5b240 pipe 2147484544 slot 2 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.066613: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961530(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.066686: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024e5b240 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.066691: xhci_queue_trb: CTRL: bRequestType 23 bRequest 01 wValue 0014 wIndex 0001 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.066694: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889420(0x00000000e5889000) deq 0x00000000e5889410(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.066695: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.066698: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889430(0x00000000e5889000) deq 0x00000000e5889410(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.066700: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<idle>-0 [000] d.h.. 4.066721: xhci_handle_event: EVENT: TRB 00000000e5889420 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.066725: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.066729: xhci_inc_deq: CTRL ffffff80259b6880: enq 0x00000000e5889430(0x00000000e5889000) deq 0x00000000e5889430(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.066731: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024e5b240 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.066735: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961540(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.122818: xhci_discover_or_reset_device: RS 00012 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<task>-59 [001] d.... 4.122836: xhci_queue_trb: CMD: Reset Device Command: slot 3 flags C
<task>-59 [001] d.... 4.122847: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e3913190(0x00000000e3913000) deq 0x00000000e3913180(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.122851: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 4.127458: xhci_handle_event: EVENT: TRB 00000000e3913180 status 'Context State Error' len 0 slot 3 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 4.127469: xhci_handle_command: CMD: Reset Device Command: slot 3 flags C
<idle>-0 [000] d.h.. 4.127479: xhci_handle_cmd_reset_dev: RS 00012 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<idle>-0 [000] d.h.. 4.127492: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e3913190(0x00000000e3913000) deq 0x00000000e3913190(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.127494: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961550(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.127531: xhci_setup_device_slot: RS 00012 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<task>-59 [001] ..... 4.127542: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e4e61000, ctx_va=@ffffffc080f4d000
<task>-59 [001] ..... 4.127546: xhci_address_ctrl_ctx: Add: slot ep0
<task>-59 [001] d.... 4.127550: xhci_setup_device: vdev ffffff8027030000 ctx e4e61000 | e5a01000 num 0 state 5 speed 3 port 1 level 3 slot 3
<task>-59 [001] d.... 4.127558: xhci_queue_trb: CMD: Address Device Command: ctx 00000000e4e61000 slot 3 flags b:C
<task>-59 [001] d.... 4.127562: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e39131a0(0x00000000e3913000) deq 0x00000000e3913190(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.127565: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-213 [000] d.h.. 4.127584: xhci_handle_event: EVENT: TRB 00000000e3913190 status 'Success' len 0 slot 3 ep 0 type 'Command Completion Event' flags e:C
<task>-213 [000] d.h.. 4.127587: xhci_handle_command: CMD: Address Device Command: ctx 00000000e4e61000 slot 3 flags b:C
<task>-213 [000] d.h.. 4.127590: xhci_handle_cmd_addr_dev: RS 00012 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 3 State addressed
<task>-213 [000] d.h.. 4.127599: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e39131a0(0x00000000e3913000) deq 0x00000000e39131a0(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-213 [000] d.h.. 4.127601: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961560(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.127618: xhci_dbg_address: Successful setup address command
<task>-59 [001] ..... 4.127624: xhci_dbg_address: Op regs DCBAA ptr = 0x000000e38fc000
<task>-59 [001] ..... 4.127631: xhci_dbg_address: Slot ID 3 dcbaa entry @ffffffc080c1d018 = 0x000000e5a01000
<task>-59 [001] ..... 4.127636: xhci_dbg_address: Output Context DMA address = 0xe5a01000
<task>-59 [001] ..... 4.127639: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e4e61000, ctx_va=@ffffffc080f4d000
<task>-59 [001] ..... 4.127641: xhci_address_ctx: ctx_64=0, ctx_type=1, ctx_dma=@e5a01000, ctx_va=@ffffffc081bce000
<task>-59 [001] ..... 4.127645: xhci_dbg_address: Internal device address = 3
<task>-59 [001] ..... 4.146541: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b240 pipe 2147484800 slot 3 length 0/18 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.146560: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0100 wIndex 0000 wLength 18 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.146564: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1040(0x00000000e58a1000) deq 0x00000000e58a1030(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.146567: xhci_queue_trb: CTRL: Buffer 00000000e5946080 length 18 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.146569: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1050(0x00000000e58a1000) deq 0x00000000e58a1030(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.146570: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.146572: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1060(0x00000000e58a1000) deq 0x00000000e58a1030(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.146575: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.146720: xhci_handle_event: EVENT: TRB 00000000e58a1050 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.146731: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.146737: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1060(0x00000000e58a1000) deq 0x00000000e58a1060(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.146743: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b240 pipe 2147484800 slot 3 length 18/18 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.146752: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961570(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.146853: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b240 pipe 2147484800 slot 3 length 0/9 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.146859: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0200 wIndex 0000 wLength 9 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.146862: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1070(0x00000000e58a1000) deq 0x00000000e58a1060(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.146863: xhci_queue_trb: CTRL: Buffer 00000000e4eef0f0 length 9 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.146865: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1080(0x00000000e58a1000) deq 0x00000000e58a1060(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.146867: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.146868: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1090(0x00000000e58a1000) deq 0x00000000e58a1060(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.146870: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.146910: xhci_handle_event: EVENT: TRB 00000000e58a1080 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.146915: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.146919: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1090(0x00000000e58a1000) deq 0x00000000e58a1090(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.146921: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b240 pipe 2147484800 slot 3 length 9/9 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.146925: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961580(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.146979: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b240 pipe 2147484800 slot 3 length 0/39 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.146983: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0200 wIndex 0000 wLength 39 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.146985: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a10a0(0x00000000e58a1000) deq 0x00000000e58a1090(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.146987: xhci_queue_trb: CTRL: Buffer 00000000e5a98880 length 39 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.146989: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a10b0(0x00000000e58a1000) deq 0x00000000e58a1090(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.146990: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.146992: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a10c0(0x00000000e58a1000) deq 0x00000000e58a1090(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.146994: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.147030: xhci_handle_event: EVENT: TRB 00000000e58a10b0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.147035: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.147038: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a10c0(0x00000000e58a1000) deq 0x00000000e58a10c0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.147041: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b240 pipe 2147484800 slot 3 length 39/39 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.147044: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961590(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] .N... 4.147704: xhci_ring_alloc: BULK ffffff8023ae9180: enq 0x00000000e4efe000(0x00000000e4efe000) deq 0x00000000e4efe000(0x00000000e4efe000) segs 2 stream 0 bounce 512 cycle 1
<task>-59 [001] .N... 4.147709: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 125 us max ESIT payload 0 CErr 3 Type Bulk IN burst 0 maxp 512 deq 00000000e4efe001 avg trb len 0
<task>-59 [001] .N... 4.147737: xhci_ring_alloc: BULK ffffff8023ae9480: enq 0x00000000e4e8c000(0x00000000e4e8c000) deq 0x00000000e4e8c000(0x00000000e4e8c000) segs 2 stream 0 bounce 512 cycle 1
<task>-59 [001] .N... 4.147738: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 125 us max ESIT payload 0 CErr 3 Type Bulk OUT burst 0 maxp 512 deq 00000000e4e8c001 avg trb len 0
<task>-59 [001] .N... 4.147759: xhci_ring_alloc: INTR ffffff8023ae9300: enq 0x00000000e4e59000(0x00000000e4e59000) deq 0x00000000e4e59000(0x00000000e4e59000) segs 2 stream 0 bounce 16 cycle 1
<task>-59 [001] .N... 4.147761: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 1000 us max ESIT payload 16 CErr 3 Type Int IN burst 0 maxp 16 deq 00000000e4e59001 avg trb len 16
<task>-59 [001] dN... 4.147776: xhci_configure_endpoint_ctrl_ctx: Add: slot 1in 2out 3in
<task>-59 [001] dN... 4.147778: xhci_configure_endpoint: RS 00012 high-speed Ctx Entries 7 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-59 [001] dN... 4.147787: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e4e61000 slot 3 flags d:C
<task>-59 [001] dN... 4.147789: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e39131b0(0x00000000e3913000) deq 0x00000000e39131a0(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-59 [001] dN... 4.147791: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 4.147992: xhci_handle_event: EVENT: TRB 00000000e39131a0 status 'Success' len 0 slot 3 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 4.147996: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e4e61000 slot 3 flags d:C
<idle>-0 [000] d.h.. 4.148009: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e39131b0(0x00000000e3913000) deq 0x00000000e39131b0(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.148011: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39615a0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.148278: xhci_dbg_context_change: Successful Endpoint Configure command
<task>-59 [001] d.... 4.148317: xhci_queue_trb: CMD: Stop Ring Command: slot 3 sp 0 ep 3 flags C
<task>-59 [001] d.... 4.148320: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e39131c0(0x00000000e3913000) deq 0x00000000e39131b0(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.148322: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] dNh.. 4.148456: xhci_handle_event: EVENT: TRB 00000000e4efe000 status 'Stopped - Length Invalid' len 0 slot 3 ep 3 type 'Transfer Event' flags e:C
<idle>-0 [000] dNh.. 4.148462: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39615b0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] dNh.. 4.148464: xhci_handle_event: EVENT: TRB 00000000e39131b0 status 'Success' len 0 slot 3 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] dNh.. 4.148466: xhci_handle_command: CMD: Stop Ring Command: slot 3 sp 0 ep 3 flags C
<idle>-0 [000] dNh.. 4.148480: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e39131c0(0x00000000e3913000) deq 0x00000000e39131c0(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] dNh.. 4.148482: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39615c0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.148796: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e5a02000 slot 3 flags d:C
<task>-59 [001] d.... 4.148799: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e39131d0(0x00000000e3913000) deq 0x00000000e39131c0(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.148801: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 4.148907: xhci_handle_event: EVENT: TRB 00000000e39131c0 status 'Success' len 0 slot 3 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 4.148910: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e5a02000 slot 3 flags d:C
<idle>-0 [000] d.h.. 4.148922: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e39131d0(0x00000000e3913000) deq 0x00000000e39131d0(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.148923: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39615d0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.148969: xhci_queue_trb: CMD: Stop Ring Command: slot 3 sp 0 ep 4 flags C
<task>-59 [001] d.... 4.148972: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e39131e0(0x00000000e3913000) deq 0x00000000e39131d0(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.148973: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 4.149010: xhci_handle_event: EVENT: TRB 00000000e4e8c000 status 'Stopped - Length Invalid' len 0 slot 3 ep 4 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.149014: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39615e0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.149015: xhci_handle_event: EVENT: TRB 00000000e39131d0 status 'Success' len 0 slot 3 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 4.149018: xhci_handle_command: CMD: Stop Ring Command: slot 3 sp 0 ep 4 flags C
<idle>-0 [000] d.h.. 4.149032: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e39131e0(0x00000000e3913000) deq 0x00000000e39131e0(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.149033: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39615f0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.149084: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e5a02000 slot 3 flags d:C
<task>-59 [001] d.... 4.149087: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e39131f0(0x00000000e3913000) deq 0x00000000e39131e0(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.149088: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 4.149271: xhci_handle_event: EVENT: TRB 00000000e39131e0 status 'Success' len 0 slot 3 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 4.149274: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e5a02000 slot 3 flags d:C
<idle>-0 [000] d.h.. 4.149286: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e39131f0(0x00000000e3913000) deq 0x00000000e39131f0(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.149287: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961600(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.149329: xhci_queue_trb: CMD: Stop Ring Command: slot 3 sp 0 ep 7 flags C
<task>-59 [001] d.... 4.149332: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e3913200(0x00000000e3913000) deq 0x00000000e39131f0(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.149334: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 4.149367: xhci_handle_event: EVENT: TRB 00000000e4e59000 status 'Stopped - Length Invalid' len 0 slot 3 ep 7 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.149371: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961610(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.149372: xhci_handle_event: EVENT: TRB 00000000e39131f0 status 'Success' len 0 slot 3 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 4.149375: xhci_handle_command: CMD: Stop Ring Command: slot 3 sp 0 ep 7 flags C
<idle>-0 [000] d.h.. 4.149388: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e3913200(0x00000000e3913000) deq 0x00000000e3913200(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.149389: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961620(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.149428: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e5a02000 slot 3 flags d:C
<task>-59 [001] d.... 4.149431: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e3913210(0x00000000e3913000) deq 0x00000000e3913200(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.149433: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 4.149535: xhci_handle_event: EVENT: TRB 00000000e3913200 status 'Success' len 0 slot 3 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 4.149538: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e5a02000 slot 3 flags d:C
<idle>-0 [000] d.h.. 4.149551: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e3913210(0x00000000e3913000) deq 0x00000000e3913210(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.149553: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961630(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.149619: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b240 pipe 2147484672 slot 3 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.149625: xhci_queue_trb: CTRL: bRequestType 00 bRequest 09 wValue 0001 wIndex 0000 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.149628: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a10d0(0x00000000e58a1000) deq 0x00000000e58a10c0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.149630: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.149632: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a10e0(0x00000000e58a1000) deq 0x00000000e58a10c0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.149635: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.151753: xhci_handle_event: EVENT: TRB 00000000e58a10d0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.151759: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.151764: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a10e0(0x00000000e58a1000) deq 0x00000000e58a10e0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.151769: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b240 pipe 2147484672 slot 3 length 0/0 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.151774: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961640(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] .N... 4.155443: xhci_ring_alloc: BULK ffffff8023ae9a80: enq 0x00000000e5aba000(0x00000000e5aba000) deq 0x00000000e5aba000(0x00000000e5aba000) segs 2 stream 0 bounce 512 cycle 1
<task>-59 [001] .N... 4.155449: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 125 us max ESIT payload 0 CErr 3 Type Bulk IN burst 0 maxp 512 deq 00000000e5aba001 avg trb len 0
<task>-59 [001] .N... 4.155472: xhci_ring_alloc: BULK ffffff8023ae9400: enq 0x00000000e5ab8000(0x00000000e5ab8000) deq 0x00000000e5ab8000(0x00000000e5ab8000) segs 2 stream 0 bounce 512 cycle 1
<task>-59 [001] .N... 4.155474: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 125 us max ESIT payload 0 CErr 3 Type Bulk OUT burst 0 maxp 512 deq 00000000e5ab8001 avg trb len 0
<task>-59 [001] .N... 4.155495: xhci_ring_alloc: INTR ffffff8023ae9280: enq 0x00000000e4e8f000(0x00000000e4e8f000) deq 0x00000000e4e8f000(0x00000000e4e8f000) segs 2 stream 0 bounce 16 cycle 1
<task>-59 [001] .N... 4.155496: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 1000 us max ESIT payload 16 CErr 3 Type Int IN burst 0 maxp 16 deq 00000000e4e8f001 avg trb len 16
<task>-59 [001] dN... 4.155510: xhci_configure_endpoint_ctrl_ctx: Drop: 1in 2out 3in, Add: slot 1in 2out 3in
<task>-59 [001] dN... 4.155513: xhci_configure_endpoint: RS 00012 high-speed Ctx Entries 7 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-59 [001] dN... 4.155522: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e4e61000 slot 3 flags d:C
<task>-59 [001] dN... 4.155525: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e3913220(0x00000000e3913000) deq 0x00000000e3913210(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-59 [001] dN... 4.155527: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 4.155735: xhci_handle_event: EVENT: TRB 00000000e3913210 status 'Success' len 0 slot 3 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 4.155740: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e4e61000 slot 3 flags d:C
<idle>-0 [000] d.h.. 4.155758: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e3913220(0x00000000e3913000) deq 0x00000000e3913220(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.155760: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961650(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.155804: xhci_dbg_context_change: Successful Endpoint Configure command
<task>-59 [001] ..... 4.155816: xhci_ring_free: BULK ffffff8023ae9180: enq 0x00000000e4efe000(0x00000000e4efe000) deq 0x00000000e4efe000(0x00000000e4efe000) segs 2 stream 0 bounce 512 cycle 1
<task>-59 [001] ..... 4.155824: xhci_ring_free: BULK ffffff8023ae9480: enq 0x00000000e4e8c000(0x00000000e4e8c000) deq 0x00000000e4e8c000(0x00000000e4e8c000) segs 2 stream 0 bounce 512 cycle 1
<task>-59 [001] ..... 4.155828: xhci_ring_free: INTR ffffff8023ae9300: enq 0x00000000e4e59000(0x00000000e4e59000) deq 0x00000000e4e59000(0x00000000e4e59000) segs 2 stream 0 bounce 16 cycle 1
<task>-59 [001] ..... 4.155844: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484672 slot 3 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.155851: xhci_queue_trb: CTRL: bRequestType 01 bRequest 0b wValue 0000 wIndex 0000 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.155854: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a10f0(0x00000000e58a1000) deq 0x00000000e58a10e0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.155855: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.155858: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1100(0x00000000e58a1000) deq 0x00000000e58a10e0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.155860: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.155898: xhci_handle_event: EVENT: TRB 00000000e58a10f0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.155905: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.155909: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1100(0x00000000e58a1000) deq 0x00000000e58a1100(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.155914: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484672 slot 3 length 0/0 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.155919: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961660(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.156223: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.156227: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0030 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.156230: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1110(0x00000000e58a1000) deq 0x00000000e58a1100(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.156232: xhci_queue_trb: CTRL: Buffer 00000000e5943600 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.156234: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1120(0x00000000e58a1000) deq 0x00000000e58a1100(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.156236: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.156238: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1130(0x00000000e58a1000) deq 0x00000000e58a1100(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.156239: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.156354: xhci_handle_event: EVENT: TRB 00000000e58a1120 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.156359: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.156363: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1130(0x00000000e58a1000) deq 0x00000000e58a1130(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.156366: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.156370: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961670(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.156433: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.156438: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0030 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.156440: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1140(0x00000000e58a1000) deq 0x00000000e58a1130(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.156441: xhci_queue_trb: CTRL: Buffer 0000000080000001 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.156444: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1150(0x00000000e58a1000) deq 0x00000000e58a1130(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.156445: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.156447: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1160(0x00000000e58a1000) deq 0x00000000e58a1130(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.156448: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.156485: xhci_handle_event: EVENT: TRB 00000000e58a1150 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.156489: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.156492: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1160(0x00000000e58a1000) deq 0x00000000e58a1160(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.156495: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.156498: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961680(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.156555: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.156559: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0030 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.156562: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1170(0x00000000e58a1000) deq 0x00000000e58a1160(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.156563: xhci_queue_trb: CTRL: Buffer 00000000e5943600 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.156565: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1180(0x00000000e58a1000) deq 0x00000000e58a1160(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.156566: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.156568: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1190(0x00000000e58a1000) deq 0x00000000e58a1160(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.156570: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.156607: xhci_handle_event: EVENT: TRB 00000000e58a1180 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.156611: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.156615: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1190(0x00000000e58a1000) deq 0x00000000e58a1190(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.156617: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.156620: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961690(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.156677: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.156681: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0034 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.156684: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a11a0(0x00000000e58a1000) deq 0x00000000e58a1190(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.156685: xhci_queue_trb: CTRL: Buffer 00000000e5943600 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.156687: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a11b0(0x00000000e58a1000) deq 0x00000000e58a1190(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.156688: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.156690: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a11c0(0x00000000e58a1000) deq 0x00000000e58a1190(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.156692: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.156728: xhci_handle_event: EVENT: TRB 00000000e58a11b0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.156732: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.156736: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a11c0(0x00000000e58a1000) deq 0x00000000e58a11c0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.156738: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.156742: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39616a0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.156800: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.156805: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0030 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.156807: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a11d0(0x00000000e58a1000) deq 0x00000000e58a11c0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.156808: xhci_queue_trb: CTRL: Buffer 0000000080000002 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.156810: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a11e0(0x00000000e58a1000) deq 0x00000000e58a11c0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.156811: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.156813: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a11f0(0x00000000e58a1000) deq 0x00000000e58a11c0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.156815: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.156852: xhci_handle_event: EVENT: TRB 00000000e58a11e0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.156857: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.156860: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a11f0(0x00000000e58a1000) deq 0x00000000e58a11f0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.156863: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.156866: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39616b0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.156922: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.156926: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0030 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.156928: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1200(0x00000000e58a1000) deq 0x00000000e58a11f0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.156930: xhci_queue_trb: CTRL: Buffer 00000000e5943600 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.156932: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1210(0x00000000e58a1000) deq 0x00000000e58a11f0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.156933: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.156935: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1220(0x00000000e58a1000) deq 0x00000000e58a11f0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.156936: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.156973: xhci_handle_event: EVENT: TRB 00000000e58a1210 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.156977: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.156981: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1220(0x00000000e58a1000) deq 0x00000000e58a1220(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.156983: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.156986: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39616c0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.157065: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.157069: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0034 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.157072: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1230(0x00000000e58a1000) deq 0x00000000e58a1220(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.157073: xhci_queue_trb: CTRL: Buffer 00000000e5943600 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.157075: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1240(0x00000000e58a1000) deq 0x00000000e58a1220(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.157076: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.157081: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1250(0x00000000e58a1000) deq 0x00000000e58a1220(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.157082: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.157193: xhci_handle_event: EVENT: TRB 00000000e58a1240 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.157198: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.157201: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1250(0x00000000e58a1000) deq 0x00000000e58a1250(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.157204: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.157207: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39616d0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.157264: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.157270: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0030 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.157272: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1260(0x00000000e58a1000) deq 0x00000000e58a1250(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.157274: xhci_queue_trb: CTRL: Buffer 0000000080000003 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.157276: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1270(0x00000000e58a1000) deq 0x00000000e58a1250(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.157277: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.157279: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1280(0x00000000e58a1000) deq 0x00000000e58a1250(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.157281: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.157317: xhci_handle_event: EVENT: TRB 00000000e58a1270 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.157321: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.157324: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1280(0x00000000e58a1000) deq 0x00000000e58a1280(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.157327: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.157331: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39616e0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.157390: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.157395: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0030 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.157398: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1290(0x00000000e58a1000) deq 0x00000000e58a1280(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.157399: xhci_queue_trb: CTRL: Buffer 00000000e5943600 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.157402: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a12a0(0x00000000e58a1000) deq 0x00000000e58a1280(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.157403: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.157405: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a12b0(0x00000000e58a1000) deq 0x00000000e58a1280(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.157406: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.157443: xhci_handle_event: EVENT: TRB 00000000e58a12a0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.157447: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.157451: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a12b0(0x00000000e58a1000) deq 0x00000000e58a12b0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.157453: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.157457: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39616f0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.157516: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.157522: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0034 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.157524: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a12c0(0x00000000e58a1000) deq 0x00000000e58a12b0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.157525: xhci_queue_trb: CTRL: Buffer 00000000e5943600 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.157527: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a12d0(0x00000000e58a1000) deq 0x00000000e58a12b0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.157529: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.157531: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a12e0(0x00000000e58a1000) deq 0x00000000e58a12b0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.157532: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.157569: xhci_handle_event: EVENT: TRB 00000000e58a12d0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.157573: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.157576: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a12e0(0x00000000e58a1000) deq 0x00000000e58a12e0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.157579: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.157582: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961700(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.157640: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.157644: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0030 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.157646: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a12f0(0x00000000e58a1000) deq 0x00000000e58a12e0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.157648: xhci_queue_trb: CTRL: Buffer 0000000080000004 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.157650: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1300(0x00000000e58a1000) deq 0x00000000e58a12e0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.157651: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.157653: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1310(0x00000000e58a1000) deq 0x00000000e58a12e0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.157655: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.157691: xhci_handle_event: EVENT: TRB 00000000e58a1300 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.157695: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.157698: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1310(0x00000000e58a1000) deq 0x00000000e58a1310(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.157701: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.157706: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961710(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.157764: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.157768: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0030 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.157770: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1320(0x00000000e58a1000) deq 0x00000000e58a1310(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.157772: xhci_queue_trb: CTRL: Buffer 00000000e5943600 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.157774: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1330(0x00000000e58a1000) deq 0x00000000e58a1310(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.157775: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.157777: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1340(0x00000000e58a1000) deq 0x00000000e58a1310(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.157779: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.157816: xhci_handle_event: EVENT: TRB 00000000e58a1330 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.157820: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.157823: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1340(0x00000000e58a1000) deq 0x00000000e58a1340(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.157826: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.157829: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961720(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.157889: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.157893: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0034 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.157895: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1350(0x00000000e58a1000) deq 0x00000000e58a1340(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.157897: xhci_queue_trb: CTRL: Buffer 00000000e5943600 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.157899: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1360(0x00000000e58a1000) deq 0x00000000e58a1340(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.157900: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.157902: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1370(0x00000000e58a1000) deq 0x00000000e58a1340(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.157904: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.157940: xhci_handle_event: EVENT: TRB 00000000e58a1360 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.157945: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.157948: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1370(0x00000000e58a1000) deq 0x00000000e58a1370(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.157950: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.157954: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961730(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.158011: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.158015: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0030 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.158017: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1380(0x00000000e58a1000) deq 0x00000000e58a1370(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.158019: xhci_queue_trb: CTRL: Buffer 0000000080000005 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.158021: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1390(0x00000000e58a1000) deq 0x00000000e58a1370(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.158022: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.158024: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a13a0(0x00000000e58a1000) deq 0x00000000e58a1370(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.158026: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.158126: xhci_handle_event: EVENT: TRB 00000000e58a1390 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.158134: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.158138: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a13a0(0x00000000e58a1000) deq 0x00000000e58a13a0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.158140: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.158144: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961740(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.158226: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.158230: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0030 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.158232: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a13b0(0x00000000e58a1000) deq 0x00000000e58a13a0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.158233: xhci_queue_trb: CTRL: Buffer 00000000e5943600 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.158236: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a13c0(0x00000000e58a1000) deq 0x00000000e58a13a0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.158237: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.158239: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a13d0(0x00000000e58a1000) deq 0x00000000e58a13a0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.158240: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.158278: xhci_handle_event: EVENT: TRB 00000000e58a13c0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.158283: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.158286: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a13d0(0x00000000e58a1000) deq 0x00000000e58a13d0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.158289: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.158293: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961750(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.158354: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.158358: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0034 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.158360: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a13e0(0x00000000e58a1000) deq 0x00000000e58a13d0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.158362: xhci_queue_trb: CTRL: Buffer 00000000e5943600 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.158364: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a13f0(0x00000000e58a1000) deq 0x00000000e58a13d0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.158365: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.158367: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1400(0x00000000e58a1000) deq 0x00000000e58a13d0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.158369: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.158405: xhci_handle_event: EVENT: TRB 00000000e58a13f0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.158409: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.158413: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1400(0x00000000e58a1000) deq 0x00000000e58a1400(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.158419: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.158422: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961760(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.158962: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.158968: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0030 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.158972: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1410(0x00000000e58a1000) deq 0x00000000e58a1400(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.158974: xhci_queue_trb: CTRL: Buffer 0000000080000006 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.158976: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1420(0x00000000e58a1000) deq 0x00000000e58a1400(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.158977: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.158979: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1430(0x00000000e58a1000) deq 0x00000000e58a1400(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.158980: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] dNh.. 4.159057: xhci_handle_event: EVENT: TRB 00000000e58a1420 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] dNh.. 4.159063: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] dNh.. 4.159067: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1430(0x00000000e58a1000) deq 0x00000000e58a1430(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] dNh.. 4.159070: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] dNh.. 4.159074: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961770(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.159599: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.159605: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0030 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.159607: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1440(0x00000000e58a1000) deq 0x00000000e58a1430(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.159609: xhci_queue_trb: CTRL: Buffer 00000000e5943600 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.159611: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1450(0x00000000e58a1000) deq 0x00000000e58a1430(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.159612: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.159614: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1460(0x00000000e58a1000) deq 0x00000000e58a1430(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.159616: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.159731: xhci_handle_event: EVENT: TRB 00000000e58a1450 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.159737: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.159741: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1460(0x00000000e58a1000) deq 0x00000000e58a1460(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.159744: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.159748: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961780(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.159834: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.159839: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0034 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.159841: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1470(0x00000000e58a1000) deq 0x00000000e58a1460(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.159843: xhci_queue_trb: CTRL: Buffer 00000000e5943600 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.159845: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1480(0x00000000e58a1000) deq 0x00000000e58a1460(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.159846: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.159848: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1490(0x00000000e58a1000) deq 0x00000000e58a1460(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.159850: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.159887: xhci_handle_event: EVENT: TRB 00000000e58a1480 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.159891: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.159895: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1490(0x00000000e58a1000) deq 0x00000000e58a1490(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.159897: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.159901: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961790(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.159965: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.159969: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.159971: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a14a0(0x00000000e58a1000) deq 0x00000000e58a1490(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.159972: xhci_queue_trb: CTRL: Buffer 0000000000000008 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.159974: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a14b0(0x00000000e58a1000) deq 0x00000000e58a1490(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.159976: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.159978: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a14c0(0x00000000e58a1000) deq 0x00000000e58a1490(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.159979: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.160016: xhci_handle_event: EVENT: TRB 00000000e58a14b0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.160020: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.160024: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a14c0(0x00000000e58a1000) deq 0x00000000e58a14c0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.160026: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.160030: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39617a0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.174476: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.174483: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.174485: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a14d0(0x00000000e58a1000) deq 0x00000000e58a14c0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.174487: xhci_queue_trb: CTRL: Buffer 00000000e5943600 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.174489: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a14e0(0x00000000e58a1000) deq 0x00000000e58a14c0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.174490: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.174492: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a14f0(0x00000000e58a1000) deq 0x00000000e58a14c0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.174494: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.174607: xhci_handle_event: EVENT: TRB 00000000e58a14e0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.174612: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.174615: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a14f0(0x00000000e58a1000) deq 0x00000000e58a14f0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.174619: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.174623: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39617b0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.174686: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.174690: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0108 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.174693: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1500(0x00000000e58a1000) deq 0x00000000e58a14f0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.174694: xhci_queue_trb: CTRL: Buffer 00000000958c8212 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.174696: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1510(0x00000000e58a1000) deq 0x00000000e58a14f0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.174697: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.174699: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1520(0x00000000e58a1000) deq 0x00000000e58a14f0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.174701: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.174740: xhci_handle_event: EVENT: TRB 00000000e58a1510 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.174745: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.174748: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1520(0x00000000e58a1000) deq 0x00000000e58a1520(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.174751: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.174754: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39617c0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.174810: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.174814: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0104 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.174816: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1530(0x00000000e58a1000) deq 0x00000000e58a1520(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.174818: xhci_queue_trb: CTRL: Buffer 0000000000009d5a length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.174820: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1540(0x00000000e58a1000) deq 0x00000000e58a1520(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.174821: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.174823: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1550(0x00000000e58a1000) deq 0x00000000e58a1520(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.174824: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.174861: xhci_handle_event: EVENT: TRB 00000000e58a1540 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.174866: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.174869: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1550(0x00000000e58a1000) deq 0x00000000e58a1550(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.174872: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.174875: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39617d0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.174935: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.174939: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.174941: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1560(0x00000000e58a1000) deq 0x00000000e58a1550(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.174942: xhci_queue_trb: CTRL: Buffer 00000000e5943600 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.174945: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1570(0x00000000e58a1000) deq 0x00000000e58a1550(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.174946: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.174948: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1580(0x00000000e58a1000) deq 0x00000000e58a1550(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.174949: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.174986: xhci_handle_event: EVENT: TRB 00000000e58a1570 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.174990: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.174994: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1580(0x00000000e58a1000) deq 0x00000000e58a1580(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.174997: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.175000: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39617e0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.175060: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.175064: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.175066: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1590(0x00000000e58a1000) deq 0x00000000e58a1580(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.175068: xhci_queue_trb: CTRL: Buffer 0000000000001000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.175070: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a15a0(0x00000000e58a1000) deq 0x00000000e58a1580(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.175071: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.175073: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a15b0(0x00000000e58a1000) deq 0x00000000e58a1580(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.175074: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.175111: xhci_handle_event: EVENT: TRB 00000000e58a15a0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.175115: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.175121: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a15b0(0x00000000e58a1000) deq 0x00000000e58a15b0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.175124: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.175127: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39617f0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.175185: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.175189: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.175191: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a15c0(0x00000000e58a1000) deq 0x00000000e58a15b0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.175193: xhci_queue_trb: CTRL: Buffer 00000000e5943600 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.175195: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a15d0(0x00000000e58a1000) deq 0x00000000e58a15b0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.175196: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.175199: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a15e0(0x00000000e58a1000) deq 0x00000000e58a15b0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.175201: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.175237: xhci_handle_event: EVENT: TRB 00000000e58a15d0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.175241: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.175244: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a15e0(0x00000000e58a1000) deq 0x00000000e58a15e0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.175247: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.175250: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961800(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.175307: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.175312: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0038 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.175315: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a15f0(0x00000000e58a1000) deq 0x00000000e58a15e0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.175316: xhci_queue_trb: CTRL: Buffer 0000000000000025 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.175319: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1600(0x00000000e58a1000) deq 0x00000000e58a15e0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.175320: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.175322: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1610(0x00000000e58a1000) deq 0x00000000e58a15e0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.175323: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.175361: xhci_handle_event: EVENT: TRB 00000000e58a1600 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.175366: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.175369: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1610(0x00000000e58a1000) deq 0x00000000e58a1610(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.175371: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.175375: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961810(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.175432: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.175436: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0038 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.175438: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1620(0x00000000e58a1000) deq 0x00000000e58a1610(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.175440: xhci_queue_trb: CTRL: Buffer 00000000e5943600 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.175442: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1630(0x00000000e58a1000) deq 0x00000000e58a1610(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.175443: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.175445: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1640(0x00000000e58a1000) deq 0x00000000e58a1610(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.175447: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.175559: xhci_handle_event: EVENT: TRB 00000000e58a1630 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.175564: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.175567: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1640(0x00000000e58a1000) deq 0x00000000e58a1640(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.175570: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.175573: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961820(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.175653: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.175658: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 006c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.175661: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1650(0x00000000e58a1000) deq 0x00000000e58a1640(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.175662: xhci_queue_trb: CTRL: Buffer 0000000000002000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.175664: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1660(0x00000000e58a1000) deq 0x00000000e58a1640(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.175665: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.175667: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1670(0x00000000e58a1000) deq 0x00000000e58a1640(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.175669: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.175705: xhci_handle_event: EVENT: TRB 00000000e58a1660 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.175710: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.175713: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1670(0x00000000e58a1000) deq 0x00000000e58a1670(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.175716: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.175719: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961830(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.175776: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.175782: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 006c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.175785: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1680(0x00000000e58a1000) deq 0x00000000e58a1670(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.175786: xhci_queue_trb: CTRL: Buffer 00000000e5943600 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.175788: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1690(0x00000000e58a1000) deq 0x00000000e58a1670(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.175789: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.175791: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a16a0(0x00000000e58a1000) deq 0x00000000e58a1670(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.175793: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.175832: xhci_handle_event: EVENT: TRB 00000000e58a1690 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.175836: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.175839: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a16a0(0x00000000e58a1000) deq 0x00000000e58a16a0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.175842: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.175845: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961840(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.175904: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.175908: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.175910: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a16b0(0x00000000e58a1000) deq 0x00000000e58a16a0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.175912: xhci_queue_trb: CTRL: Buffer 00000000e5943600 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.175914: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a16c0(0x00000000e58a1000) deq 0x00000000e58a16a0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.175915: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.175917: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a16d0(0x00000000e58a1000) deq 0x00000000e58a16a0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.175918: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.175957: xhci_handle_event: EVENT: TRB 00000000e58a16c0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.175961: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.175965: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a16d0(0x00000000e58a1000) deq 0x00000000e58a16d0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.175967: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.175971: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961850(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.176027: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.176033: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.176035: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a16e0(0x00000000e58a1000) deq 0x00000000e58a16d0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.176037: xhci_queue_trb: CTRL: Buffer 0000000000001022 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.176039: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a16f0(0x00000000e58a1000) deq 0x00000000e58a16d0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.176040: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.176043: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1700(0x00000000e58a1000) deq 0x00000000e58a16d0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.176044: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.176080: xhci_handle_event: EVENT: TRB 00000000e58a16f0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.176084: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.176087: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1700(0x00000000e58a1000) deq 0x00000000e58a1700(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.176090: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.176094: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961860(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.176149: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.176152: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.176155: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1710(0x00000000e58a1000) deq 0x00000000e58a1700(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.176156: xhci_queue_trb: CTRL: Buffer 00000000e5943600 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.176159: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1720(0x00000000e58a1000) deq 0x00000000e58a1700(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.176160: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.176162: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1730(0x00000000e58a1000) deq 0x00000000e58a1700(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.176163: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.176200: xhci_handle_event: EVENT: TRB 00000000e58a1720 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.176204: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.176207: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1730(0x00000000e58a1000) deq 0x00000000e58a1730(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.176210: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.176213: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961870(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.176268: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.176272: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0008 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.176274: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1740(0x00000000e58a1000) deq 0x00000000e58a1730(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.176276: xhci_queue_trb: CTRL: Buffer 00000000ffffffff length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.176278: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1750(0x00000000e58a1000) deq 0x00000000e58a1730(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.176279: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.176281: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1760(0x00000000e58a1000) deq 0x00000000e58a1730(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.176282: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.176320: xhci_handle_event: EVENT: TRB 00000000e58a1750 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.176325: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.176328: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1760(0x00000000e58a1000) deq 0x00000000e58a1760(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.176331: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.176334: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961880(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.176391: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.176395: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0000 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.176397: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1770(0x00000000e58a1000) deq 0x00000000e58a1760(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.176399: xhci_queue_trb: CTRL: Buffer 00000000e5943600 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.176401: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1780(0x00000000e58a1000) deq 0x00000000e58a1760(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.176402: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.176404: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1790(0x00000000e58a1000) deq 0x00000000e58a1760(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.176405: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.176442: xhci_handle_event: EVENT: TRB 00000000e58a1780 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.176446: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.176450: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1790(0x00000000e58a1000) deq 0x00000000e58a1790(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.176452: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.176455: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961890(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.176513: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.176517: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0024 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.176521: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a17a0(0x00000000e58a1000) deq 0x00000000e58a1790(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.176522: xhci_queue_trb: CTRL: Buffer 00000000e5943600 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.176524: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a17b0(0x00000000e58a1000) deq 0x00000000e58a1790(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.176525: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.176527: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a17c0(0x00000000e58a1000) deq 0x00000000e58a1790(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.176529: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.176564: xhci_handle_event: EVENT: TRB 00000000e58a17b0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.176568: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.176572: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a17c0(0x00000000e58a1000) deq 0x00000000e58a17c0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.176574: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.176578: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39618a0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.176647: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.176651: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0024 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.176653: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a17d0(0x00000000e58a1000) deq 0x00000000e58a17c0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.176655: xhci_queue_trb: CTRL: Buffer 0000000001110007 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.176657: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a17e0(0x00000000e58a1000) deq 0x00000000e58a17c0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.176659: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.176661: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a17f0(0x00000000e58a1000) deq 0x00000000e58a17c0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.176662: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.176772: xhci_handle_event: EVENT: TRB 00000000e58a17e0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.176777: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.176780: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a17f0(0x00000000e58a1000) deq 0x00000000e58a17f0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.176783: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.176786: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39618b0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.176847: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.176853: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 011c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.176855: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1800(0x00000000e58a1000) deq 0x00000000e58a17f0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.176857: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.176859: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1810(0x00000000e58a1000) deq 0x00000000e58a17f0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.176860: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.176862: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1820(0x00000000e58a1000) deq 0x00000000e58a17f0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.176864: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.176900: xhci_handle_event: EVENT: TRB 00000000e58a1810 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.176905: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.176908: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1820(0x00000000e58a1000) deq 0x00000000e58a1820(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.176911: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.176915: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39618c0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.176968: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.176974: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 002c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.176976: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1830(0x00000000e58a1000) deq 0x00000000e58a1820(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.176978: xhci_queue_trb: CTRL: Buffer 0000000000f830a1 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.176980: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1840(0x00000000e58a1000) deq 0x00000000e58a1820(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.176981: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.176983: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1850(0x00000000e58a1000) deq 0x00000000e58a1820(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.176984: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.177021: xhci_handle_event: EVENT: TRB 00000000e58a1840 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.177025: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.177029: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1850(0x00000000e58a1000) deq 0x00000000e58a1850(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.177031: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.177034: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39618d0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.177093: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.177097: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.177099: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1860(0x00000000e58a1000) deq 0x00000000e58a1850(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.177101: xhci_queue_trb: CTRL: Buffer 00000000e5943600 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.177103: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1870(0x00000000e58a1000) deq 0x00000000e58a1850(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.177104: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.177106: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1880(0x00000000e58a1000) deq 0x00000000e58a1850(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.177108: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.177144: xhci_handle_event: EVENT: TRB 00000000e58a1870 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.177148: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.177151: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1880(0x00000000e58a1000) deq 0x00000000e58a1880(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.177154: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.177157: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39618e0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.177215: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.177221: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0120 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.177223: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1890(0x00000000e58a1000) deq 0x00000000e58a1880(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.177225: xhci_queue_trb: CTRL: Buffer 0000000000008100 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.177227: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a18a0(0x00000000e58a1000) deq 0x00000000e58a1880(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.177228: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.177230: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a18b0(0x00000000e58a1000) deq 0x00000000e58a1880(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.177231: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.177266: xhci_handle_event: EVENT: TRB 00000000e58a18a0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.177270: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.177273: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a18b0(0x00000000e58a1000) deq 0x00000000e58a18b0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.177276: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.177279: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39618f0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.177336: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.177340: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0130 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.177342: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a18c0(0x00000000e58a1000) deq 0x00000000e58a18b0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.177344: xhci_queue_trb: CTRL: Buffer 00000000e5943600 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.177346: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a18d0(0x00000000e58a1000) deq 0x00000000e58a18b0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.177347: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.177349: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a18e0(0x00000000e58a1000) deq 0x00000000e58a18b0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.177351: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.177385: xhci_handle_event: EVENT: TRB 00000000e58a18d0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.177389: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.177392: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a18e0(0x00000000e58a1000) deq 0x00000000e58a18e0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.177395: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.177399: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961900(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.177455: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.177460: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0130 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.177463: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a18f0(0x00000000e58a1000) deq 0x00000000e58a18e0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.177464: xhci_queue_trb: CTRL: Buffer 0000000000010001 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.177466: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1900(0x00000000e58a1000) deq 0x00000000e58a18e0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.177467: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.177469: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1910(0x00000000e58a1000) deq 0x00000000e58a18e0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.177471: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.177507: xhci_handle_event: EVENT: TRB 00000000e58a1900 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.177511: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.177514: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1910(0x00000000e58a1000) deq 0x00000000e58a1910(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.177517: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.177520: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961910(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.177574: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-59 [001] d.... 4.177579: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 010c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.177581: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1920(0x00000000e58a1000) deq 0x00000000e58a1910(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.177582: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.177584: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1930(0x00000000e58a1000) deq 0x00000000e58a1910(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.177585: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.177587: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1940(0x00000000e58a1000) deq 0x00000000e58a1910(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.177589: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-59 [001] ..... 4.177593: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b300 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-59 [001] d.... 4.177596: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0110 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.177604: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1950(0x00000000e58a1000) deq 0x00000000e58a1910(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.177607: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.177610: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1960(0x00000000e58a1000) deq 0x00000000e58a1910(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.177611: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.177614: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1970(0x00000000e58a1000) deq 0x00000000e58a1910(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.177615: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-59 [001] ..... 4.177621: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b3c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-59 [001] d.... 4.177624: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.177626: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1980(0x00000000e58a1000) deq 0x00000000e58a1910(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.177627: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.177629: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1990(0x00000000e58a1000) deq 0x00000000e58a1910(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.177630: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.177632: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a19a0(0x00000000e58a1000) deq 0x00000000e58a1910(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.177634: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-59 [001] ..... 4.177643: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b480 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.177645: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0068 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.177648: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a19b0(0x00000000e58a1000) deq 0x00000000e58a1910(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.177649: xhci_queue_trb: CTRL: Buffer 00000000e5943630 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.177651: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a19c0(0x00000000e58a1000) deq 0x00000000e58a1910(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.177652: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.177654: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a19d0(0x00000000e58a1000) deq 0x00000000e58a1910(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.177655: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.177686: xhci_handle_event: EVENT: TRB 00000000e58a1930 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.177691: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.177694: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a19d0(0x00000000e58a1000) deq 0x00000000e58a1940(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.177697: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b180 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<idle>-0 [000] d.h.. 4.177700: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961920(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.177702: xhci_handle_event: EVENT: TRB 00000000e58a1960 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.177705: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.177707: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a19d0(0x00000000e58a1000) deq 0x00000000e58a1970(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.177709: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b300 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<idle>-0 [000] d.h.. 4.177710: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961930(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.177712: xhci_handle_event: EVENT: TRB 00000000e58a1990 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.177715: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.177718: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a19d0(0x00000000e58a1000) deq 0x00000000e58a19a0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.177719: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b3c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<idle>-0 [000] d.h.. 4.177720: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961940(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.177722: xhci_handle_event: EVENT: TRB 00000000e58a19c0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.177724: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.177727: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a19d0(0x00000000e58a1000) deq 0x00000000e58a19d0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.177728: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b480 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.177730: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961950(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] .N... 4.187450: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b480 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] dN... 4.187464: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0068 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] dN... 4.187467: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a19e0(0x00000000e58a1000) deq 0x00000000e58a19d0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] dN... 4.187469: xhci_queue_trb: CTRL: Buffer 000000002594b638 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] dN... 4.187471: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a19f0(0x00000000e58a1000) deq 0x00000000e58a19d0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] dN... 4.187472: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] dN... 4.187475: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1a00(0x00000000e58a1000) deq 0x00000000e58a19d0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] dN... 4.187477: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.187507: xhci_handle_event: EVENT: TRB 00000000e58a19f0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.187514: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.187520: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1a00(0x00000000e58a1000) deq 0x00000000e58a1a00(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.187524: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b480 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.187529: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961960(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.188164: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b480 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.188174: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.188177: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1a10(0x00000000e58a1000) deq 0x00000000e58a1a00(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.188178: xhci_queue_trb: CTRL: Buffer 0000000000000008 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.188180: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1a20(0x00000000e58a1000) deq 0x00000000e58a1a00(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.188182: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.188184: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1a30(0x00000000e58a1000) deq 0x00000000e58a1a00(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.188186: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.188315: xhci_handle_event: EVENT: TRB 00000000e58a1a20 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.188323: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.188327: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1a30(0x00000000e58a1000) deq 0x00000000e58a1a30(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.188333: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b480 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.188338: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961970(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.189113: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b480 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.189124: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0010 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.189127: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1a40(0x00000000e58a1000) deq 0x00000000e58a1a30(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.189128: xhci_queue_trb: CTRL: Buffer 0000000000000004 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.189130: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1a50(0x00000000e58a1000) deq 0x00000000e58a1a30(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.189132: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.189134: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1a60(0x00000000e58a1000) deq 0x00000000e58a1a30(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.189136: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.189166: xhci_handle_event: EVENT: TRB 00000000e58a1a50 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.189174: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.189178: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1a60(0x00000000e58a1000) deq 0x00000000e58a1a60(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.189182: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b480 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.189189: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961980(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.189234: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b480 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.189238: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.189240: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1a70(0x00000000e58a1000) deq 0x00000000e58a1a60(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.189242: xhci_queue_trb: CTRL: Buffer 000000000000000c length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.189244: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1a80(0x00000000e58a1000) deq 0x00000000e58a1a60(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.189245: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.189248: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1a90(0x00000000e58a1000) deq 0x00000000e58a1a60(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.189249: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.189275: xhci_handle_event: EVENT: TRB 00000000e58a1a80 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.189280: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.189283: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1a90(0x00000000e58a1000) deq 0x00000000e58a1a90(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.189286: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b480 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.189290: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961990(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.189473: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b540 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.189479: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.189481: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1aa0(0x00000000e58a1000) deq 0x00000000e58a1a90(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.189483: xhci_queue_trb: CTRL: Buffer 00000000e5943640 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.189485: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1ab0(0x00000000e58a1000) deq 0x00000000e58a1a90(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.189486: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.189488: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1ac0(0x00000000e58a1000) deq 0x00000000e58a1a90(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.189489: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.189516: xhci_handle_event: EVENT: TRB 00000000e58a1ab0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.189521: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.189531: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1ac0(0x00000000e58a1000) deq 0x00000000e58a1ac0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.189534: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b540 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.189539: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39619a0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.190158: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b540 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.190163: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.190166: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1ad0(0x00000000e58a1000) deq 0x00000000e58a1ac0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.190167: xhci_queue_trb: CTRL: Buffer 00000000e5943640 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.190169: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1ae0(0x00000000e58a1000) deq 0x00000000e58a1ac0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.190171: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.190173: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1af0(0x00000000e58a1000) deq 0x00000000e58a1ac0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.190174: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-131 [000] d.h.. 4.190195: xhci_handle_event: EVENT: TRB 00000000e58a1ae0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-131 [000] d.h.. 4.190201: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-131 [000] d.h.. 4.190205: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1af0(0x00000000e58a1000) deq 0x00000000e58a1af0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-131 [000] d.h.. 4.190207: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b540 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-131 [000] d.h.. 4.190212: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39619b0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.190336: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b540 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.190341: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.190343: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1b00(0x00000000e58a1000) deq 0x00000000e58a1af0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.190345: xhci_queue_trb: CTRL: Buffer 0000000000000881 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.190347: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1b10(0x00000000e58a1000) deq 0x00000000e58a1af0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.190348: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.190350: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1b20(0x00000000e58a1000) deq 0x00000000e58a1af0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.190352: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-131 [000] d.h.. 4.190370: xhci_handle_event: EVENT: TRB 00000000e58a1b10 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-131 [000] d.h.. 4.190374: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-131 [000] d.h.. 4.190377: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1b20(0x00000000e58a1000) deq 0x00000000e58a1b20(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-131 [000] d.h.. 4.190380: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b540 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-131 [000] d.h.. 4.190384: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39619c0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.190794: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b540 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.190804: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.190809: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1b30(0x00000000e58a1000) deq 0x00000000e58a1b20(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.190811: xhci_queue_trb: CTRL: Buffer 00000000e5943640 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.190813: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1b40(0x00000000e58a1000) deq 0x00000000e58a1b20(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.190815: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.190817: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1b50(0x00000000e58a1000) deq 0x00000000e58a1b20(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.190818: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-130 [000] d.h.. 4.190846: xhci_handle_event: EVENT: TRB 00000000e58a1b40 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-130 [000] d.h.. 4.190851: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-130 [000] d.h.. 4.190856: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1b50(0x00000000e58a1000) deq 0x00000000e58a1b50(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-130 [000] d.h.. 4.190860: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b540 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-130 [000] d.h.. 4.190865: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39619d0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.191027: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b540 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.191034: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.191036: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1b60(0x00000000e58a1000) deq 0x00000000e58a1b50(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.191038: xhci_queue_trb: CTRL: Buffer 00000000e5943640 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.191040: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1b70(0x00000000e58a1000) deq 0x00000000e58a1b50(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.191041: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.191043: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1b80(0x00000000e58a1000) deq 0x00000000e58a1b50(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.191044: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-188 [000] d.h.. 4.191069: xhci_handle_event: EVENT: TRB 00000000e58a1b70 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-188 [000] d.h.. 4.191075: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-188 [000] d.h.. 4.191079: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1b80(0x00000000e58a1000) deq 0x00000000e58a1b80(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-188 [000] d.h.. 4.191082: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b540 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-188 [000] d.h.. 4.191086: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39619e0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.191225: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b540 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.191229: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.191231: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1b90(0x00000000e58a1000) deq 0x00000000e58a1b80(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.191233: xhci_queue_trb: CTRL: Buffer 00000000e5943640 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.191235: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1ba0(0x00000000e58a1000) deq 0x00000000e58a1b80(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.191236: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.191238: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1bb0(0x00000000e58a1000) deq 0x00000000e58a1b80(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.191240: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-188 [000] d.h.. 4.191257: xhci_handle_event: EVENT: TRB 00000000e58a1ba0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-188 [000] d.h.. 4.191261: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-188 [000] d.h.. 4.191265: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1bb0(0x00000000e58a1000) deq 0x00000000e58a1bb0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-188 [000] d.h.. 4.191267: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b540 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-188 [000] d.h.. 4.191270: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e39619f0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.191463: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b540 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.191468: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.191470: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1bc0(0x00000000e58a1000) deq 0x00000000e58a1bb0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.191472: xhci_queue_trb: CTRL: Buffer 00000000000008c1 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.191474: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1bd0(0x00000000e58a1000) deq 0x00000000e58a1bb0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.191475: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.191477: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1be0(0x00000000e58a1000) deq 0x00000000e58a1bb0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.191479: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-188 [000] d.h.. 4.191495: xhci_handle_event: EVENT: TRB 00000000e58a1bd0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-188 [000] d.h.. 4.191500: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-188 [000] d.h.. 4.191503: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1be0(0x00000000e58a1000) deq 0x00000000e58a1be0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-188 [000] d.h.. 4.191505: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b540 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-188 [000] d.h.. 4.191509: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961a00(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.191622: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b540 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.191627: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.191629: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1bf0(0x00000000e58a1000) deq 0x00000000e58a1be0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.191633: xhci_queue_trb: CTRL: Buffer 00000000e5943640 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.191636: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1c00(0x00000000e58a1000) deq 0x00000000e58a1be0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.191637: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.191639: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1c10(0x00000000e58a1000) deq 0x00000000e58a1be0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.191640: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-188 [000] d.h.. 4.191659: xhci_handle_event: EVENT: TRB 00000000e58a1c00 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-188 [000] d.h.. 4.191665: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-188 [000] d.h.. 4.191668: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1c10(0x00000000e58a1000) deq 0x00000000e58a1c10(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-188 [000] d.h.. 4.191671: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b540 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-188 [000] d.h.. 4.191676: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961a10(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.191721: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b540 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.191725: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.191727: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1c20(0x00000000e58a1000) deq 0x00000000e58a1c10(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.191729: xhci_queue_trb: CTRL: Buffer 00000000e5943640 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.191731: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1c30(0x00000000e58a1000) deq 0x00000000e58a1c10(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.191732: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.191734: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1c40(0x00000000e58a1000) deq 0x00000000e58a1c10(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.191736: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-188 [000] d.h.. 4.191753: xhci_handle_event: EVENT: TRB 00000000e58a1c30 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-188 [000] d.h.. 4.191757: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-188 [000] d.h.. 4.191760: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1c40(0x00000000e58a1000) deq 0x00000000e58a1c40(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-188 [000] d.h.. 4.191762: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b540 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-188 [000] d.h.. 4.191765: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961a20(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.217287: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.217306: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.217311: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1c50(0x00000000e58a1000) deq 0x00000000e58a1c40(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.217314: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.217316: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1c60(0x00000000e58a1000) deq 0x00000000e58a1c40(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.217317: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.217319: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1c70(0x00000000e58a1000) deq 0x00000000e58a1c40(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.217322: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.217506: xhci_handle_event: EVENT: TRB 00000000e58a1c60 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.217518: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.217524: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1c70(0x00000000e58a1000) deq 0x00000000e58a1c70(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.217532: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.217544: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961a30(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.217689: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.217696: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.217698: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1c80(0x00000000e58a1000) deq 0x00000000e58a1c70(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.217700: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.217702: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1c90(0x00000000e58a1000) deq 0x00000000e58a1c70(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.217704: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.217705: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1ca0(0x00000000e58a1000) deq 0x00000000e58a1c70(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.217708: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.217750: xhci_handle_event: EVENT: TRB 00000000e58a1c90 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.217756: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.217760: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1ca0(0x00000000e58a1000) deq 0x00000000e58a1ca0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.217762: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.217766: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961a40(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.217825: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.217830: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.217833: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1cb0(0x00000000e58a1000) deq 0x00000000e58a1ca0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.217834: xhci_queue_trb: CTRL: Buffer 0000000000000f83 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.217836: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1cc0(0x00000000e58a1000) deq 0x00000000e58a1ca0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.217838: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.217840: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1cd0(0x00000000e58a1000) deq 0x00000000e58a1ca0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.217841: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.217878: xhci_handle_event: EVENT: TRB 00000000e58a1cc0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.217883: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.217886: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1cd0(0x00000000e58a1000) deq 0x00000000e58a1cd0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.217889: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.217893: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961a50(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.217955: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.217961: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.217963: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1ce0(0x00000000e58a1000) deq 0x00000000e58a1cd0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.217965: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.217967: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1cf0(0x00000000e58a1000) deq 0x00000000e58a1cd0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.217968: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.217973: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1d00(0x00000000e58a1000) deq 0x00000000e58a1cd0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.217975: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.218011: xhci_handle_event: EVENT: TRB 00000000e58a1cf0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.218016: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.218020: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1d00(0x00000000e58a1000) deq 0x00000000e58a1d00(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.218022: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.218026: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961a60(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.218094: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.218098: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.218101: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1d10(0x00000000e58a1000) deq 0x00000000e58a1d00(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.218102: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.218104: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1d20(0x00000000e58a1000) deq 0x00000000e58a1d00(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.218106: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.218107: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1d30(0x00000000e58a1000) deq 0x00000000e58a1d00(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.218109: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.218147: xhci_handle_event: EVENT: TRB 00000000e58a1d20 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.218151: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.218155: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1d30(0x00000000e58a1000) deq 0x00000000e58a1d30(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.218158: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.218163: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961a70(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.218222: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.218227: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.218229: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1d40(0x00000000e58a1000) deq 0x00000000e58a1d30(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.218231: xhci_queue_trb: CTRL: Buffer 0000000000000f41 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.218233: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1d50(0x00000000e58a1000) deq 0x00000000e58a1d30(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.218234: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.218236: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1d60(0x00000000e58a1000) deq 0x00000000e58a1d30(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.218238: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.218272: xhci_handle_event: EVENT: TRB 00000000e58a1d50 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.218277: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.218280: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1d60(0x00000000e58a1000) deq 0x00000000e58a1d60(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.218283: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.218287: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961a80(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.218346: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.218350: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.218352: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1d70(0x00000000e58a1000) deq 0x00000000e58a1d60(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.218354: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.218356: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1d80(0x00000000e58a1000) deq 0x00000000e58a1d60(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.218357: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.218359: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1d90(0x00000000e58a1000) deq 0x00000000e58a1d60(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.218361: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.218396: xhci_handle_event: EVENT: TRB 00000000e58a1d80 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.218401: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.218405: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1d90(0x00000000e58a1000) deq 0x00000000e58a1d90(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.218412: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.218416: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961a90(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.218733: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.218741: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.218743: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1da0(0x00000000e58a1000) deq 0x00000000e58a1d90(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.218745: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.218747: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1db0(0x00000000e58a1000) deq 0x00000000e58a1d90(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.218748: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.218750: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1dc0(0x00000000e58a1000) deq 0x00000000e58a1d90(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.218752: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.218889: xhci_handle_event: EVENT: TRB 00000000e58a1db0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.218896: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.218900: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1dc0(0x00000000e58a1000) deq 0x00000000e58a1dc0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.218904: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.218911: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961aa0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.219016: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.219021: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.219024: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1dd0(0x00000000e58a1000) deq 0x00000000e58a1dc0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.219026: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.219028: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1de0(0x00000000e58a1000) deq 0x00000000e58a1dc0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.219029: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.219031: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1df0(0x00000000e58a1000) deq 0x00000000e58a1dc0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.219033: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.219073: xhci_handle_event: EVENT: TRB 00000000e58a1de0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.219078: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.219082: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1df0(0x00000000e58a1000) deq 0x00000000e58a1df0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.219085: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.219089: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961ab0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.219151: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.219155: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.219158: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1e00(0x00000000e58a1000) deq 0x00000000e58a1df0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.219159: xhci_queue_trb: CTRL: Buffer 0000000000000841 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.219161: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1e10(0x00000000e58a1000) deq 0x00000000e58a1df0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.219163: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.219165: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1e20(0x00000000e58a1000) deq 0x00000000e58a1df0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.219166: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.219202: xhci_handle_event: EVENT: TRB 00000000e58a1e10 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.219207: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.219211: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1e20(0x00000000e58a1000) deq 0x00000000e58a1e20(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.219214: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.219218: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961ac0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.219278: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.219283: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.219285: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1e30(0x00000000e58a1000) deq 0x00000000e58a1e20(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.219287: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.219289: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1e40(0x00000000e58a1000) deq 0x00000000e58a1e20(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.219290: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.219292: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1e50(0x00000000e58a1000) deq 0x00000000e58a1e20(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.219294: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.219334: xhci_handle_event: EVENT: TRB 00000000e58a1e40 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.219338: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.219342: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1e50(0x00000000e58a1000) deq 0x00000000e58a1e50(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.219345: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.219349: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961ad0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.219412: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.219416: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.219418: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1e60(0x00000000e58a1000) deq 0x00000000e58a1e50(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.219419: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.219421: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1e70(0x00000000e58a1000) deq 0x00000000e58a1e50(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.219423: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.219425: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1e80(0x00000000e58a1000) deq 0x00000000e58a1e50(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.219426: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.219462: xhci_handle_event: EVENT: TRB 00000000e58a1e70 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.219467: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.219471: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1e80(0x00000000e58a1000) deq 0x00000000e58a1e80(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.219474: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.219478: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961ae0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.219547: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.219552: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.219554: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1e90(0x00000000e58a1000) deq 0x00000000e58a1e80(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.219556: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.219558: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1ea0(0x00000000e58a1000) deq 0x00000000e58a1e80(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.219559: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.219561: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1eb0(0x00000000e58a1000) deq 0x00000000e58a1e80(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.219563: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.219599: xhci_handle_event: EVENT: TRB 00000000e58a1ea0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.219603: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.219607: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1eb0(0x00000000e58a1000) deq 0x00000000e58a1eb0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.219610: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.219614: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961af0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.219675: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.219679: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.219684: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1ec0(0x00000000e58a1000) deq 0x00000000e58a1eb0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.219686: xhci_queue_trb: CTRL: Buffer 0000000000000003 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.219688: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1ed0(0x00000000e58a1000) deq 0x00000000e58a1eb0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.219689: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.219691: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1ee0(0x00000000e58a1000) deq 0x00000000e58a1eb0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.219692: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.219729: xhci_handle_event: EVENT: TRB 00000000e58a1ed0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.219734: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.219737: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1ee0(0x00000000e58a1000) deq 0x00000000e58a1ee0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.219740: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.219744: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961b00(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.219800: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.219804: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.219806: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1ef0(0x00000000e58a1000) deq 0x00000000e58a1ee0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.219808: xhci_queue_trb: CTRL: Buffer 0000000000000b43 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.219810: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1f00(0x00000000e58a1000) deq 0x00000000e58a1ee0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.219811: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.219813: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1f10(0x00000000e58a1000) deq 0x00000000e58a1ee0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.219815: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.219854: xhci_handle_event: EVENT: TRB 00000000e58a1f00 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.219859: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.219862: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1f10(0x00000000e58a1000) deq 0x00000000e58a1f10(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.219865: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.219868: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961b10(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.219952: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.219958: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.219960: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1f20(0x00000000e58a1000) deq 0x00000000e58a1f10(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.219962: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.219964: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1f30(0x00000000e58a1000) deq 0x00000000e58a1f10(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.219965: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.219967: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1f40(0x00000000e58a1000) deq 0x00000000e58a1f10(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.219969: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.220084: xhci_handle_event: EVENT: TRB 00000000e58a1f30 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.220089: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.220093: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1f40(0x00000000e58a1000) deq 0x00000000e58a1f40(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.220096: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.220100: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961b20(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.220172: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.220177: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.220180: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1f50(0x00000000e58a1000) deq 0x00000000e58a1f40(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.220181: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.220183: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1f60(0x00000000e58a1000) deq 0x00000000e58a1f40(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.220185: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.220187: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1f70(0x00000000e58a1000) deq 0x00000000e58a1f40(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.220188: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.220226: xhci_handle_event: EVENT: TRB 00000000e58a1f60 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.220231: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.220234: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1f70(0x00000000e58a1000) deq 0x00000000e58a1f70(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.220237: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.220242: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961b30(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.220301: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.220305: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.220307: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1f80(0x00000000e58a1000) deq 0x00000000e58a1f70(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.220309: xhci_queue_trb: CTRL: Buffer 0000000000000014 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.220311: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1f90(0x00000000e58a1000) deq 0x00000000e58a1f70(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.220313: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.220315: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1fa0(0x00000000e58a1000) deq 0x00000000e58a1f70(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.220316: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.220353: xhci_handle_event: EVENT: TRB 00000000e58a1f90 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.220357: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.220360: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1fa0(0x00000000e58a1000) deq 0x00000000e58a1fa0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.220363: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.220367: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961b40(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.220425: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.220429: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.220432: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1fb0(0x00000000e58a1000) deq 0x00000000e58a1fa0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.220433: xhci_queue_trb: CTRL: Buffer 0000000000000b83 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.220435: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1fc0(0x00000000e58a1000) deq 0x00000000e58a1fa0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.220436: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.220438: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1fd0(0x00000000e58a1000) deq 0x00000000e58a1fa0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.220440: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.220475: xhci_handle_event: EVENT: TRB 00000000e58a1fc0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.220480: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.220485: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1fd0(0x00000000e58a1000) deq 0x00000000e58a1fd0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.220488: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.220491: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961b50(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.220553: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.220557: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.220560: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1fe0(0x00000000e58a1000) deq 0x00000000e58a1fd0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.220562: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.220565: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00000(0x00000000e4f00000) deq 0x00000000e58a1fd0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.220566: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.220568: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00010(0x00000000e4f00000) deq 0x00000000e58a1fd0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.220569: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.220605: xhci_handle_event: EVENT: TRB 00000000e4f00000 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.220610: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.220613: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00010(0x00000000e4f00000) deq 0x00000000e4f00010(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.220616: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.220620: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961b60(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.220683: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.220688: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.220690: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00020(0x00000000e4f00000) deq 0x00000000e4f00010(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.220692: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.220694: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00030(0x00000000e4f00000) deq 0x00000000e4f00010(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.220695: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.220697: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00040(0x00000000e4f00000) deq 0x00000000e4f00010(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.220698: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.220734: xhci_handle_event: EVENT: TRB 00000000e4f00030 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.220739: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.220742: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00040(0x00000000e4f00000) deq 0x00000000e4f00040(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.220745: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.220748: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961b70(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.220807: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.220811: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.220814: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00050(0x00000000e4f00000) deq 0x00000000e4f00040(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.220815: xhci_queue_trb: CTRL: Buffer 0000000000004003 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.220817: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00060(0x00000000e4f00000) deq 0x00000000e4f00040(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.220818: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.220820: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00070(0x00000000e4f00000) deq 0x00000000e4f00040(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.220822: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.220857: xhci_handle_event: EVENT: TRB 00000000e4f00060 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.220862: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.220866: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00070(0x00000000e4f00000) deq 0x00000000e4f00070(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.220868: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.220873: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961b80(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.220934: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.220939: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.220941: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00080(0x00000000e4f00000) deq 0x00000000e4f00070(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.220943: xhci_queue_trb: CTRL: Buffer 0000000000000b43 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.220945: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00090(0x00000000e4f00000) deq 0x00000000e4f00070(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.220947: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.220950: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f000a0(0x00000000e4f00000) deq 0x00000000e4f00070(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.220951: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.221064: xhci_handle_event: EVENT: TRB 00000000e4f00090 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.221069: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.221073: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f000a0(0x00000000e4f00000) deq 0x00000000e4f000a0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.221076: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.221080: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961b90(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.221172: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.221177: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.221180: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f000b0(0x00000000e4f00000) deq 0x00000000e4f000a0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.221181: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.221183: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f000c0(0x00000000e4f00000) deq 0x00000000e4f000a0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.221184: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.221186: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f000d0(0x00000000e4f00000) deq 0x00000000e4f000a0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.221188: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.221228: xhci_handle_event: EVENT: TRB 00000000e4f000c0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.221233: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.221237: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f000d0(0x00000000e4f00000) deq 0x00000000e4f000d0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.221239: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.221243: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961ba0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.221308: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.221313: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.221315: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f000e0(0x00000000e4f00000) deq 0x00000000e4f000d0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.221316: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.221319: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f000f0(0x00000000e4f00000) deq 0x00000000e4f000d0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.221320: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.221322: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00100(0x00000000e4f00000) deq 0x00000000e4f000d0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.221323: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.221361: xhci_handle_event: EVENT: TRB 00000000e4f000f0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.221365: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.221369: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00100(0x00000000e4f00000) deq 0x00000000e4f00100(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.221371: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.221375: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961bb0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.221434: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.221438: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.221441: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00110(0x00000000e4f00000) deq 0x00000000e4f00100(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.221442: xhci_queue_trb: CTRL: Buffer 0000000000000b81 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.221444: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00120(0x00000000e4f00000) deq 0x00000000e4f00100(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.221446: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.221447: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00130(0x00000000e4f00000) deq 0x00000000e4f00100(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.221449: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.221484: xhci_handle_event: EVENT: TRB 00000000e4f00120 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.221489: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.221492: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00130(0x00000000e4f00000) deq 0x00000000e4f00130(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.221495: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.221499: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961bc0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.221559: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.221564: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.221567: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00140(0x00000000e4f00000) deq 0x00000000e4f00130(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.221568: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.221571: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00150(0x00000000e4f00000) deq 0x00000000e4f00130(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.221572: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.221574: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00160(0x00000000e4f00000) deq 0x00000000e4f00130(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.221575: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.221612: xhci_handle_event: EVENT: TRB 00000000e4f00150 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.221617: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.221620: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00160(0x00000000e4f00000) deq 0x00000000e4f00160(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.221623: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.221627: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961bd0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.221687: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.221692: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.221694: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00170(0x00000000e4f00000) deq 0x00000000e4f00160(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.221696: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.221698: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00180(0x00000000e4f00000) deq 0x00000000e4f00160(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.221699: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.221701: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00190(0x00000000e4f00000) deq 0x00000000e4f00160(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.221702: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.221738: xhci_handle_event: EVENT: TRB 00000000e4f00180 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.221743: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.221746: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00190(0x00000000e4f00000) deq 0x00000000e4f00190(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.221749: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.221752: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961be0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.221973: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.221979: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0000 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.221982: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f001a0(0x00000000e4f00000) deq 0x00000000e4f00190(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.221984: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.221986: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f001b0(0x00000000e4f00000) deq 0x00000000e4f00190(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.221988: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.221990: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f001c0(0x00000000e4f00000) deq 0x00000000e4f00190(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.221991: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] dNh.. 4.222067: xhci_handle_event: EVENT: TRB 00000000e4f001b0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] dNh.. 4.222073: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] dNh.. 4.222077: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f001c0(0x00000000e4f00000) deq 0x00000000e4f001c0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] dNh.. 4.222080: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] dNh.. 4.222084: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961bf0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.222194: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.222200: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.222202: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f001d0(0x00000000e4f00000) deq 0x00000000e4f001c0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.222204: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.222206: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f001e0(0x00000000e4f00000) deq 0x00000000e4f001c0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.222207: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.222209: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f001f0(0x00000000e4f00000) deq 0x00000000e4f001c0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.222211: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-131 [000] d.h.. 4.222229: xhci_handle_event: EVENT: TRB 00000000e4f001e0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-131 [000] d.h.. 4.222233: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-131 [000] d.h.. 4.222237: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f001f0(0x00000000e4f00000) deq 0x00000000e4f001f0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-131 [000] d.h.. 4.222240: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-131 [000] d.h.. 4.222243: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961c00(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.222842: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.222854: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.222857: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00200(0x00000000e4f00000) deq 0x00000000e4f001f0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.222858: xhci_queue_trb: CTRL: Buffer 0000000000000c81 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.222860: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00210(0x00000000e4f00000) deq 0x00000000e4f001f0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.222862: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.222864: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00220(0x00000000e4f00000) deq 0x00000000e4f001f0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.222866: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] dNh.. 4.222926: xhci_handle_event: EVENT: TRB 00000000e4f00210 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] dNh.. 4.222933: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] dNh.. 4.222938: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00220(0x00000000e4f00000) deq 0x00000000e4f00220(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] dNh.. 4.222943: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] dNh.. 4.222950: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961c10(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.223054: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.223059: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.223062: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00230(0x00000000e4f00000) deq 0x00000000e4f00220(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.223064: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.223066: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00240(0x00000000e4f00000) deq 0x00000000e4f00220(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.223067: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.223069: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00250(0x00000000e4f00000) deq 0x00000000e4f00220(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.223070: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.223108: xhci_handle_event: EVENT: TRB 00000000e4f00240 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.223113: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.223116: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00250(0x00000000e4f00000) deq 0x00000000e4f00250(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.223119: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.223127: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961c20(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.223193: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.223197: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.223201: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00260(0x00000000e4f00000) deq 0x00000000e4f00250(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.223202: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.223204: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00270(0x00000000e4f00000) deq 0x00000000e4f00250(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.223205: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.223207: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00280(0x00000000e4f00000) deq 0x00000000e4f00250(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.223209: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.223346: xhci_handle_event: EVENT: TRB 00000000e4f00270 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.223352: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.223356: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00280(0x00000000e4f00000) deq 0x00000000e4f00280(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.223359: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.223364: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961c30(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.223460: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.223466: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.223468: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00290(0x00000000e4f00000) deq 0x00000000e4f00280(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.223470: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.223472: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f002a0(0x00000000e4f00000) deq 0x00000000e4f00280(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.223473: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.223475: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f002b0(0x00000000e4f00000) deq 0x00000000e4f00280(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.223476: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.223515: xhci_handle_event: EVENT: TRB 00000000e4f002a0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.223520: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.223524: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f002b0(0x00000000e4f00000) deq 0x00000000e4f002b0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.223527: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.223531: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961c40(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.223592: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.223597: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.223600: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f002c0(0x00000000e4f00000) deq 0x00000000e4f002b0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.223601: xhci_queue_trb: CTRL: Buffer 0000000000000801 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.223603: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f002d0(0x00000000e4f00000) deq 0x00000000e4f002b0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.223604: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.223606: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f002e0(0x00000000e4f00000) deq 0x00000000e4f002b0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.223608: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.223644: xhci_handle_event: EVENT: TRB 00000000e4f002d0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.223648: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.223652: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f002e0(0x00000000e4f00000) deq 0x00000000e4f002e0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.223655: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.223659: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961c50(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.223717: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.223722: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.223724: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f002f0(0x00000000e4f00000) deq 0x00000000e4f002e0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.223725: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.223727: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00300(0x00000000e4f00000) deq 0x00000000e4f002e0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.223729: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.223731: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00310(0x00000000e4f00000) deq 0x00000000e4f002e0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.223732: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.223768: xhci_handle_event: EVENT: TRB 00000000e4f00300 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.223773: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.223776: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00310(0x00000000e4f00000) deq 0x00000000e4f00310(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.223779: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.223783: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961c60(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.223844: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.223850: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.223852: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00320(0x00000000e4f00000) deq 0x00000000e4f00310(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.223854: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.223856: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00330(0x00000000e4f00000) deq 0x00000000e4f00310(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.223857: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.223859: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00340(0x00000000e4f00000) deq 0x00000000e4f00310(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.223860: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.223897: xhci_handle_event: EVENT: TRB 00000000e4f00330 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.223901: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.223905: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00340(0x00000000e4f00000) deq 0x00000000e4f00340(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.223907: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.223911: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961c70(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.223974: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.223978: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.223980: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00350(0x00000000e4f00000) deq 0x00000000e4f00340(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.223982: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.223984: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00360(0x00000000e4f00000) deq 0x00000000e4f00340(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.223985: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.223987: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00370(0x00000000e4f00000) deq 0x00000000e4f00340(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.223989: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.224025: xhci_handle_event: EVENT: TRB 00000000e4f00360 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.224029: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.224033: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00370(0x00000000e4f00000) deq 0x00000000e4f00370(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.224035: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.224039: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961c80(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.224098: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.224103: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.224105: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00380(0x00000000e4f00000) deq 0x00000000e4f00370(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.224107: xhci_queue_trb: CTRL: Buffer 000000000000b200 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.224109: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00390(0x00000000e4f00000) deq 0x00000000e4f00370(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.224110: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.224112: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f003a0(0x00000000e4f00000) deq 0x00000000e4f00370(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.224114: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.224149: xhci_handle_event: EVENT: TRB 00000000e4f00390 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.224154: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.224157: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f003a0(0x00000000e4f00000) deq 0x00000000e4f003a0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.224160: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.224163: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961c90(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.224219: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.224224: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.224226: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f003b0(0x00000000e4f00000) deq 0x00000000e4f003a0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.224228: xhci_queue_trb: CTRL: Buffer 0000000000000803 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.224230: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f003c0(0x00000000e4f00000) deq 0x00000000e4f003a0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.224231: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.224234: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f003d0(0x00000000e4f00000) deq 0x00000000e4f003a0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.224235: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.224269: xhci_handle_event: EVENT: TRB 00000000e4f003c0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.224274: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.224278: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f003d0(0x00000000e4f00000) deq 0x00000000e4f003d0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.224280: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.224284: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961ca0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.224346: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.224350: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.224353: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f003e0(0x00000000e4f00000) deq 0x00000000e4f003d0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.224354: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.224357: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f003f0(0x00000000e4f00000) deq 0x00000000e4f003d0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.224358: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.224360: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00400(0x00000000e4f00000) deq 0x00000000e4f003d0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.224361: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.224484: xhci_handle_event: EVENT: TRB 00000000e4f003f0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.224489: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.224493: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00400(0x00000000e4f00000) deq 0x00000000e4f00400(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.224496: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.224500: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961cb0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.238573: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.238592: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.238596: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00410(0x00000000e4f00000) deq 0x00000000e4f00400(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.238599: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.238601: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00420(0x00000000e4f00000) deq 0x00000000e4f00400(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.238603: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.238608: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00430(0x00000000e4f00000) deq 0x00000000e4f00400(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.238611: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.238754: xhci_handle_event: EVENT: TRB 00000000e4f00420 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.238764: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.238771: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00430(0x00000000e4f00000) deq 0x00000000e4f00430(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.238780: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.238793: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961cc0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.238904: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.238911: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.238914: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00440(0x00000000e4f00000) deq 0x00000000e4f00430(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.238916: xhci_queue_trb: CTRL: Buffer 0000000000000801 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.238918: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00450(0x00000000e4f00000) deq 0x00000000e4f00430(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.238919: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.238921: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00460(0x00000000e4f00000) deq 0x00000000e4f00430(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.238923: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.238962: xhci_handle_event: EVENT: TRB 00000000e4f00450 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.238968: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.238971: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00460(0x00000000e4f00000) deq 0x00000000e4f00460(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.238974: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.238979: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961cd0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.239045: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.239050: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.239053: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00470(0x00000000e4f00000) deq 0x00000000e4f00460(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.239054: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.239056: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00480(0x00000000e4f00000) deq 0x00000000e4f00460(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.239058: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.239060: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00490(0x00000000e4f00000) deq 0x00000000e4f00460(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.239061: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.239098: xhci_handle_event: EVENT: TRB 00000000e4f00480 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.239103: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.239106: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00490(0x00000000e4f00000) deq 0x00000000e4f00490(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.239110: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.239114: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961ce0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.239175: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.239180: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.239183: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f004a0(0x00000000e4f00000) deq 0x00000000e4f00490(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.239184: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.239187: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f004b0(0x00000000e4f00000) deq 0x00000000e4f00490(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.239188: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.239190: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f004c0(0x00000000e4f00000) deq 0x00000000e4f00490(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.239191: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.239228: xhci_handle_event: EVENT: TRB 00000000e4f004b0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.239232: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.239236: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f004c0(0x00000000e4f00000) deq 0x00000000e4f004c0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.239238: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.239242: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961cf0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.246575: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.246594: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.246598: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f004d0(0x00000000e4f00000) deq 0x00000000e4f004c0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.246601: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.246603: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f004e0(0x00000000e4f00000) deq 0x00000000e4f004c0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.246604: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.246606: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f004f0(0x00000000e4f00000) deq 0x00000000e4f004c0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.246609: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.246759: xhci_handle_event: EVENT: TRB 00000000e4f004e0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.246770: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.246778: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f004f0(0x00000000e4f00000) deq 0x00000000e4f004f0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.246786: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.246797: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961d00(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.246904: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.246910: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.246914: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00500(0x00000000e4f00000) deq 0x00000000e4f004f0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.246915: xhci_queue_trb: CTRL: Buffer 0000000000000c41 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.246917: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00510(0x00000000e4f00000) deq 0x00000000e4f004f0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.246919: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.246921: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00520(0x00000000e4f00000) deq 0x00000000e4f004f0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.246923: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.246965: xhci_handle_event: EVENT: TRB 00000000e4f00510 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.246971: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.246975: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00520(0x00000000e4f00000) deq 0x00000000e4f00520(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.246978: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.246983: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961d10(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.247050: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.247055: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.247057: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00530(0x00000000e4f00000) deq 0x00000000e4f00520(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.247059: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.247061: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00540(0x00000000e4f00000) deq 0x00000000e4f00520(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.247062: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.247064: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00550(0x00000000e4f00000) deq 0x00000000e4f00520(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.247066: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.247104: xhci_handle_event: EVENT: TRB 00000000e4f00540 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.247109: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.247112: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00550(0x00000000e4f00000) deq 0x00000000e4f00550(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.247115: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.247119: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961d20(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.247184: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.247189: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.247192: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00560(0x00000000e4f00000) deq 0x00000000e4f00550(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.247194: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.247196: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00570(0x00000000e4f00000) deq 0x00000000e4f00550(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.247197: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.247199: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00580(0x00000000e4f00000) deq 0x00000000e4f00550(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.247200: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.247237: xhci_handle_event: EVENT: TRB 00000000e4f00570 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.247242: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.247246: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00580(0x00000000e4f00000) deq 0x00000000e4f00580(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.247249: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.247253: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961d30(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.247323: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.247328: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.247331: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00590(0x00000000e4f00000) deq 0x00000000e4f00580(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.247332: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.247335: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f005a0(0x00000000e4f00000) deq 0x00000000e4f00580(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.247336: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.247338: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f005b0(0x00000000e4f00000) deq 0x00000000e4f00580(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.247339: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.247376: xhci_handle_event: EVENT: TRB 00000000e4f005a0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.247381: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.247384: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f005b0(0x00000000e4f00000) deq 0x00000000e4f005b0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.247387: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.247391: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961d40(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.247450: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.247455: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.247458: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f005c0(0x00000000e4f00000) deq 0x00000000e4f005b0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.247459: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.247461: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f005d0(0x00000000e4f00000) deq 0x00000000e4f005b0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.247463: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.247465: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f005e0(0x00000000e4f00000) deq 0x00000000e4f005b0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.247466: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.247588: xhci_handle_event: EVENT: TRB 00000000e4f005d0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.247594: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.247598: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f005e0(0x00000000e4f00000) deq 0x00000000e4f005e0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.247601: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.247606: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961d50(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.247694: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.247699: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.247704: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f005f0(0x00000000e4f00000) deq 0x00000000e4f005e0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.247705: xhci_queue_trb: CTRL: Buffer 0000000000000f83 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.247707: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00600(0x00000000e4f00000) deq 0x00000000e4f005e0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.247708: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.247711: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00610(0x00000000e4f00000) deq 0x00000000e4f005e0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.247712: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.247750: xhci_handle_event: EVENT: TRB 00000000e4f00600 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.247756: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.247759: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00610(0x00000000e4f00000) deq 0x00000000e4f00610(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.247762: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.247766: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961d60(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.247829: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.247833: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.247836: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00620(0x00000000e4f00000) deq 0x00000000e4f00610(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.247838: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.247840: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00630(0x00000000e4f00000) deq 0x00000000e4f00610(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.247841: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.247843: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00640(0x00000000e4f00000) deq 0x00000000e4f00610(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.247844: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.247880: xhci_handle_event: EVENT: TRB 00000000e4f00630 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.247885: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.247889: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00640(0x00000000e4f00000) deq 0x00000000e4f00640(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.247892: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.247896: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961d70(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.247964: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.247969: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.247971: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00650(0x00000000e4f00000) deq 0x00000000e4f00640(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.247973: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.247975: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00660(0x00000000e4f00000) deq 0x00000000e4f00640(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.247976: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.247978: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00670(0x00000000e4f00000) deq 0x00000000e4f00640(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.247979: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.248016: xhci_handle_event: EVENT: TRB 00000000e4f00660 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.248021: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.248024: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00670(0x00000000e4f00000) deq 0x00000000e4f00670(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.248027: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.248031: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961d80(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.248091: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.248096: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.248098: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00680(0x00000000e4f00000) deq 0x00000000e4f00670(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.248100: xhci_queue_trb: CTRL: Buffer 0000000000000f41 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.248102: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00690(0x00000000e4f00000) deq 0x00000000e4f00670(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.248103: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.248105: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f006a0(0x00000000e4f00000) deq 0x00000000e4f00670(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.248107: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.248142: xhci_handle_event: EVENT: TRB 00000000e4f00690 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.248148: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.248151: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f006a0(0x00000000e4f00000) deq 0x00000000e4f006a0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.248154: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.248158: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961d90(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.248217: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.248221: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.248224: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f006b0(0x00000000e4f00000) deq 0x00000000e4f006a0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.248225: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.248227: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f006c0(0x00000000e4f00000) deq 0x00000000e4f006a0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.248228: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.248230: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f006d0(0x00000000e4f00000) deq 0x00000000e4f006a0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.248232: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.248268: xhci_handle_event: EVENT: TRB 00000000e4f006c0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.248273: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.248276: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f006d0(0x00000000e4f00000) deq 0x00000000e4f006d0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.248279: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.248283: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961da0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.248345: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.248350: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.248352: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f006e0(0x00000000e4f00000) deq 0x00000000e4f006d0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.248354: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.248356: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f006f0(0x00000000e4f00000) deq 0x00000000e4f006d0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.248357: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.248359: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00700(0x00000000e4f00000) deq 0x00000000e4f006d0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.248361: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.248399: xhci_handle_event: EVENT: TRB 00000000e4f006f0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.248404: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.248407: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00700(0x00000000e4f00000) deq 0x00000000e4f00700(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.248410: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.248414: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961db0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.248479: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.248484: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.248486: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00710(0x00000000e4f00000) deq 0x00000000e4f00700(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.248487: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.248489: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00720(0x00000000e4f00000) deq 0x00000000e4f00700(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.248490: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.248492: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00730(0x00000000e4f00000) deq 0x00000000e4f00700(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.248494: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.248530: xhci_handle_event: EVENT: TRB 00000000e4f00720 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.248535: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.248539: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00730(0x00000000e4f00000) deq 0x00000000e4f00730(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.248541: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.248545: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961dc0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.248608: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.248612: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.248615: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00740(0x00000000e4f00000) deq 0x00000000e4f00730(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.248616: xhci_queue_trb: CTRL: Buffer 0000000000000801 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.248618: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00750(0x00000000e4f00000) deq 0x00000000e4f00730(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.248620: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.248622: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00760(0x00000000e4f00000) deq 0x00000000e4f00730(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.248623: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.248743: xhci_handle_event: EVENT: TRB 00000000e4f00750 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.248748: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.248752: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00760(0x00000000e4f00000) deq 0x00000000e4f00760(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.248754: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.248761: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961dd0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.248853: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.248859: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.248861: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00770(0x00000000e4f00000) deq 0x00000000e4f00760(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.248863: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.248865: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00780(0x00000000e4f00000) deq 0x00000000e4f00760(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.248866: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.248868: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00790(0x00000000e4f00000) deq 0x00000000e4f00760(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.248869: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.248909: xhci_handle_event: EVENT: TRB 00000000e4f00780 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.248913: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.248917: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00790(0x00000000e4f00000) deq 0x00000000e4f00790(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.248919: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.248924: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961de0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.248987: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.248992: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.248994: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f007a0(0x00000000e4f00000) deq 0x00000000e4f00790(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.248996: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.248998: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f007b0(0x00000000e4f00000) deq 0x00000000e4f00790(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.248999: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.249002: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f007c0(0x00000000e4f00000) deq 0x00000000e4f00790(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.249004: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.249040: xhci_handle_event: EVENT: TRB 00000000e4f007b0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.249045: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.249049: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f007c0(0x00000000e4f00000) deq 0x00000000e4f007c0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.249052: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.249056: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961df0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.249632: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.249643: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.249646: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f007d0(0x00000000e4f00000) deq 0x00000000e4f007c0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.249648: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.249650: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f007e0(0x00000000e4f00000) deq 0x00000000e4f007c0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.249651: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.249654: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f007f0(0x00000000e4f00000) deq 0x00000000e4f007c0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.249657: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] dNh.. 4.249761: xhci_handle_event: EVENT: TRB 00000000e4f007e0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] dNh.. 4.249769: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] dNh.. 4.249774: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f007f0(0x00000000e4f00000) deq 0x00000000e4f007f0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] dNh.. 4.249779: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] dNh.. 4.249787: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961e00(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.249903: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.249909: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.249912: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00800(0x00000000e4f00000) deq 0x00000000e4f007f0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.249914: xhci_queue_trb: CTRL: Buffer 0000000000000f41 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.249916: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00810(0x00000000e4f00000) deq 0x00000000e4f007f0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.249917: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.249919: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00820(0x00000000e4f00000) deq 0x00000000e4f007f0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.249921: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-131 [000] d.h.. 4.249944: xhci_handle_event: EVENT: TRB 00000000e4f00810 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-131 [000] d.h.. 4.249948: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-131 [000] d.h.. 4.249952: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00820(0x00000000e4f00000) deq 0x00000000e4f00820(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-131 [000] d.h.. 4.249955: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-131 [000] d.h.. 4.249959: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961e10(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.251129: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.251145: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.251149: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00830(0x00000000e4f00000) deq 0x00000000e4f00820(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.251151: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.251153: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00840(0x00000000e4f00000) deq 0x00000000e4f00820(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.251154: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.251156: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00850(0x00000000e4f00000) deq 0x00000000e4f00820(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.251159: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-105 [000] d.h.. 4.251186: xhci_handle_event: EVENT: TRB 00000000e4f00840 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-105 [000] d.h.. 4.251194: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-105 [000] d.h.. 4.251200: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00850(0x00000000e4f00000) deq 0x00000000e4f00850(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-105 [000] d.h.. 4.251205: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-105 [000] d.h.. 4.251215: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961e20(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.251283: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.251287: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.251290: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00860(0x00000000e4f00000) deq 0x00000000e4f00850(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.251291: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.251293: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00870(0x00000000e4f00000) deq 0x00000000e4f00850(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.251294: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.251296: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00880(0x00000000e4f00000) deq 0x00000000e4f00850(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.251298: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-105 [000] d.h.. 4.251319: xhci_handle_event: EVENT: TRB 00000000e4f00870 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-105 [000] d.h.. 4.251323: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-105 [000] d.h.. 4.251327: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00880(0x00000000e4f00000) deq 0x00000000e4f00880(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-105 [000] d.h.. 4.251329: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-105 [000] d.h.. 4.251333: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961e30(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.251481: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.251485: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.251488: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00890(0x00000000e4f00000) deq 0x00000000e4f00880(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.251489: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.251491: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f008a0(0x00000000e4f00000) deq 0x00000000e4f00880(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.251493: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.251495: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f008b0(0x00000000e4f00000) deq 0x00000000e4f00880(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.251499: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.251632: xhci_handle_event: EVENT: TRB 00000000e4f008a0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.251638: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.251642: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f008b0(0x00000000e4f00000) deq 0x00000000e4f008b0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.251645: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.251649: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961e40(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.251708: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.251712: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.251714: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f008c0(0x00000000e4f00000) deq 0x00000000e4f008b0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.251716: xhci_queue_trb: CTRL: Buffer 00000000000000d0 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.251718: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f008d0(0x00000000e4f00000) deq 0x00000000e4f008b0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.251720: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.251722: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f008e0(0x00000000e4f00000) deq 0x00000000e4f008b0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.251723: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-105 [000] d.h.. 4.251740: xhci_handle_event: EVENT: TRB 00000000e4f008d0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-105 [000] d.h.. 4.251744: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-105 [000] d.h.. 4.251750: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f008e0(0x00000000e4f00000) deq 0x00000000e4f008e0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-105 [000] d.h.. 4.251753: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-105 [000] d.h.. 4.251757: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961e50(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.251837: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.251841: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.251844: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f008f0(0x00000000e4f00000) deq 0x00000000e4f008e0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.251845: xhci_queue_trb: CTRL: Buffer 0000000000000f83 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.251847: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00900(0x00000000e4f00000) deq 0x00000000e4f008e0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.251849: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.251851: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00910(0x00000000e4f00000) deq 0x00000000e4f008e0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.251852: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.251969: xhci_handle_event: EVENT: TRB 00000000e4f00900 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.251975: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.251978: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00910(0x00000000e4f00000) deq 0x00000000e4f00910(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.251981: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.251985: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961e60(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.252055: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.252060: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.252062: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00920(0x00000000e4f00000) deq 0x00000000e4f00910(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.252064: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.252066: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00930(0x00000000e4f00000) deq 0x00000000e4f00910(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.252068: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.252070: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00940(0x00000000e4f00000) deq 0x00000000e4f00910(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.252071: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-105 [000] d.h.. 4.252088: xhci_handle_event: EVENT: TRB 00000000e4f00930 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-105 [000] d.h.. 4.252093: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-105 [000] d.h.. 4.252096: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00940(0x00000000e4f00000) deq 0x00000000e4f00940(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-105 [000] d.h.. 4.252099: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-105 [000] d.h.. 4.252103: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961e70(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.262624: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.262631: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.262634: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00950(0x00000000e4f00000) deq 0x00000000e4f00940(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.262636: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.262638: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00960(0x00000000e4f00000) deq 0x00000000e4f00940(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.262639: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.262641: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00970(0x00000000e4f00000) deq 0x00000000e4f00940(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.262643: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-46 [000] d.h.. 4.262661: xhci_handle_event: EVENT: TRB 00000000e4f00960 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-46 [000] d.h.. 4.262668: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-46 [000] d.h.. 4.262672: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00970(0x00000000e4f00000) deq 0x00000000e4f00970(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-46 [000] d.h.. 4.262676: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-46 [000] d.h.. 4.262680: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961e80(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.262731: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.262735: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.262740: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00980(0x00000000e4f00000) deq 0x00000000e4f00970(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.262742: xhci_queue_trb: CTRL: Buffer 0000000000000801 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.262744: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00990(0x00000000e4f00000) deq 0x00000000e4f00970(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.262745: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.262747: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f009a0(0x00000000e4f00000) deq 0x00000000e4f00970(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.262749: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-105 [000] d.h.. 4.262766: xhci_handle_event: EVENT: TRB 00000000e4f00990 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-105 [000] d.h.. 4.262770: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-105 [000] d.h.. 4.262774: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f009a0(0x00000000e4f00000) deq 0x00000000e4f009a0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-105 [000] d.h.. 4.262777: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-105 [000] d.h.. 4.262780: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961e90(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.262824: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.262828: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.262830: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f009b0(0x00000000e4f00000) deq 0x00000000e4f009a0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.262832: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.262834: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f009c0(0x00000000e4f00000) deq 0x00000000e4f009a0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.262835: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.262837: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f009d0(0x00000000e4f00000) deq 0x00000000e4f009a0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.262839: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-105 [000] d.h.. 4.262855: xhci_handle_event: EVENT: TRB 00000000e4f009c0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-105 [000] d.h.. 4.262859: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-105 [000] d.h.. 4.262863: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f009d0(0x00000000e4f00000) deq 0x00000000e4f009d0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-105 [000] d.h.. 4.262865: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-105 [000] d.h.. 4.262868: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961ea0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.262943: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.262947: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.262949: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f009e0(0x00000000e4f00000) deq 0x00000000e4f009d0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.262951: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.262953: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f009f0(0x00000000e4f00000) deq 0x00000000e4f009d0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.262954: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.262956: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00a00(0x00000000e4f00000) deq 0x00000000e4f009d0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.262958: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-15 [000] d.h.. 4.262974: xhci_handle_event: EVENT: TRB 00000000e4f009f0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-15 [000] d.h.. 4.262979: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-15 [000] d.h.. 4.262984: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00a00(0x00000000e4f00000) deq 0x00000000e4f00a00(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-15 [000] d.h.. 4.262987: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-15 [000] d.h.. 4.262990: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961eb0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.263122: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.263128: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.263130: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00a10(0x00000000e4f00000) deq 0x00000000e4f00a00(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.263132: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.263134: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00a20(0x00000000e4f00000) deq 0x00000000e4f00a00(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.263135: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.263137: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00a30(0x00000000e4f00000) deq 0x00000000e4f00a00(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.263139: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] dNh.. 4.263209: xhci_handle_event: EVENT: TRB 00000000e4f00a20 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] dNh.. 4.263215: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] dNh.. 4.263218: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00a30(0x00000000e4f00000) deq 0x00000000e4f00a30(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] dNh.. 4.263221: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] dNh.. 4.263225: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961ec0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.263272: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.263276: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.263278: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00a40(0x00000000e4f00000) deq 0x00000000e4f00a30(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.263280: xhci_queue_trb: CTRL: Buffer 0000000000003800 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.263282: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00a50(0x00000000e4f00000) deq 0x00000000e4f00a30(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.263283: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.263285: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00a60(0x00000000e4f00000) deq 0x00000000e4f00a30(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.263287: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-105 [000] d.h.. 4.263306: xhci_handle_event: EVENT: TRB 00000000e4f00a50 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-105 [000] d.h.. 4.263310: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-105 [000] d.h.. 4.263313: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00a60(0x00000000e4f00000) deq 0x00000000e4f00a60(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-105 [000] d.h.. 4.263316: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-105 [000] d.h.. 4.263319: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961ed0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.263399: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.263403: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.263406: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00a70(0x00000000e4f00000) deq 0x00000000e4f00a60(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.263407: xhci_queue_trb: CTRL: Buffer 0000000000000803 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.263409: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00a80(0x00000000e4f00000) deq 0x00000000e4f00a60(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.263410: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.263412: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00a90(0x00000000e4f00000) deq 0x00000000e4f00a60(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.263414: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.263528: xhci_handle_event: EVENT: TRB 00000000e4f00a80 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.263534: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.263537: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00a90(0x00000000e4f00000) deq 0x00000000e4f00a90(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.263543: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.263548: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961ee0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.263601: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.263607: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.263609: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00aa0(0x00000000e4f00000) deq 0x00000000e4f00a90(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.263610: xhci_queue_trb: CTRL: Buffer 00000000e59436d0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.263612: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00ab0(0x00000000e4f00000) deq 0x00000000e4f00a90(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.263614: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.263616: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00ac0(0x00000000e4f00000) deq 0x00000000e4f00a90(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.263617: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-105 [000] d.h.. 4.263634: xhci_handle_event: EVENT: TRB 00000000e4f00ab0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-105 [000] d.h.. 4.263638: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-105 [000] d.h.. 4.263642: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00ac0(0x00000000e4f00000) deq 0x00000000e4f00ac0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-105 [000] d.h.. 4.263645: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5b6c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-105 [000] d.h.. 4.263648: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961ef0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.264375: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5bd80 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.264387: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0130 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.264390: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00ad0(0x00000000e4f00000) deq 0x00000000e4f00ac0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.264392: xhci_queue_trb: CTRL: Buffer 00000000e5943700 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.264394: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00ae0(0x00000000e4f00000) deq 0x00000000e4f00ac0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.264395: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.264397: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00af0(0x00000000e4f00000) deq 0x00000000e4f00ac0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.264400: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-131 [000] d.h.. 4.264424: xhci_handle_event: EVENT: TRB 00000000e4f00ae0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-131 [000] d.h.. 4.264432: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-131 [000] d.h.. 4.264437: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00af0(0x00000000e4f00000) deq 0x00000000e4f00af0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-131 [000] d.h.. 4.264441: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5bd80 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-131 [000] d.h.. 4.264449: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961f00(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.264513: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e5bd80 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.264517: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0130 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.264519: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00b00(0x00000000e4f00000) deq 0x00000000e4f00af0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.264521: xhci_queue_trb: CTRL: Buffer 0000000000010001 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-59 [001] d.... 4.264523: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00b10(0x00000000e4f00000) deq 0x00000000e4f00af0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.264524: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.264526: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00b20(0x00000000e4f00000) deq 0x00000000e4f00af0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.264528: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-131 [000] d.h.. 4.264544: xhci_handle_event: EVENT: TRB 00000000e4f00b10 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-131 [000] d.h.. 4.264548: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-131 [000] d.h.. 4.264552: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00b20(0x00000000e4f00000) deq 0x00000000e4f00b20(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-131 [000] d.h.. 4.264554: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e5bd80 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-131 [000] d.h.. 4.264558: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961f10(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] .N... 4.278786: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024ec8000 pipe 2147484544 slot 2 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] dN... 4.278804: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0002 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] dN... 4.278808: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889440(0x00000000e5889000) deq 0x00000000e5889430(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] dN... 4.278810: xhci_queue_trb: CTRL: Buffer 00000000e5943300 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] dN... 4.278812: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889450(0x00000000e5889000) deq 0x00000000e5889430(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] dN... 4.278814: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] dN... 4.278819: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889460(0x00000000e5889000) deq 0x00000000e5889430(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] dN... 4.278822: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-131 [000] d.h.. 4.278850: xhci_handle_event: EVENT: TRB 00000000e5889450 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-131 [000] d.h.. 4.278859: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-131 [000] d.h.. 4.278865: xhci_inc_deq: CTRL ffffff80259b6880: enq 0x00000000e5889460(0x00000000e5889000) deq 0x00000000e5889460(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-131 [000] d.h.. 4.278869: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024ec8000 pipe 2147484544 slot 2 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-131 [000] d.h.. 4.278876: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961f20(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.279004: xhci_queue_trb: CMD: Enable Slot Command: flags C
<task>-59 [001] d.... 4.279008: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e3913230(0x00000000e3913000) deq 0x00000000e3913220(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.279010: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-131 [000] d.h.. 4.279027: xhci_handle_event: EVENT: TRB 00000000e3913220 status 'Success' len 0 slot 4 ep 0 type 'Command Completion Event' flags e:C
<task>-131 [000] d.h.. 4.279030: xhci_handle_command: CMD: Enable Slot Command: flags C
<task>-131 [000] d.h.. 4.279185: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e3913230(0x00000000e3913000) deq 0x00000000e3913230(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-131 [000] d.h.. 4.279189: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961f30(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.279378: xhci_ring_alloc: CTRL ffffff8023ae9980: enq 0x00000000e4e59000(0x00000000e4e59000) deq 0x00000000e4e59000(0x00000000e4e59000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.279383: xhci_alloc_virt_device: vdev ffffff802706e000 ctx e4e8e000 | e5a02000 num 0 state 0 speed 0 port 0 level 0 slot 0
<task>-59 [001] ..... 4.279386: xhci_alloc_dev: RS 00000 UNKNOWN speed Ctx Entries 0 MEL 0 us Port# 0/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-59 [001] ..... 4.279431: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024ec8000 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.279439: xhci_queue_trb: CTRL: bRequestType 23 bRequest 03 wValue 0004 wIndex 0002 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.279442: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889470(0x00000000e5889000) deq 0x00000000e5889460(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.279444: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.279446: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889480(0x00000000e5889000) deq 0x00000000e5889460(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.279449: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-105 [000] d.h.. 4.279465: xhci_handle_event: EVENT: TRB 00000000e5889470 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-105 [000] d.h.. 4.279472: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-105 [000] d.h.. 4.279476: xhci_inc_deq: CTRL ffffff80259b6880: enq 0x00000000e5889480(0x00000000e5889000) deq 0x00000000e5889480(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-105 [000] d.h.. 4.279480: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024ec8000 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-105 [000] d.h.. 4.279486: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961f40(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.298496: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024ec8000 pipe 2147484544 slot 2 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.298517: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0002 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.298521: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889490(0x00000000e5889000) deq 0x00000000e5889480(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.298523: xhci_queue_trb: CTRL: Buffer 00000000e5943300 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.298526: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e58894a0(0x00000000e5889000) deq 0x00000000e5889480(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.298527: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.298529: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e58894b0(0x00000000e5889000) deq 0x00000000e5889480(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.298532: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-146 [000] d.h.. 4.298562: xhci_handle_event: EVENT: TRB 00000000e58894a0 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-146 [000] d.h.. 4.298572: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-146 [000] d.h.. 4.298578: xhci_inc_deq: CTRL ffffff80259b6880: enq 0x00000000e58894b0(0x00000000e5889000) deq 0x00000000e58894b0(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-146 [000] d.h.. 4.298584: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024ec8000 pipe 2147484544 slot 2 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-146 [000] d.h.. 4.298594: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961f50(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.298671: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024ec8000 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.298676: xhci_queue_trb: CTRL: bRequestType 23 bRequest 01 wValue 0014 wIndex 0002 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.298679: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e58894c0(0x00000000e5889000) deq 0x00000000e58894b0(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.298680: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.298682: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e58894d0(0x00000000e5889000) deq 0x00000000e58894b0(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.298684: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-146 [000] d.h.. 4.298699: xhci_handle_event: EVENT: TRB 00000000e58894c0 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-146 [000] d.h.. 4.298703: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-146 [000] d.h.. 4.298707: xhci_inc_deq: CTRL ffffff80259b6880: enq 0x00000000e58894d0(0x00000000e5889000) deq 0x00000000e58894d0(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-146 [000] d.h.. 4.298710: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024ec8000 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-146 [000] d.h.. 4.298714: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961f60(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] .N... 4.366410: xhci_setup_device_slot: RS 00000 UNKNOWN speed Ctx Entries 0 MEL 0 us Port# 0/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-59 [001] .N... 4.366429: xhci_setup_addressable_virt_device: vdev ffffff802706e000 ctx e4e8e000 | e5a02000 num 0 state 5 speed 3 port 2 level 3 slot 4
<task>-59 [001] .N... 4.366432: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e4e8e000, ctx_va=@ffffffc080fd5000
<task>-59 [001] .N... 4.366436: xhci_address_ctrl_ctx: Add: slot ep0
<task>-59 [001] dN... 4.366439: xhci_setup_device: vdev ffffff802706e000 ctx e4e8e000 | e5a02000 num 0 state 5 speed 3 port 2 level 3 slot 4
<task>-59 [001] dN... 4.366449: xhci_queue_trb: CMD: Address Device Command: ctx 00000000e4e8e000 slot 4 flags B:C
<task>-59 [001] dN... 4.366452: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e3913240(0x00000000e3913000) deq 0x00000000e3913230(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-59 [001] dN... 4.366456: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-130 [000] d.h.. 4.366477: xhci_handle_event: EVENT: TRB 00000000e3913230 status 'Success' len 0 slot 4 ep 0 type 'Command Completion Event' flags e:C
<task>-130 [000] d.h.. 4.366483: xhci_handle_command: CMD: Address Device Command: ctx 00000000e4e8e000 slot 4 flags B:C
<task>-130 [000] d.h.. 4.366488: xhci_handle_cmd_addr_dev: RS 00022 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<task>-130 [000] d.h.. 4.366499: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e3913240(0x00000000e3913000) deq 0x00000000e3913240(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-130 [000] d.h.. 4.366502: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961f70(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.366545: xhci_dbg_address: Successful setup context command
<task>-59 [001] ..... 4.366551: xhci_dbg_address: Op regs DCBAA ptr = 0x000000e38fc000
<task>-59 [001] ..... 4.366557: xhci_dbg_address: Slot ID 4 dcbaa entry @ffffffc080c1d020 = 0x000000e5a02000
<task>-59 [001] ..... 4.366562: xhci_dbg_address: Output Context DMA address = 0xe5a02000
<task>-59 [001] ..... 4.366565: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e4e8e000, ctx_va=@ffffffc080fd5000
<task>-59 [001] ..... 4.366567: xhci_address_ctx: ctx_64=0, ctx_type=1, ctx_dma=@e5a02000, ctx_va=@ffffffc081bcf000
<task>-59 [001] ..... 4.366571: xhci_dbg_address: Internal device address = 0
<task>-59 [001] ..... 4.366599: xhci_urb_enqueue: 1-1.2.2 ep0out-control: urb ffffff8024ec8180 pipe 2147483776 slot 4 length 0/64 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.366607: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0100 wIndex 0000 wLength 64 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.366609: xhci_inc_enq: CTRL ffffff8023ae9980: enq 0x00000000e4e59010(0x00000000e4e59000) deq 0x00000000e4e59000(0x00000000e4e59000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.366612: xhci_queue_trb: CTRL: Buffer 00000000e59ae980 length 64 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.366614: xhci_inc_enq: CTRL ffffff8023ae9980: enq 0x00000000e4e59020(0x00000000e4e59000) deq 0x00000000e4e59000(0x00000000e4e59000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.366615: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.366617: xhci_inc_enq: CTRL ffffff8023ae9980: enq 0x00000000e4e59030(0x00000000e4e59000) deq 0x00000000e4e59000(0x00000000e4e59000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.366619: xhci_ring_ep_doorbell: Ring doorbell for Slot 4 ep0in
<task>-130 [000] d.h.. 4.366657: xhci_handle_event: EVENT: TRB 00000000e4e59010 status 'Short Packet' len 46 slot 4 ep 1 type 'Transfer Event' flags e:C
<task>-130 [000] d.h.. 4.366665: xhci_handle_transfer: CTRL: Buffer 00000000e59ae980 length 64 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-130 [000] d.h.. 4.366669: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961f80(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-130 [000] d.h.. 4.366670: xhci_handle_event: EVENT: TRB 00000000e4e59020 status 'Success' len 0 slot 4 ep 1 type 'Transfer Event' flags e:C
<task>-130 [000] d.h.. 4.366674: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-130 [000] d.h.. 4.366677: xhci_inc_deq: CTRL ffffff8023ae9980: enq 0x00000000e4e59030(0x00000000e4e59000) deq 0x00000000e4e59030(0x00000000e4e59000) segs 2 stream 0 bounce 0 cycle 1
<task>-130 [000] d.h.. 4.366683: xhci_urb_giveback: 1-1.2.2 ep0out-control: urb ffffff8024ec8180 pipe 2147483776 slot 4 length 18/64 sgs 0/0 stream 0 flags 00110200
<task>-130 [000] d.h.. 4.366693: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961f90(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.366748: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024ec8180 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.366753: xhci_queue_trb: CTRL: bRequestType 23 bRequest 03 wValue 0004 wIndex 0002 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.366756: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e58894e0(0x00000000e5889000) deq 0x00000000e58894d0(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.366757: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.366759: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e58894f0(0x00000000e5889000) deq 0x00000000e58894d0(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.366761: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-105 [000] d.h.. 4.366774: xhci_handle_event: EVENT: TRB 00000000e58894e0 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-105 [000] d.h.. 4.366778: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-105 [000] d.h.. 4.366782: xhci_inc_deq: CTRL ffffff80259b6880: enq 0x00000000e58894f0(0x00000000e5889000) deq 0x00000000e58894f0(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-105 [000] d.h.. 4.366784: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024ec8180 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-105 [000] d.h.. 4.366788: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961fa0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.387190: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024ec8c00 pipe 2147484544 slot 2 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.387209: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0002 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.387214: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889500(0x00000000e5889000) deq 0x00000000e58894f0(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.387216: xhci_queue_trb: CTRL: Buffer 00000000e5943300 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.387218: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889510(0x00000000e5889000) deq 0x00000000e58894f0(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.387219: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.387221: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889520(0x00000000e5889000) deq 0x00000000e58894f0(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.387224: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-105 [000] d.h.. 4.387258: xhci_handle_event: EVENT: TRB 00000000e5889510 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-105 [000] d.h.. 4.387268: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-105 [000] d.h.. 4.387274: xhci_inc_deq: CTRL ffffff80259b6880: enq 0x00000000e5889520(0x00000000e5889000) deq 0x00000000e5889520(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-105 [000] d.h.. 4.387281: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024ec8c00 pipe 2147484544 slot 2 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-105 [000] d.h.. 4.387291: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961fb0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.388170: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024ef0f00 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.388187: xhci_queue_trb: CTRL: bRequestType 23 bRequest 01 wValue 0014 wIndex 0002 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.388190: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889530(0x00000000e5889000) deq 0x00000000e5889520(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.388192: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.388194: xhci_inc_enq: CTRL ffffff80259b6880: enq 0x00000000e5889540(0x00000000e5889000) deq 0x00000000e5889520(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.388197: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<idle>-0 [000] d.h.. 4.388271: xhci_handle_event: EVENT: TRB 00000000e5889530 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.388281: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.388287: xhci_inc_deq: CTRL ffffff80259b6880: enq 0x00000000e5889540(0x00000000e5889000) deq 0x00000000e5889540(0x00000000e5889000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.388293: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024ef0f00 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.388304: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961fc0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.446625: xhci_discover_or_reset_device: RS 00022 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<task>-59 [001] d.... 4.446648: xhci_queue_trb: CMD: Reset Device Command: slot 4 flags C
<task>-59 [001] d.... 4.446652: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e3913250(0x00000000e3913000) deq 0x00000000e3913240(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.446658: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-29 [000] DNh.. 4.449911: xhci_handle_event: EVENT: TRB 00000000e3913240 status 'Context State Error' len 0 slot 4 ep 0 type 'Command Completion Event' flags e:C
<task>-29 [000] DNh.. 4.449920: xhci_handle_command: CMD: Reset Device Command: slot 4 flags C
<task>-29 [000] DNh.. 4.449928: xhci_handle_cmd_reset_dev: RS 00022 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<task>-29 [000] DNh.. 4.449942: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e3913250(0x00000000e3913000) deq 0x00000000e3913250(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-29 [000] DNh.. 4.449944: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961fd0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.449979: xhci_setup_device_slot: RS 00022 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<task>-59 [001] ..... 4.449988: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e4e8e000, ctx_va=@ffffffc080fd5000
<task>-59 [001] ..... 4.449992: xhci_address_ctrl_ctx: Add: slot ep0
<task>-59 [001] d.... 4.449995: xhci_setup_device: vdev ffffff802706e000 ctx e4e8e000 | e5a02000 num 0 state 5 speed 3 port 2 level 3 slot 4
<task>-59 [001] d.... 4.450001: xhci_queue_trb: CMD: Address Device Command: ctx 00000000e4e8e000 slot 4 flags b:C
<task>-59 [001] d.... 4.450004: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e3913260(0x00000000e3913000) deq 0x00000000e3913250(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.450007: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-29 [000] DNh.. 4.450034: xhci_handle_event: EVENT: TRB 00000000e3913250 status 'Success' len 0 slot 4 ep 0 type 'Command Completion Event' flags e:C
<task>-29 [000] DNh.. 4.450037: xhci_handle_command: CMD: Address Device Command: ctx 00000000e4e8e000 slot 4 flags b:C
<task>-29 [000] DNh.. 4.450041: xhci_handle_cmd_addr_dev: RS 00022 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 4 State addressed
<task>-29 [000] DNh.. 4.450050: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e3913260(0x00000000e3913000) deq 0x00000000e3913260(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-29 [000] DNh.. 4.450051: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961fe0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.450074: xhci_dbg_address: Successful setup address command
<task>-59 [001] ..... 4.450080: xhci_dbg_address: Op regs DCBAA ptr = 0x000000e38fc000
<task>-59 [001] ..... 4.450088: xhci_dbg_address: Slot ID 4 dcbaa entry @ffffffc080c1d020 = 0x000000e5a02000
<task>-59 [001] ..... 4.450093: xhci_dbg_address: Output Context DMA address = 0xe5a02000
<task>-59 [001] ..... 4.450095: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e4e8e000, ctx_va=@ffffffc080fd5000
<task>-59 [001] ..... 4.450098: xhci_address_ctx: ctx_64=0, ctx_type=1, ctx_dma=@e5a02000, ctx_va=@ffffffc081bcf000
<task>-59 [001] ..... 4.450101: xhci_dbg_address: Internal device address = 4
<task>-59 [001] ..... 4.466973: xhci_urb_enqueue: 1-1.2.2 ep0out-control: urb ffffff8024ef0b40 pipe 2147485056 slot 4 length 0/18 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.466992: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0100 wIndex 0000 wLength 18 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.466996: xhci_inc_enq: CTRL ffffff8023ae9980: enq 0x00000000e4e59040(0x00000000e4e59000) deq 0x00000000e4e59030(0x00000000e4e59000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.466999: xhci_queue_trb: CTRL: Buffer 00000000e4ddd980 length 18 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.467001: xhci_inc_enq: CTRL ffffff8023ae9980: enq 0x00000000e4e59050(0x00000000e4e59000) deq 0x00000000e4e59030(0x00000000e4e59000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.467002: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.467004: xhci_inc_enq: CTRL ffffff8023ae9980: enq 0x00000000e4e59060(0x00000000e4e59000) deq 0x00000000e4e59030(0x00000000e4e59000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.467007: xhci_ring_ep_doorbell: Ring doorbell for Slot 4 ep0in
<task>-262 [000] dNh.. 4.469886: xhci_handle_event: EVENT: TRB 00000000e4e59050 status 'Success' len 0 slot 4 ep 1 type 'Transfer Event' flags e:C
<task>-262 [000] dNh.. 4.469897: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-262 [000] dNh.. 4.469903: xhci_inc_deq: CTRL ffffff8023ae9980: enq 0x00000000e4e59060(0x00000000e4e59000) deq 0x00000000e4e59060(0x00000000e4e59000) segs 2 stream 0 bounce 0 cycle 1
<task>-262 [000] dNh.. 4.469911: xhci_urb_giveback: 1-1.2.2 ep0out-control: urb ffffff8024ef0b40 pipe 2147485056 slot 4 length 18/18 sgs 0/0 stream 0 flags 00110200
<task>-262 [000] dNh.. 4.469921: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e3961ff0(0x00000000e3961000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.475338: xhci_urb_enqueue: 1-1.2.2 ep0out-control: urb ffffff8024ef0b40 pipe 2147485056 slot 4 length 0/9 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.475356: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0200 wIndex 0000 wLength 9 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.475361: xhci_inc_enq: CTRL ffffff8023ae9980: enq 0x00000000e4e59070(0x00000000e4e59000) deq 0x00000000e4e59060(0x00000000e4e59000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.475363: xhci_queue_trb: CTRL: Buffer 00000000e4eef650 length 9 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.475365: xhci_inc_enq: CTRL ffffff8023ae9980: enq 0x00000000e4e59080(0x00000000e4e59000) deq 0x00000000e4e59060(0x00000000e4e59000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.475367: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.475370: xhci_inc_enq: CTRL ffffff8023ae9980: enq 0x00000000e4e59090(0x00000000e4e59000) deq 0x00000000e4e59060(0x00000000e4e59000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.475373: xhci_ring_ep_doorbell: Ring doorbell for Slot 4 ep0in
<task>-29 [000] DNh.. 4.476668: xhci_handle_event: EVENT: TRB 00000000e4e59080 status 'Success' len 0 slot 4 ep 1 type 'Transfer Event' flags e:C
<task>-29 [000] DNh.. 4.476680: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-29 [000] DNh.. 4.476686: xhci_inc_deq: CTRL ffffff8023ae9980: enq 0x00000000e4e59090(0x00000000e4e59000) deq 0x00000000e4e59090(0x00000000e4e59000) segs 2 stream 0 bounce 0 cycle 1
<task>-29 [000] DNh.. 4.476693: xhci_urb_giveback: 1-1.2.2 ep0out-control: urb ffffff8024ef0b40 pipe 2147485056 slot 4 length 9/9 sgs 0/0 stream 0 flags 00110200
<task>-29 [000] DNh.. 4.476703: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c000(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.483125: xhci_urb_enqueue: 1-1.2.2 ep0out-control: urb ffffff8024ef0b40 pipe 2147485056 slot 4 length 0/55 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.483142: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0200 wIndex 0000 wLength 55 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.483146: xhci_inc_enq: CTRL ffffff8023ae9980: enq 0x00000000e4e590a0(0x00000000e4e59000) deq 0x00000000e4e59090(0x00000000e4e59000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.483148: xhci_queue_trb: CTRL: Buffer 00000000e5b36380 length 55 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.483150: xhci_inc_enq: CTRL ffffff8023ae9980: enq 0x00000000e4e590b0(0x00000000e4e59000) deq 0x00000000e4e59090(0x00000000e4e59000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.483152: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.483154: xhci_inc_enq: CTRL ffffff8023ae9980: enq 0x00000000e4e590c0(0x00000000e4e59000) deq 0x00000000e4e59090(0x00000000e4e59000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.483156: xhci_ring_ep_doorbell: Ring doorbell for Slot 4 ep0in
<task>-189 [000] d.h.. 4.483207: xhci_handle_event: EVENT: TRB 00000000e4e590b0 status 'Success' len 0 slot 4 ep 1 type 'Transfer Event' flags e:C
<task>-189 [000] d.h.. 4.483216: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-189 [000] d.h.. 4.483222: xhci_inc_deq: CTRL ffffff8023ae9980: enq 0x00000000e4e590c0(0x00000000e4e59000) deq 0x00000000e4e590c0(0x00000000e4e59000) segs 2 stream 0 bounce 0 cycle 1
<task>-189 [000] d.h.. 4.483228: xhci_urb_giveback: 1-1.2.2 ep0out-control: urb ffffff8024ef0b40 pipe 2147485056 slot 4 length 55/55 sgs 0/0 stream 0 flags 00110200
<task>-189 [000] d.h.. 4.483238: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c010(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.483463: xhci_urb_enqueue: 1-1.2.2 ep0out-control: urb ffffff8024ef06c0 pipe 2147485056 slot 4 length 0/255 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.483473: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0300 wIndex 0000 wLength 255 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.483476: xhci_inc_enq: CTRL ffffff8023ae9980: enq 0x00000000e4e590d0(0x00000000e4e59000) deq 0x00000000e4e590c0(0x00000000e4e59000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.483477: xhci_queue_trb: CTRL: Buffer 00000000e4efbe00 length 255 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.483479: xhci_inc_enq: CTRL ffffff8023ae9980: enq 0x00000000e4e590e0(0x00000000e4e59000) deq 0x00000000e4e590c0(0x00000000e4e59000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.483480: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.483482: xhci_inc_enq: CTRL ffffff8023ae9980: enq 0x00000000e4e590f0(0x00000000e4e59000) deq 0x00000000e4e590c0(0x00000000e4e59000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.483484: xhci_ring_ep_doorbell: Ring doorbell for Slot 4 ep0in
<task>-188 [000] d.h.. 4.483504: xhci_handle_event: EVENT: TRB 00000000e4e590d0 status 'Short Packet' len 251 slot 4 ep 1 type 'Transfer Event' flags e:C
<task>-188 [000] d.h.. 4.483509: xhci_handle_transfer: CTRL: Buffer 00000000e4efbe00 length 255 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-188 [000] d.h.. 4.483512: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c020(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-188 [000] d.h.. 4.483514: xhci_handle_event: EVENT: TRB 00000000e4e590e0 status 'Success' len 0 slot 4 ep 1 type 'Transfer Event' flags e:C
<task>-188 [000] d.h.. 4.483517: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-188 [000] d.h.. 4.483520: xhci_inc_deq: CTRL ffffff8023ae9980: enq 0x00000000e4e590f0(0x00000000e4e59000) deq 0x00000000e4e590f0(0x00000000e4e59000) segs 2 stream 0 bounce 0 cycle 1
<task>-188 [000] d.h.. 4.483524: xhci_urb_giveback: 1-1.2.2 ep0out-control: urb ffffff8024ef06c0 pipe 2147485056 slot 4 length 4/255 sgs 0/0 stream 0 flags 00110200
<task>-188 [000] d.h.. 4.483529: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c030(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.483702: xhci_urb_enqueue: 1-1.2.2 ep0out-control: urb ffffff8024ef06c0 pipe 2147485056 slot 4 length 0/255 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.483707: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0302 wIndex 0409 wLength 255 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.483709: xhci_inc_enq: CTRL ffffff8023ae9980: enq 0x00000000e4e59100(0x00000000e4e59000) deq 0x00000000e4e590f0(0x00000000e4e59000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.483711: xhci_queue_trb: CTRL: Buffer 00000000e4efbe00 length 255 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.483713: xhci_inc_enq: CTRL ffffff8023ae9980: enq 0x00000000e4e59110(0x00000000e4e59000) deq 0x00000000e4e590f0(0x00000000e4e59000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.483714: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.483716: xhci_inc_enq: CTRL ffffff8023ae9980: enq 0x00000000e4e59120(0x00000000e4e59000) deq 0x00000000e4e590f0(0x00000000e4e59000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.483717: xhci_ring_ep_doorbell: Ring doorbell for Slot 4 ep0in
<task>-188 [000] d.h.. 4.483755: xhci_handle_event: EVENT: TRB 00000000e4e59100 status 'Short Packet' len 227 slot 4 ep 1 type 'Transfer Event' flags e:C
<task>-188 [000] d.h.. 4.483760: xhci_handle_transfer: CTRL: Buffer 00000000e4efbe00 length 255 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-188 [000] d.h.. 4.483762: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c040(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-188 [000] d.h.. 4.483764: xhci_handle_event: EVENT: TRB 00000000e4e59110 status 'Success' len 0 slot 4 ep 1 type 'Transfer Event' flags e:C
<task>-188 [000] d.h.. 4.483766: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-188 [000] d.h.. 4.483769: xhci_inc_deq: CTRL ffffff8023ae9980: enq 0x00000000e4e59120(0x00000000e4e59000) deq 0x00000000e4e59120(0x00000000e4e59000) segs 2 stream 0 bounce 0 cycle 1
<task>-188 [000] d.h.. 4.483772: xhci_urb_giveback: 1-1.2.2 ep0out-control: urb ffffff8024ef06c0 pipe 2147485056 slot 4 length 28/255 sgs 0/0 stream 0 flags 00110200
<task>-188 [000] d.h.. 4.483775: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c050(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.483899: xhci_urb_enqueue: 1-1.2.2 ep0out-control: urb ffffff8024ef06c0 pipe 2147485056 slot 4 length 0/255 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.483904: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0301 wIndex 0409 wLength 255 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.483906: xhci_inc_enq: CTRL ffffff8023ae9980: enq 0x00000000e4e59130(0x00000000e4e59000) deq 0x00000000e4e59120(0x00000000e4e59000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.483908: xhci_queue_trb: CTRL: Buffer 00000000e4efbe00 length 255 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.483910: xhci_inc_enq: CTRL ffffff8023ae9980: enq 0x00000000e4e59140(0x00000000e4e59000) deq 0x00000000e4e59120(0x00000000e4e59000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.483911: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.483913: xhci_inc_enq: CTRL ffffff8023ae9980: enq 0x00000000e4e59150(0x00000000e4e59000) deq 0x00000000e4e59120(0x00000000e4e59000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.483915: xhci_ring_ep_doorbell: Ring doorbell for Slot 4 ep0in
<task>-188 [000] d.h.. 4.483951: xhci_handle_event: EVENT: TRB 00000000e4e59130 status 'Short Packet' len 245 slot 4 ep 1 type 'Transfer Event' flags e:C
<task>-188 [000] d.h.. 4.483955: xhci_handle_transfer: CTRL: Buffer 00000000e4efbe00 length 255 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-188 [000] d.h.. 4.483958: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c060(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-188 [000] d.h.. 4.483959: xhci_handle_event: EVENT: TRB 00000000e4e59140 status 'Success' len 0 slot 4 ep 1 type 'Transfer Event' flags e:C
<task>-188 [000] d.h.. 4.483962: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-188 [000] d.h.. 4.484034: xhci_inc_deq: CTRL ffffff8023ae9980: enq 0x00000000e4e59150(0x00000000e4e59000) deq 0x00000000e4e59150(0x00000000e4e59000) segs 2 stream 0 bounce 0 cycle 1
<task>-188 [000] d.h.. 4.484037: xhci_urb_giveback: 1-1.2.2 ep0out-control: urb ffffff8024ef06c0 pipe 2147485056 slot 4 length 10/255 sgs 0/0 stream 0 flags 00110200
<task>-188 [000] d.h.. 4.484041: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c070(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.484753: xhci_ring_alloc: BULK ffffff8025831a00: enq 0x00000000e4e8c000(0x00000000e4e8c000) deq 0x00000000e4e8c000(0x00000000e4e8c000) segs 2 stream 0 bounce 512 cycle 1
<task>-59 [001] ..... 4.484759: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 125 us max ESIT payload 0 CErr 3 Type Bulk IN burst 0 maxp 512 deq 00000000e4e8c001 avg trb len 0
<task>-59 [001] ..... 4.484776: xhci_ring_alloc: BULK ffffff8025831b00: enq 0x00000000e4efe000(0x00000000e4efe000) deq 0x00000000e4efe000(0x00000000e4efe000) segs 2 stream 0 bounce 512 cycle 1
<task>-59 [001] ..... 4.484777: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 125 us max ESIT payload 0 CErr 3 Type Bulk OUT burst 0 maxp 512 deq 00000000e4efe001 avg trb len 0
<task>-59 [001] ..... 4.484830: xhci_ring_alloc: BULK ffffff8025831980: enq 0x00000000e4d84000(0x00000000e4d84000) deq 0x00000000e4d84000(0x00000000e4d84000) segs 2 stream 0 bounce 512 cycle 1
<task>-59 [001] ..... 4.484832: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 125 us max ESIT payload 0 CErr 3 Type Bulk IN burst 0 maxp 512 deq 00000000e4d84001 avg trb len 0
<task>-59 [001] ..... 4.484854: xhci_ring_alloc: BULK ffffff8025831900: enq 0x00000000e4d82000(0x00000000e4d82000) deq 0x00000000e4d82000(0x00000000e4d82000) segs 2 stream 0 bounce 512 cycle 1
<task>-59 [001] ..... 4.484855: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 125 us max ESIT payload 0 CErr 3 Type Bulk OUT burst 0 maxp 512 deq 00000000e4d82001 avg trb len 0
<task>-59 [001] d.... 4.484871: xhci_configure_endpoint_ctrl_ctx: Add: slot 1in 2out 3in 4out
<task>-59 [001] d.... 4.484874: xhci_configure_endpoint: RS 00022 high-speed Ctx Entries 8 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-59 [001] d.... 4.484883: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e4e8e000 slot 4 flags d:C
<task>-59 [001] d.... 4.484889: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e3913270(0x00000000e3913000) deq 0x00000000e3913260(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.484892: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-188 [000] d.h.. 4.485004: xhci_handle_event: EVENT: TRB 00000000e3913260 status 'Success' len 0 slot 4 ep 0 type 'Command Completion Event' flags e:C
<task>-188 [000] d.h.. 4.485009: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e4e8e000 slot 4 flags d:C
<task>-188 [000] d.h.. 4.485020: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e3913270(0x00000000e3913000) deq 0x00000000e3913270(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-188 [000] d.h.. 4.485022: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c080(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.485476: xhci_dbg_context_change: Successful Endpoint Configure command
<task>-59 [001] dN... 4.485531: xhci_queue_trb: CMD: Stop Ring Command: slot 4 sp 0 ep 3 flags C
<task>-59 [001] dN... 4.485534: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e3913280(0x00000000e3913000) deq 0x00000000e3913270(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-59 [001] dN... 4.485536: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-29 [000] d.h.. 4.485551: xhci_handle_event: EVENT: TRB 00000000e4e8c000 status 'Stopped - Length Invalid' len 0 slot 4 ep 3 type 'Transfer Event' flags e:C
<task>-29 [000] d.h.. 4.485558: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c090(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-29 [000] d.h.. 4.485560: xhci_handle_event: EVENT: TRB 00000000e3913270 status 'Success' len 0 slot 4 ep 0 type 'Command Completion Event' flags e:C
<task>-29 [000] d.h.. 4.485563: xhci_handle_command: CMD: Stop Ring Command: slot 4 sp 0 ep 3 flags C
<task>-29 [000] d.h.. 4.485575: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e3913280(0x00000000e3913000) deq 0x00000000e3913280(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-29 [000] d.h.. 4.485577: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c0a0(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.485810: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e5a03000 slot 4 flags d:C
<task>-59 [001] d.... 4.485814: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e3913290(0x00000000e3913000) deq 0x00000000e3913280(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.485815: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] dNh.. 4.486020: xhci_handle_event: EVENT: TRB 00000000e3913280 status 'Success' len 0 slot 4 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] dNh.. 4.486025: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e5a03000 slot 4 flags d:C
<idle>-0 [000] dNh.. 4.486038: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e3913290(0x00000000e3913000) deq 0x00000000e3913290(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] dNh.. 4.486040: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c0b0(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.486798: xhci_queue_trb: CMD: Stop Ring Command: slot 4 sp 0 ep 4 flags C
<task>-59 [001] d.... 4.486804: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e39132a0(0x00000000e3913000) deq 0x00000000e3913290(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.486806: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 4.486822: xhci_handle_event: EVENT: TRB 00000000e4efe000 status 'Stopped - Length Invalid' len 0 slot 4 ep 4 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.486829: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c0c0(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.486830: xhci_handle_event: EVENT: TRB 00000000e3913290 status 'Success' len 0 slot 4 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 4.486833: xhci_handle_command: CMD: Stop Ring Command: slot 4 sp 0 ep 4 flags C
<idle>-0 [000] d.h.. 4.486844: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e39132a0(0x00000000e3913000) deq 0x00000000e39132a0(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.486846: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c0d0(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.486863: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e5a03000 slot 4 flags d:C
<task>-59 [001] d.... 4.486866: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e39132b0(0x00000000e3913000) deq 0x00000000e39132a0(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.486867: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-30 [000] d.h.. 4.486972: xhci_handle_event: EVENT: TRB 00000000e39132a0 status 'Success' len 0 slot 4 ep 0 type 'Command Completion Event' flags e:C
<task>-30 [000] d.h.. 4.486975: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e5a03000 slot 4 flags d:C
<task>-30 [000] d.h.. 4.486984: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e39132b0(0x00000000e3913000) deq 0x00000000e39132b0(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-30 [000] d.h.. 4.486986: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c0e0(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.487041: xhci_queue_trb: CMD: Stop Ring Command: slot 4 sp 0 ep 7 flags C
<task>-59 [001] d.... 4.487043: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e39132c0(0x00000000e3913000) deq 0x00000000e39132b0(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.487045: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 4.487074: xhci_handle_event: EVENT: TRB 00000000e4d84000 status 'Stopped - Length Invalid' len 0 slot 4 ep 7 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.487078: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c0f0(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.487080: xhci_handle_event: EVENT: TRB 00000000e39132b0 status 'Success' len 0 slot 4 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 4.487082: xhci_handle_command: CMD: Stop Ring Command: slot 4 sp 0 ep 7 flags C
<idle>-0 [000] d.h.. 4.487092: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e39132c0(0x00000000e3913000) deq 0x00000000e39132c0(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.487093: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c100(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.487107: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e5a03000 slot 4 flags d:C
<task>-59 [001] d.... 4.487110: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e39132d0(0x00000000e3913000) deq 0x00000000e39132c0(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.487111: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 4.487302: xhci_handle_event: EVENT: TRB 00000000e39132c0 status 'Success' len 0 slot 4 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 4.487306: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e5a03000 slot 4 flags d:C
<idle>-0 [000] d.h.. 4.487318: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e39132d0(0x00000000e3913000) deq 0x00000000e39132d0(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.487319: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c110(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.487344: xhci_queue_trb: CMD: Stop Ring Command: slot 4 sp 0 ep 8 flags C
<task>-59 [001] d.... 4.487347: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e39132e0(0x00000000e3913000) deq 0x00000000e39132d0(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.487349: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 4.487366: xhci_handle_event: EVENT: TRB 00000000e4d82000 status 'Stopped - Length Invalid' len 0 slot 4 ep 8 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.487370: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c120(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.487372: xhci_handle_event: EVENT: TRB 00000000e39132d0 status 'Success' len 0 slot 4 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 4.487374: xhci_handle_command: CMD: Stop Ring Command: slot 4 sp 0 ep 8 flags C
<idle>-0 [000] d.h.. 4.487381: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e39132e0(0x00000000e3913000) deq 0x00000000e39132e0(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.487383: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c130(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.487398: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e5a03000 slot 4 flags d:C
<task>-59 [001] d.... 4.487400: xhci_inc_enq: CMD ffffff80238d3380: enq 0x00000000e39132f0(0x00000000e3913000) deq 0x00000000e39132e0(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.487401: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 4.487514: xhci_handle_event: EVENT: TRB 00000000e39132e0 status 'Success' len 0 slot 4 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 4.487517: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e5a03000 slot 4 flags d:C
<idle>-0 [000] d.h.. 4.487527: xhci_inc_deq: CMD ffffff80238d3380: enq 0x00000000e39132f0(0x00000000e3913000) deq 0x00000000e39132f0(0x00000000e3913000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.487528: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c140(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.487564: xhci_urb_enqueue: 1-1.2.2 ep0out-control: urb ffffff8024ef0780 pipe 2147484928 slot 4 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.487574: xhci_queue_trb: CTRL: bRequestType 00 bRequest 09 wValue 0001 wIndex 0000 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.487576: xhci_inc_enq: CTRL ffffff8023ae9980: enq 0x00000000e4e59160(0x00000000e4e59000) deq 0x00000000e4e59150(0x00000000e4e59000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.487578: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.487580: xhci_inc_enq: CTRL ffffff8023ae9980: enq 0x00000000e4e59170(0x00000000e4e59000) deq 0x00000000e4e59150(0x00000000e4e59000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.487583: xhci_ring_ep_doorbell: Ring doorbell for Slot 4 ep0in
<idle>-0 [000] d.h.. 4.487604: xhci_handle_event: EVENT: TRB 00000000e4e59160 status 'Success' len 0 slot 4 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.487610: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.487615: xhci_inc_deq: CTRL ffffff8023ae9980: enq 0x00000000e4e59170(0x00000000e4e59000) deq 0x00000000e4e59170(0x00000000e4e59000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.487620: xhci_urb_giveback: 1-1.2.2 ep0out-control: urb ffffff8024ef0780 pipe 2147484928 slot 4 length 0/0 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.487629: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c150(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.487803: xhci_urb_enqueue: 1-1.2.2 ep0out-control: urb ffffff8024ef0780 pipe 2147485056 slot 4 length 0/255 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.487807: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0302 wIndex 0409 wLength 255 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.487810: xhci_inc_enq: CTRL ffffff8023ae9980: enq 0x00000000e4e59180(0x00000000e4e59000) deq 0x00000000e4e59170(0x00000000e4e59000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.487812: xhci_queue_trb: CTRL: Buffer 00000000e4d80000 length 255 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.487814: xhci_inc_enq: CTRL ffffff8023ae9980: enq 0x00000000e4e59190(0x00000000e4e59000) deq 0x00000000e4e59170(0x00000000e4e59000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.487815: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.487817: xhci_inc_enq: CTRL ffffff8023ae9980: enq 0x00000000e4e591a0(0x00000000e4e59000) deq 0x00000000e4e59170(0x00000000e4e59000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.487819: xhci_ring_ep_doorbell: Ring doorbell for Slot 4 ep0in
<idle>-0 [000] d.h.. 4.487862: xhci_handle_event: EVENT: TRB 00000000e4e59180 status 'Short Packet' len 227 slot 4 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.487866: xhci_handle_transfer: CTRL: Buffer 00000000e4d80000 length 255 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<idle>-0 [000] d.h.. 4.487869: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c160(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.487871: xhci_handle_event: EVENT: TRB 00000000e4e59190 status 'Success' len 0 slot 4 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.487873: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.487877: xhci_inc_deq: CTRL ffffff8023ae9980: enq 0x00000000e4e591a0(0x00000000e4e59000) deq 0x00000000e4e591a0(0x00000000e4e59000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.487880: xhci_urb_giveback: 1-1.2.2 ep0out-control: urb ffffff8024ef0780 pipe 2147485056 slot 4 length 28/255 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.487883: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c170(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.489274: xhci_urb_enqueue: 1-1.2.2 ep0out-control: urb ffffff8024ef0780 pipe 2147485056 slot 4 length 0/255 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.489290: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0302 wIndex 0409 wLength 255 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-59 [001] d.... 4.489294: xhci_inc_enq: CTRL ffffff8023ae9980: enq 0x00000000e4e591b0(0x00000000e4e59000) deq 0x00000000e4e591a0(0x00000000e4e59000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.489296: xhci_queue_trb: CTRL: Buffer 00000000e4d80300 length 255 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-59 [001] d.... 4.489298: xhci_inc_enq: CTRL ffffff8023ae9980: enq 0x00000000e4e591c0(0x00000000e4e59000) deq 0x00000000e4e591a0(0x00000000e4e59000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.489300: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-59 [001] d.... 4.489302: xhci_inc_enq: CTRL ffffff8023ae9980: enq 0x00000000e4e591d0(0x00000000e4e59000) deq 0x00000000e4e591a0(0x00000000e4e59000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] d.... 4.489305: xhci_ring_ep_doorbell: Ring doorbell for Slot 4 ep0in
<idle>-0 [000] d.h.. 4.489393: xhci_handle_event: EVENT: TRB 00000000e4e591b0 status 'Short Packet' len 227 slot 4 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.489403: xhci_handle_transfer: CTRL: Buffer 00000000e4d80300 length 255 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<idle>-0 [000] d.h.. 4.489408: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c180(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.489409: xhci_handle_event: EVENT: TRB 00000000e4e591c0 status 'Success' len 0 slot 4 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.489412: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.489416: xhci_inc_deq: CTRL ffffff8023ae9980: enq 0x00000000e4e591d0(0x00000000e4e59000) deq 0x00000000e4e591d0(0x00000000e4e59000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.489421: xhci_urb_giveback: 1-1.2.2 ep0out-control: urb ffffff8024ef0780 pipe 2147485056 slot 4 length 28/255 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.489430: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c190(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] ..... 4.709010: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-215 [001] d.... 4.709029: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-215 [001] d.... 4.709033: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00b30(0x00000000e4f00000) deq 0x00000000e4f00b20(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.709036: xhci_queue_trb: CTRL: Buffer 0000000000000008 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-215 [001] d.... 4.709038: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00b40(0x00000000e4f00000) deq 0x00000000e4f00b20(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.709039: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-215 [001] d.... 4.709041: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00b50(0x00000000e4f00000) deq 0x00000000e4f00b20(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.709044: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-9 [000] dNh.. 4.709300: xhci_handle_event: EVENT: TRB 00000000e4f00b40 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-9 [000] dNh.. 4.709310: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-9 [000] dNh.. 4.709316: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00b50(0x00000000e4f00000) deq 0x00000000e4f00b50(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-9 [000] dNh.. 4.709323: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-9 [000] dNh.. 4.709330: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c1a0(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] ..... 4.726939: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-215 [001] d.... 4.726958: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-215 [001] d.... 4.726962: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00b60(0x00000000e4f00000) deq 0x00000000e4f00b50(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.726965: xhci_queue_trb: CTRL: Buffer 00000000e59434e8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-215 [001] d.... 4.726967: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00b70(0x00000000e4f00000) deq 0x00000000e4f00b50(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.726968: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-215 [001] d.... 4.726970: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00b80(0x00000000e4f00000) deq 0x00000000e4f00b50(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.726973: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.727903: xhci_handle_event: EVENT: TRB 00000000e4f00b70 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.727920: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.727926: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00b80(0x00000000e4f00000) deq 0x00000000e4f00b80(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.727934: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.727948: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c1b0(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] ..... 4.728119: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-215 [001] d.... 4.728131: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0108 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-215 [001] d.... 4.728135: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00b90(0x00000000e4f00000) deq 0x00000000e4f00b80(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.728137: xhci_queue_trb: CTRL: Buffer 00000000958c8212 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-215 [001] d.... 4.728139: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00ba0(0x00000000e4f00000) deq 0x00000000e4f00b80(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.728141: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-215 [001] d.... 4.728143: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00bb0(0x00000000e4f00000) deq 0x00000000e4f00b80(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.728145: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-255 [000] d.h.. 4.728346: xhci_handle_event: EVENT: TRB 00000000e4f00ba0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-255 [000] d.h.. 4.728354: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-255 [000] d.h.. 4.728359: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00bb0(0x00000000e4f00000) deq 0x00000000e4f00bb0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-255 [000] d.h.. 4.728363: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-255 [000] d.h.. 4.728368: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c1c0(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] ..... 4.728428: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-215 [001] d.... 4.728434: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0104 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-215 [001] d.... 4.728436: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00bc0(0x00000000e4f00000) deq 0x00000000e4f00bb0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.728438: xhci_queue_trb: CTRL: Buffer 0000000000009d5a length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-215 [001] d.... 4.728440: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00bd0(0x00000000e4f00000) deq 0x00000000e4f00bb0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.728442: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-215 [001] d.... 4.728444: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00be0(0x00000000e4f00000) deq 0x00000000e4f00bb0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.728446: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-255 [000] d.h.. 4.728833: xhci_handle_event: EVENT: TRB 00000000e4f00bd0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-255 [000] d.h.. 4.728837: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-255 [000] d.h.. 4.728840: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00be0(0x00000000e4f00000) deq 0x00000000e4f00be0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-255 [000] d.h.. 4.728843: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-255 [000] d.h.. 4.728846: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c1d0(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] ..... 4.728897: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-215 [001] d.... 4.728901: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-215 [001] d.... 4.728903: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00bf0(0x00000000e4f00000) deq 0x00000000e4f00be0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.728905: xhci_queue_trb: CTRL: Buffer 00000000e59434e8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-215 [001] d.... 4.728907: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00c00(0x00000000e4f00000) deq 0x00000000e4f00be0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.728908: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-215 [001] d.... 4.728910: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00c10(0x00000000e4f00000) deq 0x00000000e4f00be0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.728911: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-255 [000] d.h.. 4.729147: xhci_handle_event: EVENT: TRB 00000000e4f00c00 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-255 [000] d.h.. 4.729151: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-255 [000] d.h.. 4.729154: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00c10(0x00000000e4f00000) deq 0x00000000e4f00c10(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-255 [000] d.h.. 4.729157: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-255 [000] d.h.. 4.729160: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c1e0(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] ..... 4.729201: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-215 [001] d.... 4.729205: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-215 [001] d.... 4.729207: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00c20(0x00000000e4f00000) deq 0x00000000e4f00c10(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.729209: xhci_queue_trb: CTRL: Buffer 0000000000001000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-215 [001] d.... 4.729211: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00c30(0x00000000e4f00000) deq 0x00000000e4f00c10(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.729212: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-215 [001] d.... 4.729214: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00c40(0x00000000e4f00000) deq 0x00000000e4f00c10(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.729215: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-255 [000] d.h.. 4.729448: xhci_handle_event: EVENT: TRB 00000000e4f00c30 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-255 [000] d.h.. 4.729452: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-255 [000] d.h.. 4.729455: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00c40(0x00000000e4f00000) deq 0x00000000e4f00c40(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-255 [000] d.h.. 4.729458: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-255 [000] d.h.. 4.729461: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c1f0(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] ..... 4.729503: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-215 [001] d.... 4.729507: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-215 [001] d.... 4.729509: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00c50(0x00000000e4f00000) deq 0x00000000e4f00c40(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.729511: xhci_queue_trb: CTRL: Buffer 00000000e59434e8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-215 [001] d.... 4.729513: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00c60(0x00000000e4f00000) deq 0x00000000e4f00c40(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.729514: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-215 [001] d.... 4.729516: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00c70(0x00000000e4f00000) deq 0x00000000e4f00c40(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.729518: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-255 [000] d.h.. 4.729743: xhci_handle_event: EVENT: TRB 00000000e4f00c60 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-255 [000] d.h.. 4.729747: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-255 [000] d.h.. 4.729750: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00c70(0x00000000e4f00000) deq 0x00000000e4f00c70(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-255 [000] d.h.. 4.729752: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-255 [000] d.h.. 4.729755: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c200(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] ..... 4.729798: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-215 [001] d.... 4.729802: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0038 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-215 [001] d.... 4.729804: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00c80(0x00000000e4f00000) deq 0x00000000e4f00c70(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.729806: xhci_queue_trb: CTRL: Buffer 0000000000000025 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-215 [001] d.... 4.729808: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00c90(0x00000000e4f00000) deq 0x00000000e4f00c70(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.729809: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-215 [001] d.... 4.729811: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00ca0(0x00000000e4f00000) deq 0x00000000e4f00c70(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.729813: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-255 [000] d.h.. 4.730042: xhci_handle_event: EVENT: TRB 00000000e4f00c90 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-255 [000] d.h.. 4.730046: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-255 [000] d.h.. 4.730049: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00ca0(0x00000000e4f00000) deq 0x00000000e4f00ca0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-255 [000] d.h.. 4.730051: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-255 [000] d.h.. 4.730054: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c210(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] ..... 4.730096: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-215 [001] d.... 4.730100: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0038 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-215 [001] d.... 4.730102: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00cb0(0x00000000e4f00000) deq 0x00000000e4f00ca0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.730104: xhci_queue_trb: CTRL: Buffer 00000000e59434e8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-215 [001] d.... 4.730106: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00cc0(0x00000000e4f00000) deq 0x00000000e4f00ca0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.730107: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-215 [001] d.... 4.730109: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00cd0(0x00000000e4f00000) deq 0x00000000e4f00ca0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.730111: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-255 [000] d.h.. 4.730125: xhci_handle_event: EVENT: TRB 00000000e4f00cc0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-255 [000] d.h.. 4.730129: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-255 [000] d.h.. 4.730132: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00cd0(0x00000000e4f00000) deq 0x00000000e4f00cd0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-255 [000] d.h.. 4.730135: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-255 [000] d.h.. 4.730138: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c220(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] ..... 4.730178: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-215 [001] d.... 4.730182: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 006c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-215 [001] d.... 4.730184: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00ce0(0x00000000e4f00000) deq 0x00000000e4f00cd0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.730186: xhci_queue_trb: CTRL: Buffer 0000000000002000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-215 [001] d.... 4.730188: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00cf0(0x00000000e4f00000) deq 0x00000000e4f00cd0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.730189: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-215 [001] d.... 4.730191: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00d00(0x00000000e4f00000) deq 0x00000000e4f00cd0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.730193: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-9 [000] d.h.. 4.730209: xhci_handle_event: EVENT: TRB 00000000e4f00cf0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-9 [000] d.h.. 4.730213: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-9 [000] d.h.. 4.730216: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00d00(0x00000000e4f00000) deq 0x00000000e4f00d00(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-9 [000] d.h.. 4.730219: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-9 [000] d.h.. 4.730222: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c230(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] ..... 4.730262: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-215 [001] d.... 4.730266: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 006c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-215 [001] d.... 4.730268: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00d10(0x00000000e4f00000) deq 0x00000000e4f00d00(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.730269: xhci_queue_trb: CTRL: Buffer 00000000e59434e8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-215 [001] d.... 4.730271: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00d20(0x00000000e4f00000) deq 0x00000000e4f00d00(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.730272: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-215 [001] d.... 4.730275: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00d30(0x00000000e4f00000) deq 0x00000000e4f00d00(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.730276: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] dNh.. 4.730311: xhci_handle_event: EVENT: TRB 00000000e4f00d20 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] dNh.. 4.730315: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] dNh.. 4.730319: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00d30(0x00000000e4f00000) deq 0x00000000e4f00d30(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] dNh.. 4.730321: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] dNh.. 4.730324: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c240(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] ..... 4.730404: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-215 [001] d.... 4.730409: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-215 [001] d.... 4.730411: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00d40(0x00000000e4f00000) deq 0x00000000e4f00d30(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.730412: xhci_queue_trb: CTRL: Buffer 00000000e59434e8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-215 [001] d.... 4.730415: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00d50(0x00000000e4f00000) deq 0x00000000e4f00d30(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.730416: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-215 [001] d.... 4.730418: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00d60(0x00000000e4f00000) deq 0x00000000e4f00d30(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.730419: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-9 [000] d.h.. 4.730443: xhci_handle_event: EVENT: TRB 00000000e4f00d50 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-9 [000] d.h.. 4.730448: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-9 [000] d.h.. 4.730451: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00d60(0x00000000e4f00000) deq 0x00000000e4f00d60(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-9 [000] d.h.. 4.730453: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-9 [000] d.h.. 4.730456: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c250(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] ..... 4.730497: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-215 [001] d.... 4.730501: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-215 [001] d.... 4.730503: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00d70(0x00000000e4f00000) deq 0x00000000e4f00d60(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.730505: xhci_queue_trb: CTRL: Buffer 0000000000001022 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-215 [001] d.... 4.730507: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00d80(0x00000000e4f00000) deq 0x00000000e4f00d60(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.730508: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-215 [001] d.... 4.730510: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00d90(0x00000000e4f00000) deq 0x00000000e4f00d60(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.730511: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-9 [000] d.h.. 4.730584: xhci_handle_event: EVENT: TRB 00000000e4f00d80 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-9 [000] d.h.. 4.730588: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-9 [000] d.h.. 4.730591: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00d90(0x00000000e4f00000) deq 0x00000000e4f00d90(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-9 [000] d.h.. 4.730593: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-9 [000] d.h.. 4.730596: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c260(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] ..... 4.730641: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-215 [001] d.... 4.730645: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-215 [001] d.... 4.730647: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00da0(0x00000000e4f00000) deq 0x00000000e4f00d90(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.730648: xhci_queue_trb: CTRL: Buffer 00000000e59434e8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-215 [001] d.... 4.730652: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00db0(0x00000000e4f00000) deq 0x00000000e4f00d90(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.730653: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-215 [001] d.... 4.730655: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00dc0(0x00000000e4f00000) deq 0x00000000e4f00d90(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.730657: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-9 [000] d.h.. 4.730895: xhci_handle_event: EVENT: TRB 00000000e4f00db0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-9 [000] d.h.. 4.730899: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-9 [000] d.h.. 4.730902: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00dc0(0x00000000e4f00000) deq 0x00000000e4f00dc0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-9 [000] d.h.. 4.730904: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-9 [000] d.h.. 4.730908: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c270(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] ..... 4.730951: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-215 [001] d.... 4.730955: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0008 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-215 [001] d.... 4.730957: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00dd0(0x00000000e4f00000) deq 0x00000000e4f00dc0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.730959: xhci_queue_trb: CTRL: Buffer 00000000ffffffff length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-215 [001] d.... 4.730961: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00de0(0x00000000e4f00000) deq 0x00000000e4f00dc0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.730962: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-215 [001] d.... 4.730964: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00df0(0x00000000e4f00000) deq 0x00000000e4f00dc0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.730966: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-9 [000] d.h.. 4.731202: xhci_handle_event: EVENT: TRB 00000000e4f00de0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-9 [000] d.h.. 4.731206: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-9 [000] d.h.. 4.731209: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00df0(0x00000000e4f00000) deq 0x00000000e4f00df0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-9 [000] d.h.. 4.731211: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-9 [000] d.h.. 4.731214: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c280(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] ..... 4.731257: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-215 [001] d.... 4.731260: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0000 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-215 [001] d.... 4.731263: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00e00(0x00000000e4f00000) deq 0x00000000e4f00df0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.731264: xhci_queue_trb: CTRL: Buffer 00000000e59434e8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-215 [001] d.... 4.731266: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00e10(0x00000000e4f00000) deq 0x00000000e4f00df0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.731267: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-215 [001] d.... 4.731269: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00e20(0x00000000e4f00000) deq 0x00000000e4f00df0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.731271: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-9 [000] d.h.. 4.731505: xhci_handle_event: EVENT: TRB 00000000e4f00e10 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-9 [000] d.h.. 4.731509: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-9 [000] d.h.. 4.731513: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00e20(0x00000000e4f00000) deq 0x00000000e4f00e20(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-9 [000] d.h.. 4.731515: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-9 [000] d.h.. 4.731518: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c290(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] ..... 4.731691: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-215 [001] d.... 4.731697: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0024 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-215 [001] d.... 4.731699: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00e30(0x00000000e4f00000) deq 0x00000000e4f00e20(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.731701: xhci_queue_trb: CTRL: Buffer 00000000e59434e8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-215 [001] d.... 4.731703: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00e40(0x00000000e4f00000) deq 0x00000000e4f00e20(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.731704: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-215 [001] d.... 4.731706: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00e50(0x00000000e4f00000) deq 0x00000000e4f00e20(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.731708: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-9 [000] d.h.. 4.731966: xhci_handle_event: EVENT: TRB 00000000e4f00e40 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-9 [000] d.h.. 4.731971: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-9 [000] d.h.. 4.731975: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00e50(0x00000000e4f00000) deq 0x00000000e4f00e50(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-9 [000] d.h.. 4.731980: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-9 [000] d.h.. 4.731984: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c2a0(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] ..... 4.732027: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-215 [001] d.... 4.732030: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0024 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-215 [001] d.... 4.732033: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00e60(0x00000000e4f00000) deq 0x00000000e4f00e50(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.732034: xhci_queue_trb: CTRL: Buffer 0000000001110007 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-215 [001] d.... 4.732036: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00e70(0x00000000e4f00000) deq 0x00000000e4f00e50(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.732037: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-215 [001] d.... 4.732039: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00e80(0x00000000e4f00000) deq 0x00000000e4f00e50(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.732041: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-9 [000] d.h.. 4.732266: xhci_handle_event: EVENT: TRB 00000000e4f00e70 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-9 [000] d.h.. 4.732270: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-9 [000] d.h.. 4.732273: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00e80(0x00000000e4f00000) deq 0x00000000e4f00e80(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-9 [000] d.h.. 4.732275: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-9 [000] d.h.. 4.732278: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c2b0(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] ..... 4.732319: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-215 [001] d.... 4.732322: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 011c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-215 [001] d.... 4.732324: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00e90(0x00000000e4f00000) deq 0x00000000e4f00e80(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.732326: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-215 [001] d.... 4.732328: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00ea0(0x00000000e4f00000) deq 0x00000000e4f00e80(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.732329: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-215 [001] d.... 4.732332: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00eb0(0x00000000e4f00000) deq 0x00000000e4f00e80(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.732333: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-9 [000] d.h.. 4.732349: xhci_handle_event: EVENT: TRB 00000000e4f00ea0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-9 [000] d.h.. 4.732353: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-9 [000] d.h.. 4.732356: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00eb0(0x00000000e4f00000) deq 0x00000000e4f00eb0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-9 [000] d.h.. 4.732359: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-9 [000] d.h.. 4.732362: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c2c0(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] ..... 4.732401: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-215 [001] d.... 4.732405: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 002c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-215 [001] d.... 4.732407: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00ec0(0x00000000e4f00000) deq 0x00000000e4f00eb0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.732408: xhci_queue_trb: CTRL: Buffer 0000000000f830a1 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-215 [001] d.... 4.732410: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00ed0(0x00000000e4f00000) deq 0x00000000e4f00eb0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.732411: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-215 [001] d.... 4.732413: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00ee0(0x00000000e4f00000) deq 0x00000000e4f00eb0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.732415: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-9 [000] d.h.. 4.732432: xhci_handle_event: EVENT: TRB 00000000e4f00ed0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-9 [000] d.h.. 4.732436: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-9 [000] d.h.. 4.732439: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00ee0(0x00000000e4f00000) deq 0x00000000e4f00ee0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-9 [000] d.h.. 4.732441: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-9 [000] d.h.. 4.732444: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c2d0(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] ..... 4.732485: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-215 [001] d.... 4.732489: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-215 [001] d.... 4.732491: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00ef0(0x00000000e4f00000) deq 0x00000000e4f00ee0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.732493: xhci_queue_trb: CTRL: Buffer 00000000e59434e8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-215 [001] d.... 4.732495: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00f00(0x00000000e4f00000) deq 0x00000000e4f00ee0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.732496: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-215 [001] d.... 4.732499: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00f10(0x00000000e4f00000) deq 0x00000000e4f00ee0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.732500: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-9 [000] d.h1. 4.732515: xhci_handle_event: EVENT: TRB 00000000e4f00f00 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-9 [000] d.h1. 4.732519: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-9 [000] d.h1. 4.732522: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00f10(0x00000000e4f00000) deq 0x00000000e4f00f10(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-9 [000] d.h1. 4.732525: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-9 [000] d.h1. 4.732528: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c2e0(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] ..... 4.732566: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-215 [001] d.... 4.732570: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0120 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-215 [001] d.... 4.732572: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00f20(0x00000000e4f00000) deq 0x00000000e4f00f10(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.732574: xhci_queue_trb: CTRL: Buffer 0000000000008100 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-215 [001] d.... 4.732576: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00f30(0x00000000e4f00000) deq 0x00000000e4f00f10(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.732577: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-215 [001] d.... 4.732579: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00f40(0x00000000e4f00000) deq 0x00000000e4f00f10(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.732581: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-9 [000] d.h.. 4.732604: xhci_handle_event: EVENT: TRB 00000000e4f00f30 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-9 [000] d.h.. 4.732611: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-9 [000] d.h.. 4.732615: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00f40(0x00000000e4f00000) deq 0x00000000e4f00f40(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-9 [000] d.h.. 4.732617: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-9 [000] d.h.. 4.732621: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c2f0(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] ..... 4.732762: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-215 [001] d.... 4.732768: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0130 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-215 [001] d.... 4.732770: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00f50(0x00000000e4f00000) deq 0x00000000e4f00f40(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.732772: xhci_queue_trb: CTRL: Buffer 00000000e59434e8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-215 [001] d.... 4.732774: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00f60(0x00000000e4f00000) deq 0x00000000e4f00f40(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.732775: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-215 [001] d.... 4.732777: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00f70(0x00000000e4f00000) deq 0x00000000e4f00f40(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.732779: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.732815: xhci_handle_event: EVENT: TRB 00000000e4f00f60 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.732821: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.732824: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00f70(0x00000000e4f00000) deq 0x00000000e4f00f70(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.732827: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.732832: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c300(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] ..... 4.732889: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-215 [001] d.... 4.732893: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0130 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-215 [001] d.... 4.732896: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00f80(0x00000000e4f00000) deq 0x00000000e4f00f70(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.732897: xhci_queue_trb: CTRL: Buffer 0000000000010001 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-215 [001] d.... 4.732899: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00f90(0x00000000e4f00000) deq 0x00000000e4f00f70(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.732900: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-215 [001] d.... 4.732903: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00fa0(0x00000000e4f00000) deq 0x00000000e4f00f70(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.732904: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.732938: xhci_handle_event: EVENT: TRB 00000000e4f00f90 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.732943: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.732946: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00fa0(0x00000000e4f00000) deq 0x00000000e4f00fa0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.732948: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.732952: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c310(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] ..... 4.733004: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-215 [001] d.... 4.733008: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 010c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-215 [001] d.... 4.733010: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00fb0(0x00000000e4f00000) deq 0x00000000e4f00fa0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.733012: xhci_queue_trb: CTRL: Buffer 0000000040000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-215 [001] d.... 4.733014: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00fc0(0x00000000e4f00000) deq 0x00000000e4f00fa0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.733015: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-215 [001] d.... 4.733017: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00fd0(0x00000000e4f00000) deq 0x00000000e4f00fa0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.733019: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-215 [001] ..... 4.733024: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74f00 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-215 [001] d.... 4.733026: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0110 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-215 [001] d.... 4.733034: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e4f00fe0(0x00000000e4f00000) deq 0x00000000e4f00fa0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] d.... 4.733035: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-215 [001] d.... 4.733038: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1000(0x00000000e58a1000) deq 0x00000000e4f00fa0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.733040: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-215 [001] d.... 4.733042: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1010(0x00000000e58a1000) deq 0x00000000e4f00fa0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.733043: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-215 [001] ..... 4.733049: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74e40 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-215 [001] d.... 4.733052: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-215 [001] d.... 4.733054: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1020(0x00000000e58a1000) deq 0x00000000e4f00fa0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.733055: xhci_queue_trb: CTRL: Buffer 0000000000002000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-215 [001] d.... 4.733057: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1030(0x00000000e58a1000) deq 0x00000000e4f00fa0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.733058: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-215 [001] d.... 4.733061: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1040(0x00000000e58a1000) deq 0x00000000e4f00fa0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.733062: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-215 [001] ..... 4.733071: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74d80 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-215 [001] d.... 4.733074: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0068 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-215 [001] d.... 4.733076: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1050(0x00000000e58a1000) deq 0x00000000e4f00fa0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.733077: xhci_queue_trb: CTRL: Buffer 00000000e59439b0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-215 [001] d.... 4.733079: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1060(0x00000000e58a1000) deq 0x00000000e4f00fa0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.733081: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-215 [001] d.... 4.733082: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1070(0x00000000e58a1000) deq 0x00000000e4f00fa0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.733084: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.733114: xhci_handle_event: EVENT: TRB 00000000e4f00fc0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.733118: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.733121: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1070(0x00000000e58a1000) deq 0x00000000e4f00fd0(0x00000000e4f00000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 4.733124: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e746c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<idle>-0 [000] d.h.. 4.733127: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c320(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.733128: xhci_handle_event: EVENT: TRB 00000000e58a1000 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.733132: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 4.733134: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1070(0x00000000e58a1000) deq 0x00000000e58a1010(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 4.733136: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74f00 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<idle>-0 [000] d.h.. 4.733138: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c330(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.733139: xhci_handle_event: EVENT: TRB 00000000e58a1030 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.733142: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 4.733144: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1070(0x00000000e58a1000) deq 0x00000000e58a1040(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 4.733146: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74e40 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<idle>-0 [000] d.h.. 4.733147: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c340(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.733148: xhci_handle_event: EVENT: TRB 00000000e58a1060 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.733151: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 4.733154: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1070(0x00000000e58a1000) deq 0x00000000e58a1070(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 4.733156: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74d80 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.733157: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c350(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] ..... 4.739057: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74d80 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-215 [001] d.... 4.739062: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0068 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-215 [001] d.... 4.739065: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1080(0x00000000e58a1000) deq 0x00000000e58a1070(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.739067: xhci_queue_trb: CTRL: Buffer 0000000000008000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-215 [001] d.... 4.739069: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1090(0x00000000e58a1000) deq 0x00000000e58a1070(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.739070: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-215 [001] d.... 4.739073: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a10a0(0x00000000e58a1000) deq 0x00000000e58a1070(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.739074: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.H.. 4.739133: xhci_handle_event: EVENT: TRB 00000000e58a1090 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.H.. 4.739138: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.H.. 4.739142: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a10a0(0x00000000e58a1000) deq 0x00000000e58a10a0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.H.. 4.739145: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74d80 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.H.. 4.739148: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c360(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] ..... 4.739240: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74d80 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-215 [001] d.... 4.739245: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-215 [001] d.... 4.739247: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a10b0(0x00000000e58a1000) deq 0x00000000e58a10a0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.739249: xhci_queue_trb: CTRL: Buffer 0000000000002008 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-215 [001] d.... 4.739251: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a10c0(0x00000000e58a1000) deq 0x00000000e58a10a0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.739252: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-215 [001] d.... 4.739255: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a10d0(0x00000000e58a1000) deq 0x00000000e58a10a0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.739256: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.739384: xhci_handle_event: EVENT: TRB 00000000e58a10c0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.739389: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 4.739392: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a10d0(0x00000000e58a1000) deq 0x00000000e58a10d0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 4.739395: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74d80 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.739399: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c370(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] ..... 4.739454: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74d80 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-215 [001] d.... 4.739458: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0010 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-215 [001] d.... 4.739461: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a10e0(0x00000000e58a1000) deq 0x00000000e58a10d0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.739462: xhci_queue_trb: CTRL: Buffer 0000000000000004 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-215 [001] d.... 4.739464: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a10f0(0x00000000e58a1000) deq 0x00000000e58a10d0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.739466: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-215 [001] d.... 4.739468: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1100(0x00000000e58a1000) deq 0x00000000e58a10d0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.739469: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.739506: xhci_handle_event: EVENT: TRB 00000000e58a10f0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.739511: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 4.739514: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1100(0x00000000e58a1000) deq 0x00000000e58a1100(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 4.739517: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74d80 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.739520: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c380(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] ..... 4.739572: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74d80 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-215 [001] d.... 4.739576: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-215 [001] d.... 4.739578: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1110(0x00000000e58a1000) deq 0x00000000e58a1100(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.739580: xhci_queue_trb: CTRL: Buffer 000000000000200c length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-215 [001] d.... 4.739582: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1120(0x00000000e58a1000) deq 0x00000000e58a1100(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.739583: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-215 [001] d.... 4.739585: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1130(0x00000000e58a1000) deq 0x00000000e58a1100(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.739587: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.739622: xhci_handle_event: EVENT: TRB 00000000e58a1120 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.739626: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 4.739630: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1130(0x00000000e58a1000) deq 0x00000000e58a1130(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 4.739632: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74d80 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.739636: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c390(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] ..... 4.739699: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74d80 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-215 [001] d.... 4.739703: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-215 [001] d.... 4.739705: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1140(0x00000000e58a1000) deq 0x00000000e58a1130(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.739707: xhci_queue_trb: CTRL: Buffer 00000000e59439b0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-215 [001] d.... 4.739710: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1150(0x00000000e58a1000) deq 0x00000000e58a1130(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.739711: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-215 [001] d.... 4.739713: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1160(0x00000000e58a1000) deq 0x00000000e58a1130(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.739715: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.739750: xhci_handle_event: EVENT: TRB 00000000e58a1150 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.739754: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 4.739758: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1160(0x00000000e58a1000) deq 0x00000000e58a1160(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 4.739760: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74d80 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.739764: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c3a0(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] ..... 4.739819: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74d80 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-215 [001] d.... 4.739824: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-215 [001] d.... 4.739826: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1170(0x00000000e58a1000) deq 0x00000000e58a1160(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.739828: xhci_queue_trb: CTRL: Buffer 0000000000000801 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-215 [001] d.... 4.739830: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1180(0x00000000e58a1000) deq 0x00000000e58a1160(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.739831: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-215 [001] d.... 4.739833: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1190(0x00000000e58a1000) deq 0x00000000e58a1160(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.739834: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.739996: xhci_handle_event: EVENT: TRB 00000000e58a1180 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.740001: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 4.740005: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1190(0x00000000e58a1000) deq 0x00000000e58a1190(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 4.740007: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74d80 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.740011: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c3b0(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] ..... 4.740068: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74d80 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-215 [001] d.... 4.740073: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-215 [001] d.... 4.740075: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a11a0(0x00000000e58a1000) deq 0x00000000e58a1190(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.740076: xhci_queue_trb: CTRL: Buffer 00000000e59439b0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-215 [001] d.... 4.740078: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a11b0(0x00000000e58a1000) deq 0x00000000e58a1190(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.740080: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-215 [001] d.... 4.740082: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a11c0(0x00000000e58a1000) deq 0x00000000e58a1190(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.740083: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-255 [000] d.h.. 4.740107: xhci_handle_event: EVENT: TRB 00000000e58a11b0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-255 [000] d.h.. 4.740111: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-255 [000] d.h.. 4.740115: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a11c0(0x00000000e58a1000) deq 0x00000000e58a11c0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-255 [000] d.h.. 4.740117: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74d80 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-255 [000] d.h.. 4.740120: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c3c0(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] ..... 4.740162: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74d80 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-215 [001] d.... 4.740166: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-215 [001] d.... 4.740168: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a11d0(0x00000000e58a1000) deq 0x00000000e58a11c0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.740170: xhci_queue_trb: CTRL: Buffer 00000000e59439b0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-215 [001] d.... 4.740172: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a11e0(0x00000000e58a1000) deq 0x00000000e58a11c0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.740173: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-215 [001] d.... 4.740175: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a11f0(0x00000000e58a1000) deq 0x00000000e58a11c0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.740177: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-255 [000] d.h.. 4.740194: xhci_handle_event: EVENT: TRB 00000000e58a11e0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-255 [000] d.h.. 4.740198: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-255 [000] d.h.. 4.740201: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a11f0(0x00000000e58a1000) deq 0x00000000e58a11f0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-255 [000] d.h.. 4.740203: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74d80 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-255 [000] d.h.. 4.740206: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c3d0(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] ..... 4.740253: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74d80 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-215 [001] d.... 4.740257: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-215 [001] d.... 4.740259: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1200(0x00000000e58a1000) deq 0x00000000e58a11f0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.740260: xhci_queue_trb: CTRL: Buffer 00000000e59439b0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-215 [001] d.... 4.740262: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1210(0x00000000e58a1000) deq 0x00000000e58a11f0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.740263: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-215 [001] d.... 4.740266: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1220(0x00000000e58a1000) deq 0x00000000e58a11f0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.740267: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-255 [000] d.h.. 4.740738: xhci_handle_event: EVENT: TRB 00000000e58a1210 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-255 [000] d.h.. 4.740742: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-255 [000] d.h.. 4.740745: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1220(0x00000000e58a1000) deq 0x00000000e58a1220(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-255 [000] d.h.. 4.740747: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74d80 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-255 [000] d.h.. 4.740750: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c3e0(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] ..... 4.740791: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74d80 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-215 [001] d.... 4.740795: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-215 [001] d.... 4.740797: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1230(0x00000000e58a1000) deq 0x00000000e58a1220(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.740799: xhci_queue_trb: CTRL: Buffer 0000000000003000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-215 [001] d.... 4.740801: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1240(0x00000000e58a1000) deq 0x00000000e58a1220(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.740802: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-215 [001] d.... 4.740804: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1250(0x00000000e58a1000) deq 0x00000000e58a1220(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.740805: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-255 [000] d.h.. 4.741069: xhci_handle_event: EVENT: TRB 00000000e58a1240 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-255 [000] d.h.. 4.741073: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-255 [000] d.h.. 4.741076: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1250(0x00000000e58a1000) deq 0x00000000e58a1250(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-255 [000] d.h.. 4.741078: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74d80 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-255 [000] d.h.. 4.741082: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c3f0(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] ..... 4.741122: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74d80 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-215 [001] d.... 4.741125: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-215 [001] d.... 4.741127: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1260(0x00000000e58a1000) deq 0x00000000e58a1250(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.741129: xhci_queue_trb: CTRL: Buffer 0000000000000803 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-215 [001] d.... 4.741131: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1270(0x00000000e58a1000) deq 0x00000000e58a1250(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.741132: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-215 [001] d.... 4.741134: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1280(0x00000000e58a1000) deq 0x00000000e58a1250(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.741136: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-255 [000] d.h.. 4.741366: xhci_handle_event: EVENT: TRB 00000000e58a1270 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-255 [000] d.h.. 4.741370: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-255 [000] d.h.. 4.741373: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1280(0x00000000e58a1000) deq 0x00000000e58a1280(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-255 [000] d.h.. 4.741376: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74d80 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-255 [000] d.h.. 4.741378: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c400(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] ..... 4.741419: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74d80 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-215 [001] d.... 4.741423: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-215 [001] d.... 4.741426: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1290(0x00000000e58a1000) deq 0x00000000e58a1280(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.741427: xhci_queue_trb: CTRL: Buffer 00000000e59439b0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-215 [001] d.... 4.741429: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a12a0(0x00000000e58a1000) deq 0x00000000e58a1280(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.741430: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-215 [001] d.... 4.741432: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a12b0(0x00000000e58a1000) deq 0x00000000e58a1280(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] d.... 4.741434: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-255 [000] d.h.. 4.741665: xhci_handle_event: EVENT: TRB 00000000e58a12a0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-255 [000] d.h.. 4.741669: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-255 [000] d.h.. 4.741672: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a12b0(0x00000000e58a1000) deq 0x00000000e58a12b0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-255 [000] d.h.. 4.741674: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74d80 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-255 [000] d.h.. 4.741677: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c410(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] .N... 4.741732: xhci_urb_enqueue: 1-1.2.1 ep3in-intr: urb ffffff8024e5b6c0 pipe 1073841280 slot 3 length 0/16 sgs 0/0 stream 0 flags 00010300
<task>-215 [001] dN... 4.741739: xhci_queue_trb: INTR: Buffer 00000000e4eef400 length 16 TD size 0 intr 0 type 'Normal' flags b:i:I:c:s:I:e:c
<task>-215 [001] dN... 4.741742: xhci_inc_enq: INTR ffffff8023ae9280: enq 0x00000000e4e8f010(0x00000000e4e8f000) deq 0x00000000e4e8f000(0x00000000e4e8f000) segs 2 stream 0 bounce 16 cycle 1
<task>-215 [001] dN... 4.741744: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep3in
<task>-215 [001] bN... 4.749850: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74d80 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-215 [001] DN... 4.749862: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 010c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-215 [001] DN... 4.749864: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a12c0(0x00000000e58a1000) deq 0x00000000e58a12b0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] DN... 4.749866: xhci_queue_trb: CTRL: Buffer 0000000040000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-215 [001] DN... 4.749868: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a12d0(0x00000000e58a1000) deq 0x00000000e58a12b0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] DN... 4.749869: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-215 [001] DN... 4.749871: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a12e0(0x00000000e58a1000) deq 0x00000000e58a12b0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] DN... 4.749873: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-215 [001] bN... 4.749879: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74cc0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-215 [001] DN... 4.749882: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0110 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-215 [001] DN... 4.749926: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a12f0(0x00000000e58a1000) deq 0x00000000e58a12b0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] DN... 4.749929: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-215 [001] DN... 4.749935: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1300(0x00000000e58a1000) deq 0x00000000e58a12b0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] DN... 4.749936: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-215 [001] DN... 4.749938: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1310(0x00000000e58a1000) deq 0x00000000e58a12b0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] DN... 4.749939: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-215 [001] bN... 4.749945: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74c00 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<idle>-0 [000] d.h.. 4.750038: xhci_handle_event: EVENT: TRB 00000000e58a12d0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.750049: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 4.750054: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1310(0x00000000e58a1000) deq 0x00000000e58a12e0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 4.750061: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74d80 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<idle>-0 [000] d.h.. 4.750067: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c420(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.750068: xhci_handle_event: EVENT: TRB 00000000e58a1300 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.750071: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 4.750074: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1310(0x00000000e58a1000) deq 0x00000000e58a1310(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 4.750076: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74cc0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<idle>-0 [000] d.h.. 4.750077: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c430(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] DN... 4.750138: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-215 [001] DN... 4.750141: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1320(0x00000000e58a1000) deq 0x00000000e58a1310(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] DN... 4.750143: xhci_queue_trb: CTRL: Buffer 000000000000200c length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-215 [001] DN... 4.750145: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1330(0x00000000e58a1000) deq 0x00000000e58a1310(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] DN... 4.750146: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-215 [001] DN... 4.750148: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1340(0x00000000e58a1000) deq 0x00000000e58a1310(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] DN... 4.750149: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-215 [001] bN... 4.750300: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74a80 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-215 [001] DN... 4.750304: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 010c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-215 [001] DN... 4.750307: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1350(0x00000000e58a1000) deq 0x00000000e58a1310(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] DN... 4.750309: xhci_queue_trb: CTRL: Buffer 0000000040000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-215 [001] DN... 4.750311: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1360(0x00000000e58a1000) deq 0x00000000e58a1310(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] DN... 4.750312: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-215 [001] DN... 4.750314: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1370(0x00000000e58a1000) deq 0x00000000e58a1310(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] DN... 4.750315: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-215 [001] bN... 4.750320: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e749c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-215 [001] DN... 4.750323: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0110 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-215 [001] DN... 4.750325: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1380(0x00000000e58a1000) deq 0x00000000e58a1310(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] DN... 4.750327: xhci_queue_trb: CTRL: Buffer 0000000080000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-215 [001] DN... 4.750329: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1390(0x00000000e58a1000) deq 0x00000000e58a1310(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] DN... 4.750330: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-215 [001] DN... 4.750332: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a13a0(0x00000000e58a1000) deq 0x00000000e58a1310(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] DN... 4.750340: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-215 [001] bN... 4.750362: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74900 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-215 [001] DN... 4.750365: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-215 [001] DN... 4.750368: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a13b0(0x00000000e58a1000) deq 0x00000000e58a1310(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] DN... 4.750369: xhci_queue_trb: CTRL: Buffer 000000000000200c length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-215 [001] DN... 4.750371: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a13c0(0x00000000e58a1000) deq 0x00000000e58a1310(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] DN... 4.750373: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-215 [001] DN... 4.750375: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a13d0(0x00000000e58a1000) deq 0x00000000e58a1310(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] DN... 4.750376: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-59 [001] ..... 4.750481: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.750485: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-59 [001] d.... 4.750487: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a13e0(0x00000000e58a1000) deq 0x00000000e58a1310(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.750489: xhci_queue_trb: CTRL: Buffer 00000000e5943a10 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-59 [001] d.... 4.750491: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a13f0(0x00000000e58a1000) deq 0x00000000e58a1310(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.750492: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-59 [001] d.... 4.750494: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1400(0x00000000e58a1000) deq 0x00000000e58a1310(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.750496: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.752335: xhci_handle_event: EVENT: TRB 00000000e58a1330 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.752350: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 4.752357: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1400(0x00000000e58a1000) deq 0x00000000e58a1340(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 4.752365: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74c00 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<idle>-0 [000] d.h.. 4.752378: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c440(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.752380: xhci_handle_event: EVENT: TRB 00000000e58a1360 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.752383: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 4.752386: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1400(0x00000000e58a1000) deq 0x00000000e58a1370(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 4.752391: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74a80 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<idle>-0 [000] d.h.. 4.752393: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c450(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.752394: xhci_handle_event: EVENT: TRB 00000000e58a1390 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.752397: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 4.752400: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1400(0x00000000e58a1000) deq 0x00000000e58a13a0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 4.752402: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e749c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<idle>-0 [000] d.h.. 4.752403: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c460(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.752404: xhci_handle_event: EVENT: TRB 00000000e58a13c0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.752407: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 4.752410: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1400(0x00000000e58a1000) deq 0x00000000e58a13d0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 4.752412: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74900 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<idle>-0 [000] d.h.. 4.752413: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c470(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.752415: xhci_handle_event: EVENT: TRB 00000000e58a13f0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.752418: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 4.752421: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1400(0x00000000e58a1000) deq 0x00000000e58a1400(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 4.752423: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.752424: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c480(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.776736: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.776756: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-59 [001] d.... 4.776760: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1410(0x00000000e58a1000) deq 0x00000000e58a1400(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.776763: xhci_queue_trb: CTRL: Buffer 0000000000000901 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-59 [001] d.... 4.776765: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1420(0x00000000e58a1000) deq 0x00000000e58a1400(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.776767: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-59 [001] d.... 4.776769: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1430(0x00000000e58a1000) deq 0x00000000e58a1400(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.776772: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-51 [000] D.h.. 4.776817: xhci_handle_event: EVENT: TRB 00000000e58a1420 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-51 [000] D.h.. 4.776830: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-51 [000] D.h.. 4.776836: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1430(0x00000000e58a1000) deq 0x00000000e58a1430(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-51 [000] D.h.. 4.776842: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-51 [000] D.h.. 4.776849: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c490(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.777187: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.777196: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-59 [001] d.... 4.777199: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1440(0x00000000e58a1000) deq 0x00000000e58a1430(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.777201: xhci_queue_trb: CTRL: Buffer 00000000e5943a10 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-59 [001] d.... 4.777203: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1450(0x00000000e58a1000) deq 0x00000000e58a1430(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.777205: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-59 [001] d.... 4.777207: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1460(0x00000000e58a1000) deq 0x00000000e58a1430(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.777209: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-188 [000] d.h.. 4.777230: xhci_handle_event: EVENT: TRB 00000000e58a1450 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-188 [000] d.h.. 4.777235: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-188 [000] d.h.. 4.777240: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1460(0x00000000e58a1000) deq 0x00000000e58a1460(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-188 [000] d.h.. 4.777243: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-188 [000] d.h.. 4.777248: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c4a0(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.777308: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.777312: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-59 [001] d.... 4.777315: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1470(0x00000000e58a1000) deq 0x00000000e58a1460(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.777316: xhci_queue_trb: CTRL: Buffer 00000000e5943a10 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-59 [001] d.... 4.777318: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1480(0x00000000e58a1000) deq 0x00000000e58a1460(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.777320: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-59 [001] d.... 4.777321: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1490(0x00000000e58a1000) deq 0x00000000e58a1460(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.777323: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-188 [000] d.h.. 4.777340: xhci_handle_event: EVENT: TRB 00000000e58a1480 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-188 [000] d.h.. 4.777344: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-188 [000] d.h.. 4.777348: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1490(0x00000000e58a1000) deq 0x00000000e58a1490(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-188 [000] d.h.. 4.777350: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-188 [000] d.h.. 4.777353: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c4b0(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.777404: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.777408: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-59 [001] d.... 4.777410: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a14a0(0x00000000e58a1000) deq 0x00000000e58a1490(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.777411: xhci_queue_trb: CTRL: Buffer 00000000e5943a10 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-59 [001] d.... 4.777414: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a14b0(0x00000000e58a1000) deq 0x00000000e58a1490(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.777415: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-59 [001] d.... 4.777417: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a14c0(0x00000000e58a1000) deq 0x00000000e58a1490(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.777418: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-188 [000] d.h.. 4.777438: xhci_handle_event: EVENT: TRB 00000000e58a14b0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-188 [000] d.h.. 4.777442: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-188 [000] d.h.. 4.777446: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a14c0(0x00000000e58a1000) deq 0x00000000e58a14c0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-188 [000] d.h.. 4.777448: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-188 [000] d.h.. 4.777451: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c4c0(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.777501: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.777505: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-59 [001] d.... 4.777507: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a14d0(0x00000000e58a1000) deq 0x00000000e58a14c0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.777509: xhci_queue_trb: CTRL: Buffer 0000000000000841 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-59 [001] d.... 4.777511: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a14e0(0x00000000e58a1000) deq 0x00000000e58a14c0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.777512: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-59 [001] d.... 4.777514: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a14f0(0x00000000e58a1000) deq 0x00000000e58a14c0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.777516: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-188 [000] d.h.. 4.777532: xhci_handle_event: EVENT: TRB 00000000e58a14e0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-188 [000] d.h.. 4.777536: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-188 [000] d.h.. 4.777539: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a14f0(0x00000000e58a1000) deq 0x00000000e58a14f0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-188 [000] d.h.. 4.777541: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-188 [000] d.h.. 4.777544: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c4d0(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.777602: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.777606: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-59 [001] d.... 4.777609: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1500(0x00000000e58a1000) deq 0x00000000e58a14f0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.777610: xhci_queue_trb: CTRL: Buffer 00000000e5943a10 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-59 [001] d.... 4.777612: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1510(0x00000000e58a1000) deq 0x00000000e58a14f0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.777613: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-59 [001] d.... 4.777615: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1520(0x00000000e58a1000) deq 0x00000000e58a14f0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.777616: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-188 [000] d.h.. 4.777633: xhci_handle_event: EVENT: TRB 00000000e58a1510 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-188 [000] d.h.. 4.777637: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-188 [000] d.h.. 4.777640: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1520(0x00000000e58a1000) deq 0x00000000e58a1520(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-188 [000] d.h.. 4.777642: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-188 [000] d.h.. 4.777645: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c4e0(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.777689: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.777693: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-59 [001] d.... 4.777695: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1530(0x00000000e58a1000) deq 0x00000000e58a1520(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.777696: xhci_queue_trb: CTRL: Buffer 00000000e5943a10 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-59 [001] d.... 4.777698: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1540(0x00000000e58a1000) deq 0x00000000e58a1520(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.777700: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-59 [001] d.... 4.777702: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1550(0x00000000e58a1000) deq 0x00000000e58a1520(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.777703: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-188 [000] d.h.. 4.777720: xhci_handle_event: EVENT: TRB 00000000e58a1540 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-188 [000] d.h.. 4.777724: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-188 [000] d.h.. 4.777727: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1550(0x00000000e58a1000) deq 0x00000000e58a1550(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-188 [000] d.h.. 4.777729: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-188 [000] d.h.. 4.777732: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c4f0(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.777777: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.777781: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-59 [001] d.... 4.777783: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1560(0x00000000e58a1000) deq 0x00000000e58a1550(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.777784: xhci_queue_trb: CTRL: Buffer 00000000e5943a10 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-59 [001] d.... 4.777786: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1570(0x00000000e58a1000) deq 0x00000000e58a1550(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.777788: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-59 [001] d.... 4.777790: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1580(0x00000000e58a1000) deq 0x00000000e58a1550(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.777791: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-188 [000] d.h.. 4.777809: xhci_handle_event: EVENT: TRB 00000000e58a1570 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-188 [000] d.h.. 4.777813: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-188 [000] d.h.. 4.777817: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1580(0x00000000e58a1000) deq 0x00000000e58a1580(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-188 [000] d.h.. 4.777819: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-188 [000] d.h.. 4.777822: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c500(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.777863: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.777867: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-59 [001] d.... 4.777869: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1590(0x00000000e58a1000) deq 0x00000000e58a1580(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.777870: xhci_queue_trb: CTRL: Buffer 0000000000000801 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-59 [001] d.... 4.777872: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a15a0(0x00000000e58a1000) deq 0x00000000e58a1580(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.777874: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-59 [001] d.... 4.777876: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a15b0(0x00000000e58a1000) deq 0x00000000e58a1580(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.777877: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-188 [000] d.h.. 4.777895: xhci_handle_event: EVENT: TRB 00000000e58a15a0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-188 [000] d.h.. 4.777899: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-188 [000] d.h.. 4.777902: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a15b0(0x00000000e58a1000) deq 0x00000000e58a15b0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-188 [000] d.h.. 4.777904: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-188 [000] d.h.. 4.777907: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c510(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.777948: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.777952: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-59 [001] d.... 4.777955: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a15c0(0x00000000e58a1000) deq 0x00000000e58a15b0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.777956: xhci_queue_trb: CTRL: Buffer 00000000e5943a10 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-59 [001] d.... 4.777958: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a15d0(0x00000000e58a1000) deq 0x00000000e58a15b0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.777959: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-59 [001] d.... 4.777961: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a15e0(0x00000000e58a1000) deq 0x00000000e58a15b0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.777963: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-188 [000] d.h.. 4.777981: xhci_handle_event: EVENT: TRB 00000000e58a15d0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-188 [000] d.h.. 4.777985: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-188 [000] d.h.. 4.777988: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a15e0(0x00000000e58a1000) deq 0x00000000e58a15e0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-188 [000] d.h.. 4.777990: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-188 [000] d.h.. 4.777993: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c520(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.778038: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.778042: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-59 [001] d.... 4.778044: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a15f0(0x00000000e58a1000) deq 0x00000000e58a15e0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.778046: xhci_queue_trb: CTRL: Buffer 00000000e5943a10 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-59 [001] d.... 4.778048: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1600(0x00000000e58a1000) deq 0x00000000e58a15e0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.778049: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-59 [001] d.... 4.778051: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1610(0x00000000e58a1000) deq 0x00000000e58a15e0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.778053: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-188 [000] d.h.. 4.778073: xhci_handle_event: EVENT: TRB 00000000e58a1600 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-188 [000] d.h.. 4.778077: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-188 [000] d.h.. 4.778080: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1610(0x00000000e58a1000) deq 0x00000000e58a1610(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-188 [000] d.h.. 4.778082: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-188 [000] d.h.. 4.778085: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c530(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.778130: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.778134: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-59 [001] d.... 4.778136: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1620(0x00000000e58a1000) deq 0x00000000e58a1610(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.778138: xhci_queue_trb: CTRL: Buffer 00000000e5943a10 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-59 [001] d.... 4.778140: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1630(0x00000000e58a1000) deq 0x00000000e58a1610(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.778141: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-59 [001] d.... 4.778143: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1640(0x00000000e58a1000) deq 0x00000000e58a1610(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.778144: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-188 [000] d.h.. 4.778162: xhci_handle_event: EVENT: TRB 00000000e58a1630 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-188 [000] d.h.. 4.778167: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-188 [000] d.h.. 4.778170: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1640(0x00000000e58a1000) deq 0x00000000e58a1640(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-188 [000] d.h.. 4.778172: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-188 [000] d.h.. 4.778175: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c540(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.778216: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.778220: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-59 [001] d.... 4.778222: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1650(0x00000000e58a1000) deq 0x00000000e58a1640(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.778223: xhci_queue_trb: CTRL: Buffer 0000000000000801 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-59 [001] d.... 4.778225: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1660(0x00000000e58a1000) deq 0x00000000e58a1640(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.778227: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-59 [001] d.... 4.778229: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1670(0x00000000e58a1000) deq 0x00000000e58a1640(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.778230: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-188 [000] d.h.. 4.778246: xhci_handle_event: EVENT: TRB 00000000e58a1660 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-188 [000] d.h.. 4.778250: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-188 [000] d.h.. 4.778253: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1670(0x00000000e58a1000) deq 0x00000000e58a1670(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-188 [000] d.h.. 4.778256: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-188 [000] d.h.. 4.778259: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c550(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.778300: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.778304: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-59 [001] d.... 4.778306: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1680(0x00000000e58a1000) deq 0x00000000e58a1670(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.778307: xhci_queue_trb: CTRL: Buffer 00000000e5943a10 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-59 [001] d.... 4.778310: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1690(0x00000000e58a1000) deq 0x00000000e58a1670(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.778312: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-59 [001] d.... 4.778314: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a16a0(0x00000000e58a1000) deq 0x00000000e58a1670(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.778315: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-188 [000] d.h.. 4.778337: xhci_handle_event: EVENT: TRB 00000000e58a1690 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-188 [000] d.h.. 4.778341: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-188 [000] d.h.. 4.778344: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a16a0(0x00000000e58a1000) deq 0x00000000e58a16a0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-188 [000] d.h.. 4.778346: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-188 [000] d.h.. 4.778349: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c560(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.778421: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.778425: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-59 [001] d.... 4.778427: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a16b0(0x00000000e58a1000) deq 0x00000000e58a16a0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.778429: xhci_queue_trb: CTRL: Buffer 00000000e5943a10 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-59 [001] d.... 4.778431: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a16c0(0x00000000e58a1000) deq 0x00000000e58a16a0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.778432: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-59 [001] d.... 4.778434: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a16d0(0x00000000e58a1000) deq 0x00000000e58a16a0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.778435: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-188 [000] d.h.. 4.778452: xhci_handle_event: EVENT: TRB 00000000e58a16c0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-188 [000] d.h.. 4.778456: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-188 [000] d.h.. 4.778460: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a16d0(0x00000000e58a1000) deq 0x00000000e58a16d0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-188 [000] d.h.. 4.778462: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-188 [000] d.h.. 4.778465: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c570(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.778508: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.778512: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-59 [001] d.... 4.778514: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a16e0(0x00000000e58a1000) deq 0x00000000e58a16d0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.778515: xhci_queue_trb: CTRL: Buffer 00000000e5943a10 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-59 [001] d.... 4.778517: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a16f0(0x00000000e58a1000) deq 0x00000000e58a16d0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.778519: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-59 [001] d.... 4.778521: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1700(0x00000000e58a1000) deq 0x00000000e58a16d0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.778522: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-188 [000] d.h.. 4.778539: xhci_handle_event: EVENT: TRB 00000000e58a16f0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-188 [000] d.h.. 4.778543: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-188 [000] d.h.. 4.778546: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1700(0x00000000e58a1000) deq 0x00000000e58a1700(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-188 [000] d.h.. 4.778548: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-188 [000] d.h.. 4.778551: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c580(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.778591: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.778595: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-59 [001] d.... 4.778597: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1710(0x00000000e58a1000) deq 0x00000000e58a1700(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.778598: xhci_queue_trb: CTRL: Buffer 0000000000000841 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-59 [001] d.... 4.778600: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1720(0x00000000e58a1000) deq 0x00000000e58a1700(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.778601: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-59 [001] d.... 4.778603: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1730(0x00000000e58a1000) deq 0x00000000e58a1700(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.778605: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-188 [000] d.h.. 4.778621: xhci_handle_event: EVENT: TRB 00000000e58a1720 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-188 [000] d.h.. 4.778625: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-188 [000] d.h.. 4.778628: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1730(0x00000000e58a1000) deq 0x00000000e58a1730(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-188 [000] d.h.. 4.778630: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-188 [000] d.h.. 4.778633: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c590(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.778674: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.778678: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-59 [001] d.... 4.778680: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1740(0x00000000e58a1000) deq 0x00000000e58a1730(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.778681: xhci_queue_trb: CTRL: Buffer 00000000e5943a10 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-59 [001] d.... 4.778683: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1750(0x00000000e58a1000) deq 0x00000000e58a1730(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.778685: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-59 [001] d.... 4.778687: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1760(0x00000000e58a1000) deq 0x00000000e58a1730(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.778688: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-188 [000] d.h.. 4.778704: xhci_handle_event: EVENT: TRB 00000000e58a1750 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-188 [000] d.h.. 4.778708: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-188 [000] d.h.. 4.778712: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1760(0x00000000e58a1000) deq 0x00000000e58a1760(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-188 [000] d.h.. 4.778714: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-188 [000] d.h.. 4.778717: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c5a0(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.778758: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.778762: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-59 [001] d.... 4.778764: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1770(0x00000000e58a1000) deq 0x00000000e58a1760(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.778766: xhci_queue_trb: CTRL: Buffer 00000000e5943a10 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-59 [001] d.... 4.778768: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1780(0x00000000e58a1000) deq 0x00000000e58a1760(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.778769: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-59 [001] d.... 4.778771: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1790(0x00000000e58a1000) deq 0x00000000e58a1760(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.778773: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-188 [000] d.h.. 4.778790: xhci_handle_event: EVENT: TRB 00000000e58a1780 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-188 [000] d.h.. 4.778794: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-188 [000] d.h.. 4.778797: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1790(0x00000000e58a1000) deq 0x00000000e58a1790(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-188 [000] d.h.. 4.778799: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-188 [000] d.h.. 4.778802: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c5b0(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.778845: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.778848: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-59 [001] d.... 4.778850: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a17a0(0x00000000e58a1000) deq 0x00000000e58a1790(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.778852: xhci_queue_trb: CTRL: Buffer 00000000e5943a10 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-59 [001] d.... 4.778854: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a17b0(0x00000000e58a1000) deq 0x00000000e58a1790(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.778855: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-59 [001] d.... 4.778857: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a17c0(0x00000000e58a1000) deq 0x00000000e58a1790(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.778859: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-188 [000] d.h.. 4.778875: xhci_handle_event: EVENT: TRB 00000000e58a17b0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-188 [000] d.h.. 4.778879: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-188 [000] d.h.. 4.778882: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a17c0(0x00000000e58a1000) deq 0x00000000e58a17c0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-188 [000] d.h.. 4.778884: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-188 [000] d.h.. 4.778887: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c5c0(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.778930: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.778934: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-59 [001] d.... 4.778936: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a17d0(0x00000000e58a1000) deq 0x00000000e58a17c0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.778937: xhci_queue_trb: CTRL: Buffer 0000000000000841 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-59 [001] d.... 4.778940: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a17e0(0x00000000e58a1000) deq 0x00000000e58a17c0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.778941: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-59 [001] d.... 4.778943: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a17f0(0x00000000e58a1000) deq 0x00000000e58a17c0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.778944: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-188 [000] d.h.. 4.778960: xhci_handle_event: EVENT: TRB 00000000e58a17e0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-188 [000] d.h.. 4.778964: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-188 [000] d.h.. 4.778967: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a17f0(0x00000000e58a1000) deq 0x00000000e58a17f0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-188 [000] d.h.. 4.778970: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-188 [000] d.h.. 4.778973: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c5d0(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.779011: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.779015: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-59 [001] d.... 4.779017: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1800(0x00000000e58a1000) deq 0x00000000e58a17f0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.779019: xhci_queue_trb: CTRL: Buffer 00000000e5943a10 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-59 [001] d.... 4.779021: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1810(0x00000000e58a1000) deq 0x00000000e58a17f0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.779022: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-59 [001] d.... 4.779024: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1820(0x00000000e58a1000) deq 0x00000000e58a17f0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.779025: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-188 [000] d.h.. 4.779041: xhci_handle_event: EVENT: TRB 00000000e58a1810 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-188 [000] d.h.. 4.779045: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-188 [000] d.h.. 4.779048: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1820(0x00000000e58a1000) deq 0x00000000e58a1820(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-188 [000] d.h.. 4.779050: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-188 [000] d.h.. 4.779053: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c5e0(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.779096: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.779100: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-59 [001] d.... 4.779102: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1830(0x00000000e58a1000) deq 0x00000000e58a1820(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.779104: xhci_queue_trb: CTRL: Buffer 00000000e5943a10 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-59 [001] d.... 4.779106: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1840(0x00000000e58a1000) deq 0x00000000e58a1820(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.779107: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-59 [001] d.... 4.779109: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1850(0x00000000e58a1000) deq 0x00000000e58a1820(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.779110: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-188 [000] d.h.. 4.779128: xhci_handle_event: EVENT: TRB 00000000e58a1840 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-188 [000] d.h.. 4.779132: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-188 [000] d.h.. 4.779135: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1850(0x00000000e58a1000) deq 0x00000000e58a1850(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-188 [000] d.h.. 4.779137: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-188 [000] d.h.. 4.779140: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c5f0(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] .N... 4.784636: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] dN... 4.784641: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-59 [001] dN... 4.784643: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1860(0x00000000e58a1000) deq 0x00000000e58a1850(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] dN... 4.784645: xhci_queue_trb: CTRL: Buffer 000000000080200c length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-59 [001] dN... 4.784647: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1870(0x00000000e58a1000) deq 0x00000000e58a1850(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] dN... 4.784649: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-59 [001] dN... 4.784651: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1880(0x00000000e58a1000) deq 0x00000000e58a1850(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] dN... 4.784652: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-9 [000] d.h.. 4.784945: xhci_handle_event: EVENT: TRB 00000000e58a1870 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-9 [000] d.h.. 4.784950: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-9 [000] d.h.. 4.784954: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1880(0x00000000e58a1000) deq 0x00000000e58a1880(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-9 [000] d.h.. 4.784960: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-9 [000] d.h.. 4.784964: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c600(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.785026: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-59 [001] d.... 4.785031: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 002c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-59 [001] d.... 4.785033: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1890(0x00000000e58a1000) deq 0x00000000e58a1880(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.785034: xhci_queue_trb: CTRL: Buffer 00000000e5943a10 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-59 [001] d.... 4.785037: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a18a0(0x00000000e58a1000) deq 0x00000000e58a1880(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.785038: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-59 [001] d.... 4.785040: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a18b0(0x00000000e58a1000) deq 0x00000000e58a1880(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.785041: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-9 [000] dNh.. 4.785331: xhci_handle_event: EVENT: TRB 00000000e58a18a0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-9 [000] dNh.. 4.785335: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-9 [000] dNh.. 4.785338: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a18b0(0x00000000e58a1000) deq 0x00000000e58a18b0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-9 [000] dNh.. 4.785341: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-9 [000] dNh.. 4.785344: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c610(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.785388: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.785391: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 011c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-59 [001] d.... 4.785394: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a18c0(0x00000000e58a1000) deq 0x00000000e58a18b0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.785395: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-59 [001] d.... 4.785398: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a18d0(0x00000000e58a1000) deq 0x00000000e58a18b0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.785399: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-59 [001] d.... 4.785401: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a18e0(0x00000000e58a1000) deq 0x00000000e58a18b0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.785402: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-9 [000] dNh.. 4.785646: xhci_handle_event: EVENT: TRB 00000000e58a18d0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-9 [000] dNh.. 4.785650: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-9 [000] dNh.. 4.785653: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a18e0(0x00000000e58a1000) deq 0x00000000e58a18e0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-9 [000] dNh.. 4.785655: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-9 [000] dNh.. 4.785658: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c620(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-59 [001] ..... 4.785699: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-59 [001] d.... 4.785703: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 002c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-59 [001] d.... 4.785706: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a18f0(0x00000000e58a1000) deq 0x00000000e58a18e0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.785707: xhci_queue_trb: CTRL: Buffer 0000000000f830af length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-59 [001] d.... 4.785709: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1900(0x00000000e58a1000) deq 0x00000000e58a18e0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.785710: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-59 [001] d.... 4.785712: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1910(0x00000000e58a1000) deq 0x00000000e58a18e0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-59 [001] d.... 4.785714: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-9 [000] dNh.. 4.785944: xhci_handle_event: EVENT: TRB 00000000e58a1900 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-9 [000] dNh.. 4.785947: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-9 [000] dNh.. 4.785951: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1910(0x00000000e58a1000) deq 0x00000000e58a1910(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-9 [000] dNh.. 4.785953: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-9 [000] dNh.. 4.785956: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c630(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] bN... 4.807007: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-215 [001] DN... 4.807026: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 010c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-215 [001] DN... 4.807029: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1920(0x00000000e58a1000) deq 0x00000000e58a1910(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] DN... 4.807032: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-215 [001] DN... 4.807034: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1930(0x00000000e58a1000) deq 0x00000000e58a1910(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] DN... 4.807036: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-215 [001] DN... 4.807038: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1940(0x00000000e58a1000) deq 0x00000000e58a1910(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] DN... 4.807040: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-215 [001] bN... 4.807047: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74780 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-215 [001] DN... 4.807050: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0110 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-215 [001] DN... 4.807053: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1950(0x00000000e58a1000) deq 0x00000000e58a1910(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] DN... 4.807054: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-215 [001] DN... 4.807056: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1960(0x00000000e58a1000) deq 0x00000000e58a1910(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] DN... 4.807057: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-215 [001] DN... 4.807059: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1970(0x00000000e58a1000) deq 0x00000000e58a1910(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] DN... 4.807060: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-215 [001] bN... 4.807065: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74600 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-215 [001] DN... 4.807067: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-215 [001] DN... 4.807069: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1980(0x00000000e58a1000) deq 0x00000000e58a1910(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] DN... 4.807071: xhci_queue_trb: CTRL: Buffer 000000000088000c length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-215 [001] DN... 4.807073: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1990(0x00000000e58a1000) deq 0x00000000e58a1910(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] DN... 4.807074: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-215 [001] DN... 4.807076: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a19a0(0x00000000e58a1000) deq 0x00000000e58a1910(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] DN... 4.807077: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-255 [000] dNh.. 4.807370: xhci_handle_event: EVENT: TRB 00000000e58a1930 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-255 [000] dNh.. 4.807381: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-255 [000] dNh.. 4.807387: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a19a0(0x00000000e58a1000) deq 0x00000000e58a1940(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-255 [000] dNh.. 4.807394: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74840 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<task>-255 [000] dNh.. 4.807405: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c640(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-255 [000] dNh.. 4.807407: xhci_handle_event: EVENT: TRB 00000000e58a1960 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-255 [000] dNh.. 4.807410: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-255 [000] dNh.. 4.807413: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a19a0(0x00000000e58a1000) deq 0x00000000e58a1970(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-255 [000] dNh.. 4.807415: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74780 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<task>-255 [000] dNh.. 4.807417: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c650(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-255 [000] dNh.. 4.807418: xhci_handle_event: EVENT: TRB 00000000e58a1990 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-255 [000] dNh.. 4.807421: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-255 [000] dNh.. 4.807424: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a19a0(0x00000000e58a1000) deq 0x00000000e58a19a0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-255 [000] dNh.. 4.807426: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74600 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<task>-255 [000] dNh.. 4.807427: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c660(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [001] bN... 4.814036: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74540 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-215 [001] DN... 4.814052: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 010c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-215 [001] DN... 4.814056: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a19b0(0x00000000e58a1000) deq 0x00000000e58a19a0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] DN... 4.814059: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-215 [001] DN... 4.814061: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a19c0(0x00000000e58a1000) deq 0x00000000e58a19a0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] DN... 4.814062: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-215 [001] DN... 4.814064: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a19d0(0x00000000e58a1000) deq 0x00000000e58a19a0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] DN... 4.814067: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-215 [001] bN... 4.814072: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e74480 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-215 [001] DN... 4.814075: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0110 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-215 [001] DN... 4.814077: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a19e0(0x00000000e58a1000) deq 0x00000000e58a19a0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] DN... 4.814079: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-215 [001] DN... 4.814081: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a19f0(0x00000000e58a1000) deq 0x00000000e58a19a0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] DN... 4.814082: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-215 [001] DN... 4.814084: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1a00(0x00000000e58a1000) deq 0x00000000e58a19a0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] DN... 4.814085: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-215 [001] bN... 4.814089: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e743c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-215 [001] DN... 4.814092: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-215 [001] DN... 4.814094: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1a10(0x00000000e58a1000) deq 0x00000000e58a19a0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] DN... 4.814095: xhci_queue_trb: CTRL: Buffer 000000000084000c length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-215 [001] DN... 4.814101: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1a20(0x00000000e58a1000) deq 0x00000000e58a19a0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] DN... 4.814102: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-215 [001] DN... 4.814104: xhci_inc_enq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1a30(0x00000000e58a1000) deq 0x00000000e58a19a0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-215 [001] DN... 4.814105: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-9 [000] d.h.. 4.814647: xhci_handle_event: EVENT: TRB 00000000e58a19c0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-9 [000] d.h.. 4.814660: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-9 [000] d.h.. 4.814666: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1a30(0x00000000e58a1000) deq 0x00000000e58a19d0(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-9 [000] d.h.. 4.814675: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74540 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<task>-9 [000] d.h.. 4.814686: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c670(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-9 [000] d.h.. 4.814688: xhci_handle_event: EVENT: TRB 00000000e58a19f0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-9 [000] d.h.. 4.814691: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-9 [000] d.h.. 4.814694: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1a30(0x00000000e58a1000) deq 0x00000000e58a1a00(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-9 [000] d.h.. 4.814696: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e74480 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<task>-9 [000] d.h.. 4.814697: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c680(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
<task>-9 [000] d.h.. 4.814698: xhci_handle_event: EVENT: TRB 00000000e58a1a20 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-9 [000] d.h.. 4.814702: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-9 [000] d.h.. 4.814705: xhci_inc_deq: CTRL ffffff8023ae9b00: enq 0x00000000e58a1a30(0x00000000e58a1000) deq 0x00000000e58a1a30(0x00000000e58a1000) segs 2 stream 0 bounce 0 cycle 0
<task>-9 [000] d.h.. 4.814706: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e743c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<task>-9 [000] d.h.. 4.814708: xhci_inc_deq: EVENT ffffff80238d3400: enq 0x00000000e3961000(0x00000000e3961000) deq 0x00000000e390c690(0x00000000e390c000) segs 2 stream 0 bounce 0 cycle 1
[-- Attachment #3: xhci-trace-frank --]
[-- Type: text/plain, Size: 765625 bytes --]
# tracer: nop
#
# entries-in-buffer/entries-written: 4305/4305 #P:2
#
# _-----=> irqs-off/BH-disabled
# / _----=> need-resched
# | / _---=> hardirq/softirq
# || / _--=> preempt-depth
# ||| / _-=> migrate-disable
# |||| / delay
# TASK-PID CPU# ||||| TIMESTAMP FUNCTION
# | | | ||||| | |
<task>-42 [001] d.... 1.345939: xhci_get_port_status: port 2-0: 0x000002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake:
<task>-42 [001] d.... 1.346106: xhci_hub_status_data: port 2-0: 0x0a0002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake: WCE WOE
<task>-132 [001] d.... 1.367216: xhci_get_port_status: port 1-0: 0x000006e1 Powered Connected Disabled Link:Polling PortSpeed:1 Change: Wake:
<task>-132 [001] d.... 1.367446: xhci_queue_trb: CMD: Enable Slot Command: flags C
<task>-132 [001] d.... 1.367452: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e4558010(0x00000000e4558000) deq 0x00000000e4558000(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.367456: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-117 [000] d.h.. 1.367525: xhci_handle_event: EVENT: TRB 00000000e4558000 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
<task>-117 [000] d.h.. 1.367531: xhci_handle_command: CMD: Enable Slot Command: flags C
<task>-117 [000] d.h.. 1.367557: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e4558010(0x00000000e4558000) deq 0x00000000e4558010(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-117 [000] d.h.. 1.367559: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557020(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 1.368246: xhci_ring_alloc: CTRL ffffff8022542f80: enq 0x00000000e4caf000(0x00000000e4caf000) deq 0x00000000e4caf000(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 1.368252: xhci_alloc_virt_device: vdev ffffff8021d1e000 ctx e458b000 | e2777000 num 0 state 0 speed 0 port 0 level 0 slot 0
<task>-132 [001] ..... 1.368255: xhci_alloc_dev: RS 00000 UNKNOWN speed Ctx Entries 0 MEL 0 us Port# 0/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-119 [001] dNs.. 1.369903: xhci_hub_status_data: port 1-0: 0x00000791 Powered Connected Disabled Link:Unknown PortSpeed:1 In-Reset Change: Wake:
<task>-42 [001] d.... 1.382190: xhci_get_port_status: port 2-0: 0x000002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake:
<task>-42 [001] d.... 1.382371: xhci_hub_status_data: port 2-0: 0x0a0002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake: WCE WOE
<idle>-0 [001] dNs.. 1.397883: xhci_hub_status_data: port 1-0: 0x00000f91 Powered Connected Disabled Link:Unknown PortSpeed:3 In-Reset Change: Wake:
<task>-42 [001] d.... 1.418091: xhci_get_port_status: port 2-0: 0x000002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake:
<task>-42 [001] d.... 1.418265: xhci_hub_status_data: port 2-0: 0x0a0002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake: WCE WOE
<task>-117 [000] d.h.. 1.423434: xhci_handle_event: EVENT: TRB 0000000001000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
<task>-117 [000] d.h.. 1.423448: xhci_handle_port_status: port 1-0: 0x00200e03 Powered Connected Enabled Link:U0 PortSpeed:3 Change: PRC Wake:
<task>-117 [000] d.h.. 1.423458: xhci_hub_status_data: port 1-0: 0x00200e03 Powered Connected Enabled Link:U0 PortSpeed:3 Change: PRC Wake:
<task>-117 [000] d.h.. 1.423478: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557030(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.434224: xhci_get_port_status: port 1-0: 0x00200e03 Powered Connected Enabled Link:U0 PortSpeed:3 Change: PRC Wake:
<task>-42 [001] d.... 1.458023: xhci_get_port_status: port 2-0: 0x000002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake:
<task>-42 [001] d.... 1.458253: xhci_hub_status_data: port 2-0: 0x0a0002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake: WCE WOE
<task>-132 [001] ..... 1.491928: xhci_setup_device_slot: RS 00000 UNKNOWN speed Ctx Entries 0 MEL 0 us Port# 0/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-132 [001] ..... 1.491946: xhci_setup_addressable_virt_device: vdev ffffff8021d1e000 ctx e458b000 | e2777000 num 0 state 5 speed 3 port 1 level 1 slot 1
<task>-132 [001] ..... 1.491950: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e458b000, ctx_va=@ffffffc080ec5000
<task>-132 [001] ..... 1.491954: xhci_address_ctrl_ctx: Add: slot ep0
<task>-132 [001] d.... 1.491958: xhci_setup_device: vdev ffffff8021d1e000 ctx e458b000 | e2777000 num 0 state 5 speed 3 port 1 level 1 slot 1
<task>-132 [001] d.... 1.491970: xhci_queue_trb: CMD: Address Device Command: ctx 00000000e458b000 slot 1 flags B:C
<task>-132 [001] d.... 1.491973: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e4558020(0x00000000e4558000) deq 0x00000000e4558010(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.491977: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-95 [000] d.h.. 1.492000: xhci_handle_event: EVENT: TRB 00000000e4558010 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
<task>-95 [000] d.h.. 1.492005: xhci_handle_command: CMD: Address Device Command: ctx 00000000e458b000 slot 1 flags B:C
<task>-95 [000] d.h.. 1.492011: xhci_handle_cmd_addr_dev: RS 00000 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<task>-95 [000] d.h.. 1.492044: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e4558020(0x00000000e4558000) deq 0x00000000e4558020(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-95 [000] d.h.. 1.492047: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557040(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 1.493574: xhci_dbg_address: Successful setup context command
<task>-132 [001] ..... 1.493588: xhci_dbg_address: Op regs DCBAA ptr = 0x000000e456f000
<task>-132 [001] ..... 1.493595: xhci_dbg_address: Slot ID 1 dcbaa entry @ffffffc080c1d008 = 0x000000e2777000
<task>-132 [001] ..... 1.493602: xhci_dbg_address: Output Context DMA address = 0xe2777000
<task>-132 [001] ..... 1.493605: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e458b000, ctx_va=@ffffffc080ec5000
<task>-132 [001] ..... 1.493609: xhci_address_ctx: ctx_64=0, ctx_type=1, ctx_dma=@e2777000, ctx_va=@ffffffc080ebd000
<task>-132 [001] ..... 1.493612: xhci_dbg_address: Internal device address = 0
<task>-132 [001] ..... 1.493643: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff802543e540 pipe 2147483776 slot 1 length 0/64 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 1.493655: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0100 wIndex 0000 wLength 64 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 1.493659: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf010(0x00000000e4caf000) deq 0x00000000e4caf000(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.493662: xhci_queue_trb: CTRL: Buffer 00000000e2df0d80 length 64 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 1.493664: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf020(0x00000000e4caf000) deq 0x00000000e4caf000(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.493665: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 1.493667: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf030(0x00000000e4caf000) deq 0x00000000e4caf000(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.493670: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-133 [000] d.h.. 1.493695: xhci_handle_event: EVENT: TRB 00000000e4caf010 status 'Short Packet' len 46 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-133 [000] d.h.. 1.493703: xhci_handle_transfer: CTRL: Buffer 00000000e2df0d80 length 64 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-133 [000] d.h.. 1.493709: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557050(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-133 [000] d.h.. 1.493710: xhci_handle_event: EVENT: TRB 00000000e4caf020 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-133 [000] d.h.. 1.493713: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-133 [000] d.h.. 1.493717: xhci_inc_deq: CTRL ffffff8022542f80: enq 0x00000000e4caf030(0x00000000e4caf000) deq 0x00000000e4caf030(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-133 [000] d.h.. 1.493722: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff802543e540 pipe 2147483776 slot 1 length 18/64 sgs 0/0 stream 0 flags 00110200
<task>-133 [000] d.h.. 1.493732: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557060(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-42 [001] d.... 1.493964: xhci_get_port_status: port 2-0: 0x000002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake:
<task>-42 [001] d.... 1.494184: xhci_hub_status_data: port 2-0: 0x0a0002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake: WCE WOE
<task>-42 [001] d.... 1.530357: xhci_get_port_status: port 2-0: 0x000002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake:
<task>-42 [001] d.... 1.530528: xhci_hub_status_data: port 2-0: 0x0a0002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake: WCE WOE
<task>-159 [000] d.h.. 1.549459: xhci_handle_event: EVENT: TRB 0000000001000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
<task>-159 [000] d.h.. 1.549505: xhci_handle_port_status: port 1-0: 0x00200e03 Powered Connected Enabled Link:U0 PortSpeed:3 Change: PRC Wake:
<task>-159 [000] d.h.. 1.549512: xhci_hub_status_data: port 1-0: 0x00200e03 Powered Connected Enabled Link:U0 PortSpeed:3 Change: PRC Wake:
<task>-159 [000] d.h.. 1.549529: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557070(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.557982: xhci_get_port_status: port 1-0: 0x00200e03 Powered Connected Enabled Link:U0 PortSpeed:3 Change: PRC Wake:
<task>-42 [001] d.... 1.570155: xhci_get_port_status: port 2-0: 0x000002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake:
<task>-42 [001] d.... 1.570593: xhci_hub_status_data: port 2-0: 0x0a0002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake: WCE WOE
<task>-42 [001] d.... 1.606040: xhci_get_port_status: port 2-0: 0x000002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake:
<task>-42 [001] d.... 1.606216: xhci_hub_status_data: port 2-0: 0x0a0002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake: WCE WOE
<task>-132 [001] ..... 1.614708: xhci_discover_or_reset_device: RS 00000 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<task>-132 [001] d.... 1.614731: xhci_queue_trb: CMD: Reset Device Command: slot 1 flags C
<task>-132 [001] d.... 1.614735: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e4558030(0x00000000e4558000) deq 0x00000000e4558020(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.614739: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-154 [000] d.h.. 1.614760: xhci_handle_event: EVENT: TRB 00000000e4558020 status 'Context State Error' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
<task>-154 [000] d.h.. 1.614765: xhci_handle_command: CMD: Reset Device Command: slot 1 flags C
<task>-154 [000] d.h.. 1.614772: xhci_handle_cmd_reset_dev: RS 00000 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<task>-154 [000] d.h.. 1.614786: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e4558030(0x00000000e4558000) deq 0x00000000e4558030(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-154 [000] d.h.. 1.614788: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557080(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 1.614833: xhci_setup_device_slot: RS 00000 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<task>-132 [001] ..... 1.614842: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e458b000, ctx_va=@ffffffc080ec5000
<task>-132 [001] ..... 1.614846: xhci_address_ctrl_ctx: Add: slot ep0
<task>-132 [001] d.... 1.614849: xhci_setup_device: vdev ffffff8021d1e000 ctx e458b000 | e2777000 num 0 state 5 speed 3 port 1 level 1 slot 1
<task>-132 [001] d.... 1.614853: xhci_queue_trb: CMD: Address Device Command: ctx 00000000e458b000 slot 1 flags b:C
<task>-132 [001] d.... 1.614856: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e4558040(0x00000000e4558000) deq 0x00000000e4558030(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.614857: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-72 [000] d.h.. 1.614871: xhci_handle_event: EVENT: TRB 00000000e4558030 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
<task>-72 [000] d.h.. 1.614875: xhci_handle_command: CMD: Address Device Command: ctx 00000000e458b000 slot 1 flags b:C
<task>-72 [000] d.h.. 1.614879: xhci_handle_cmd_addr_dev: RS 00000 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 1 State addressed
<task>-72 [000] d.h.. 1.614886: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e4558040(0x00000000e4558000) deq 0x00000000e4558040(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-72 [000] d.h.. 1.614888: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557090(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 1.614906: xhci_dbg_address: Successful setup address command
<task>-132 [001] ..... 1.614914: xhci_dbg_address: Op regs DCBAA ptr = 0x000000e456f000
<task>-132 [001] ..... 1.614921: xhci_dbg_address: Slot ID 1 dcbaa entry @ffffffc080c1d008 = 0x000000e2777000
<task>-132 [001] ..... 1.614926: xhci_dbg_address: Output Context DMA address = 0xe2777000
<task>-132 [001] ..... 1.614929: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e458b000, ctx_va=@ffffffc080ec5000
<task>-132 [001] ..... 1.614931: xhci_address_ctx: ctx_64=0, ctx_type=1, ctx_dma=@e2777000, ctx_va=@ffffffc080ebd000
<task>-132 [001] ..... 1.614934: xhci_dbg_address: Internal device address = 1
<task>-132 [001] ..... 1.631068: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8024f63840 pipe 2147484288 slot 1 length 0/18 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 1.631089: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0100 wIndex 0000 wLength 18 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 1.631093: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf040(0x00000000e4caf000) deq 0x00000000e4caf030(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.631096: xhci_queue_trb: CTRL: Buffer 00000000e4fe99e0 length 18 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 1.631098: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf050(0x00000000e4caf000) deq 0x00000000e4caf030(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.631100: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 1.631102: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf060(0x00000000e4caf000) deq 0x00000000e4caf030(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.631105: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-72 [000] d.h.. 1.631129: xhci_handle_event: EVENT: TRB 00000000e4caf050 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-72 [000] d.h.. 1.631139: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [000] d.h.. 1.631145: xhci_inc_deq: CTRL ffffff8022542f80: enq 0x00000000e4caf060(0x00000000e4caf000) deq 0x00000000e4caf060(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [000] d.h.. 1.631151: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8024f63840 pipe 2147484288 slot 1 length 18/18 sgs 0/0 stream 0 flags 00110200
<task>-72 [000] d.h.. 1.631157: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45570a0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 1.631245: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8024f63840 pipe 2147484288 slot 1 length 0/9 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 1.631249: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0200 wIndex 0000 wLength 9 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 1.631251: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf070(0x00000000e4caf000) deq 0x00000000e4caf060(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.631253: xhci_queue_trb: CTRL: Buffer 00000000e4fc41f0 length 9 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 1.631254: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf080(0x00000000e4caf000) deq 0x00000000e4caf060(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.631256: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 1.631261: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf090(0x00000000e4caf000) deq 0x00000000e4caf060(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.631262: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-72 [000] d.h.. 1.631278: xhci_handle_event: EVENT: TRB 00000000e4caf080 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-72 [000] d.h.. 1.631282: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [000] d.h.. 1.631285: xhci_inc_deq: CTRL ffffff8022542f80: enq 0x00000000e4caf090(0x00000000e4caf000) deq 0x00000000e4caf090(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [000] d.h.. 1.631287: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8024f63840 pipe 2147484288 slot 1 length 9/9 sgs 0/0 stream 0 flags 00110200
<task>-72 [000] d.h.. 1.631291: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45570b0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 1.631325: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8024f63840 pipe 2147484288 slot 1 length 0/41 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 1.631329: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0200 wIndex 0000 wLength 41 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 1.631331: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf0a0(0x00000000e4caf000) deq 0x00000000e4caf090(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.631333: xhci_queue_trb: CTRL: Buffer 00000000e4fd6d80 length 41 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 1.631335: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf0b0(0x00000000e4caf000) deq 0x00000000e4caf090(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.631336: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 1.631338: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf0c0(0x00000000e4caf000) deq 0x00000000e4caf090(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.631339: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-72 [000] d.h.. 1.631355: xhci_handle_event: EVENT: TRB 00000000e4caf0b0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-72 [000] d.h.. 1.631359: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [000] d.h.. 1.631362: xhci_inc_deq: CTRL ffffff8022542f80: enq 0x00000000e4caf0c0(0x00000000e4caf000) deq 0x00000000e4caf0c0(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [000] d.h.. 1.631364: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8024f63840 pipe 2147484288 slot 1 length 41/41 sgs 0/0 stream 0 flags 00110200
<task>-72 [000] d.h.. 1.631367: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45570c0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 1.632018: xhci_ring_alloc: INTR ffffff8022d63580: enq 0x00000000e54a0000(0x00000000e54a0000) deq 0x00000000e54a0000(0x00000000e54a0000) segs 2 stream 0 bounce 1 cycle 1
<task>-132 [001] ..... 1.632026: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 256000 us max ESIT payload 1 CErr 3 Type Int IN burst 0 maxp 1 deq 00000000e54a0001 avg trb len 1
<task>-132 [001] d.... 1.632044: xhci_configure_endpoint_ctrl_ctx: Add: slot 1in
<task>-132 [001] d.... 1.632046: xhci_configure_endpoint: RS 00000 high-speed Ctx Entries 3 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-132 [001] d.... 1.632057: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e458b000 slot 1 flags d:C
<task>-132 [001] d.... 1.632060: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e4558050(0x00000000e4558000) deq 0x00000000e4558040(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.632063: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-170 [000] d.h.. 1.632145: xhci_handle_event: EVENT: TRB 00000000e4558040 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
<task>-170 [000] d.h.. 1.632149: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e458b000 slot 1 flags d:C
<task>-170 [000] d.h.. 1.632192: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e4558050(0x00000000e4558000) deq 0x00000000e4558050(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-170 [000] d.h.. 1.632194: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45570d0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 1.633962: xhci_dbg_context_change: Successful Endpoint Configure command
<task>-132 [001] d.... 1.634022: xhci_queue_trb: CMD: Stop Ring Command: slot 1 sp 0 ep 3 flags C
<task>-132 [001] d.... 1.634026: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e4558060(0x00000000e4558000) deq 0x00000000e4558050(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.634029: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-163 [000] d.h.. 1.634050: xhci_handle_event: EVENT: TRB 00000000e54a0000 status 'Stopped - Length Invalid' len 0 slot 1 ep 3 type 'Transfer Event' flags e:C
<task>-163 [000] d.h.. 1.634059: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45570e0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-163 [000] d.h.. 1.634060: xhci_handle_event: EVENT: TRB 00000000e4558050 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
<task>-163 [000] d.h.. 1.634063: xhci_handle_command: CMD: Stop Ring Command: slot 1 sp 0 ep 3 flags C
<task>-163 [000] d.h.. 1.634074: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e4558060(0x00000000e4558000) deq 0x00000000e4558060(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-163 [000] d.h.. 1.634076: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45570f0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.634132: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e0fc0000 slot 1 flags d:C
<task>-132 [001] d.... 1.634135: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e4558070(0x00000000e4558000) deq 0x00000000e4558060(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.634136: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-72 [000] d.h.. 1.634204: xhci_handle_event: EVENT: TRB 00000000e4558060 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
<task>-72 [000] d.h.. 1.634207: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e0fc0000 slot 1 flags d:C
<task>-72 [000] d.h.. 1.634218: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e4558070(0x00000000e4558000) deq 0x00000000e4558070(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-72 [000] d.h.. 1.634220: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557100(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 1.634372: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8024f63840 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 1.634381: xhci_queue_trb: CTRL: bRequestType 00 bRequest 09 wValue 0001 wIndex 0000 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 1.634384: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf0d0(0x00000000e4caf000) deq 0x00000000e4caf0c0(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.634386: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 1.634388: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf0e0(0x00000000e4caf000) deq 0x00000000e4caf0c0(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.634390: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-133 [000] d.h.. 1.634406: xhci_handle_event: EVENT: TRB 00000000e4caf0d0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-133 [000] d.h.. 1.634414: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-133 [000] d.h.. 1.634418: xhci_inc_deq: CTRL ffffff8022542f80: enq 0x00000000e4caf0e0(0x00000000e4caf000) deq 0x00000000e4caf0e0(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-133 [000] d.h.. 1.634423: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8024f63840 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-133 [000] d.h.. 1.634429: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557110(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 1.634876: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8024f63840 pipe 2147484288 slot 1 length 0/15 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 1.634882: xhci_queue_trb: CTRL: bRequestType a0 bRequest 06 wValue 2900 wIndex 0000 wLength 15 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 1.634885: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf0f0(0x00000000e4caf000) deq 0x00000000e4caf0e0(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.634887: xhci_queue_trb: CTRL: Buffer 00000000e4fc4500 length 15 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 1.634889: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf100(0x00000000e4caf000) deq 0x00000000e4caf0e0(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.634890: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 1.634892: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf110(0x00000000e4caf000) deq 0x00000000e4caf0e0(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.634894: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-133 [000] d.h.. 1.634911: xhci_handle_event: EVENT: TRB 00000000e4caf0f0 status 'Short Packet' len 6 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-133 [000] d.h.. 1.634918: xhci_handle_transfer: CTRL: Buffer 00000000e4fc4500 length 15 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-133 [000] d.h.. 1.634922: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557120(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-133 [000] d.h.. 1.634924: xhci_handle_event: EVENT: TRB 00000000e4caf100 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-133 [000] d.h.. 1.634927: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-133 [000] d.h.. 1.634930: xhci_inc_deq: CTRL ffffff8022542f80: enq 0x00000000e4caf110(0x00000000e4caf000) deq 0x00000000e4caf110(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-133 [000] d.h.. 1.634933: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8024f63840 pipe 2147484288 slot 1 length 9/15 sgs 0/0 stream 0 flags 00110200
<task>-133 [000] d.h.. 1.634937: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557130(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 1.635652: xhci_ring_alloc: INTR ffffff8022d63080: enq 0x00000000e54a6000(0x00000000e54a6000) deq 0x00000000e54a6000(0x00000000e54a6000) segs 2 stream 0 bounce 1 cycle 1
<task>-132 [001] ..... 1.635661: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 256000 us max ESIT payload 1 CErr 3 Type Int IN burst 0 maxp 1 deq 00000000e54a6001 avg trb len 1
<task>-132 [001] d.... 1.635678: xhci_configure_endpoint_ctrl_ctx: Drop: 1in, Add: slot 1in
<task>-132 [001] d.... 1.635681: xhci_configure_endpoint: RS 00000 high-speed Ctx Entries 3 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-132 [001] d.... 1.635690: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e458b000 slot 1 flags d:C
<task>-132 [001] d.... 1.635693: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e4558080(0x00000000e4558000) deq 0x00000000e4558070(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.635696: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-72 [000] dNh.. 1.635773: xhci_handle_event: EVENT: TRB 00000000e4558070 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
<task>-72 [000] dNh.. 1.635777: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e458b000 slot 1 flags d:C
<task>-72 [000] dNh.. 1.635793: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e4558080(0x00000000e4558000) deq 0x00000000e4558080(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-72 [000] dNh.. 1.635795: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557140(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 1.635813: xhci_dbg_context_change: Successful Endpoint Configure command
<task>-132 [001] ..... 1.635825: xhci_ring_free: INTR ffffff8022d63580: enq 0x00000000e54a0000(0x00000000e54a0000) deq 0x00000000e54a0000(0x00000000e54a0000) segs 2 stream 0 bounce 1 cycle 1
<task>-132 [001] ..... 1.635844: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8024f63840 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 1.635851: xhci_queue_trb: CTRL: bRequestType 01 bRequest 0b wValue 0001 wIndex 0000 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 1.635853: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf120(0x00000000e4caf000) deq 0x00000000e4caf110(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.635854: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 1.635856: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf130(0x00000000e4caf000) deq 0x00000000e4caf110(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.635859: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-117 [000] d.h.. 1.635874: xhci_handle_event: EVENT: TRB 00000000e4caf120 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-117 [000] d.h.. 1.635881: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-117 [000] d.h.. 1.635886: xhci_inc_deq: CTRL ffffff8022542f80: enq 0x00000000e4caf130(0x00000000e4caf000) deq 0x00000000e4caf130(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-117 [000] d.h.. 1.635891: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8024f63840 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-117 [000] d.h.. 1.635896: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557150(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.638122: xhci_queue_trb: CMD: Stop Ring Command: slot 1 sp 0 ep 3 flags C
<task>-132 [001] d.... 1.638133: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e4558090(0x00000000e4558000) deq 0x00000000e4558080(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.638137: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-170 [000] d.h.. 1.638160: xhci_handle_event: EVENT: TRB 00000000e54a6000 status 'Stopped - Length Invalid' len 0 slot 1 ep 3 type 'Transfer Event' flags e:C
<task>-170 [000] d.h.. 1.638170: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557160(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-170 [000] d.h.. 1.638171: xhci_handle_event: EVENT: TRB 00000000e4558080 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
<task>-170 [000] d.h.. 1.638175: xhci_handle_command: CMD: Stop Ring Command: slot 1 sp 0 ep 3 flags C
<task>-170 [000] d.h.. 1.638196: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e4558090(0x00000000e4558000) deq 0x00000000e4558090(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-170 [000] d.h.. 1.638198: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557170(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.638259: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e0fc0000 slot 1 flags d:C
<task>-132 [001] d.... 1.638262: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e45580a0(0x00000000e4558000) deq 0x00000000e4558090(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.638263: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-170 [000] dNh.. 1.638330: xhci_handle_event: EVENT: TRB 00000000e4558090 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
<task>-170 [000] dNh.. 1.638333: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e0fc0000 slot 1 flags d:C
<task>-170 [000] dNh.. 1.638343: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e45580a0(0x00000000e4558000) deq 0x00000000e45580a0(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-170 [000] dNh.. 1.638344: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557180(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 1.638625: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8024f63840 pipe 2147484288 slot 1 length 0/2 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 1.638635: xhci_queue_trb: CTRL: bRequestType 80 bRequest 00 wValue 0000 wIndex 0000 wLength 2 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 1.638638: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf140(0x00000000e4caf000) deq 0x00000000e4caf130(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.638640: xhci_queue_trb: CTRL: Buffer 00000000e4c8cd10 length 2 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 1.638642: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf150(0x00000000e4caf000) deq 0x00000000e4caf130(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.638644: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 1.638646: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf160(0x00000000e4caf000) deq 0x00000000e4caf130(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.638649: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-117 [000] d.h.. 1.638666: xhci_handle_event: EVENT: TRB 00000000e4caf150 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-117 [000] d.h.. 1.638673: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-117 [000] d.h.. 1.638677: xhci_inc_deq: CTRL ffffff8022542f80: enq 0x00000000e4caf160(0x00000000e4caf000) deq 0x00000000e4caf160(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-117 [000] d.h.. 1.638683: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8024f63840 pipe 2147484288 slot 1 length 2/2 sgs 0/0 stream 0 flags 00110200
<task>-117 [000] d.h.. 1.638690: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557190(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 1.638745: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8024f63840 pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 1.638749: xhci_queue_trb: CTRL: bRequestType a0 bRequest 00 wValue 0000 wIndex 0000 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 1.638751: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf170(0x00000000e4caf000) deq 0x00000000e4caf160(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.638753: xhci_queue_trb: CTRL: Buffer 00000000e4c8cce8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 1.638755: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf180(0x00000000e4caf000) deq 0x00000000e4caf160(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.638756: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 1.638758: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf190(0x00000000e4caf000) deq 0x00000000e4caf160(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.638760: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-163 [000] d.h.. 1.638776: xhci_handle_event: EVENT: TRB 00000000e4caf180 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-163 [000] d.h.. 1.638780: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-163 [000] d.h.. 1.638783: xhci_inc_deq: CTRL ffffff8022542f80: enq 0x00000000e4caf190(0x00000000e4caf000) deq 0x00000000e4caf190(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-163 [000] d.h.. 1.638786: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8024f63840 pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-163 [000] d.h.. 1.638789: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45571a0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.639014: xhci_configure_endpoint_ctrl_ctx: Add: slot
<task>-132 [001] d.... 1.639018: xhci_configure_endpoint: RS 00000 high-speed multi-TT Hub Ctx Entries 3 MEL 0 us Port# 1/2 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-132 [001] d.... 1.639025: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e0fc0000 slot 1 flags d:C
<task>-132 [001] d.... 1.639027: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e45580b0(0x00000000e4558000) deq 0x00000000e45580a0(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.639029: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-163 [000] d.h.. 1.639094: xhci_handle_event: EVENT: TRB 00000000e45580a0 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
<task>-163 [000] d.h.. 1.639099: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e0fc0000 slot 1 flags d:C
<task>-163 [000] d.h.. 1.639110: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e45580b0(0x00000000e4558000) deq 0x00000000e45580b0(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-163 [000] d.h.. 1.639111: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45571b0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 1.639351: xhci_dbg_context_change: Successful Endpoint Configure command
<task>-132 [001] ..... 1.639369: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8024f63a80 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 1.639374: xhci_queue_trb: CTRL: bRequestType 23 bRequest 03 wValue 0008 wIndex 0001 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 1.639380: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf1a0(0x00000000e4caf000) deq 0x00000000e4caf190(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.639381: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 1.639384: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf1b0(0x00000000e4caf000) deq 0x00000000e4caf190(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.639386: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-72 [000] dNh.. 1.639399: xhci_handle_event: EVENT: TRB 00000000e4caf1a0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-72 [000] dNh.. 1.639405: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [000] dNh.. 1.639409: xhci_inc_deq: CTRL ffffff8022542f80: enq 0x00000000e4caf1b0(0x00000000e4caf000) deq 0x00000000e4caf1b0(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [000] dNh.. 1.639413: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8024f63a80 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-72 [000] dNh.. 1.639416: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45571c0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 1.639458: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8024f63a80 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 1.639461: xhci_queue_trb: CTRL: bRequestType 23 bRequest 03 wValue 0008 wIndex 0002 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 1.639464: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf1c0(0x00000000e4caf000) deq 0x00000000e4caf1b0(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.639465: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 1.639467: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf1d0(0x00000000e4caf000) deq 0x00000000e4caf1b0(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.639469: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-72 [000] dNh.. 1.639481: xhci_handle_event: EVENT: TRB 00000000e4caf1c0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-72 [000] dNh.. 1.639485: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [000] dNh.. 1.639488: xhci_inc_deq: CTRL ffffff8022542f80: enq 0x00000000e4caf1d0(0x00000000e4caf000) deq 0x00000000e4caf1d0(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [000] dNh.. 1.639490: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8024f63a80 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-72 [000] dNh.. 1.639493: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45571d0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-42 [001] d.... 1.644611: xhci_get_port_status: port 2-0: 0x000002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake:
<task>-42 [001] d.... 1.644792: xhci_hub_status_data: port 2-0: 0x0a0002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake: WCE WOE
<task>-134 [001] d.s.. 1.649893: xhci_hub_status_data: port 1-0: 0x00000e03 Powered Connected Enabled Link:U0 PortSpeed:3 Change: Wake:
<task>-42 [001] d.... 1.678705: xhci_get_port_status: port 2-0: 0x000002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake:
<task>-42 [001] d.... 1.678882: xhci_hub_status_data: port 2-0: 0x0a0002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake: WCE WOE
<task>-42 [001] d.... 1.718061: xhci_get_port_status: port 2-0: 0x000002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake:
<task>-42 [001] d.... 1.719577: xhci_hub_status_data: port 2-0: 0x0a0002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake: WCE WOE
<task>-42 [001] d.... 1.754171: xhci_get_port_status: port 2-0: 0x000002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake:
<task>-42 [001] ..... 1.757879: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8024f51540 pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-42 [001] d.... 1.757899: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0001 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-42 [001] d.... 1.757903: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf1e0(0x00000000e4caf000) deq 0x00000000e4caf1d0(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-42 [001] d.... 1.757906: xhci_queue_trb: CTRL: Buffer 00000000e4c8cce8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-42 [001] d.... 1.757908: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf1f0(0x00000000e4caf000) deq 0x00000000e4caf1d0(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-42 [001] d.... 1.757909: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-42 [001] d.... 1.757911: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf200(0x00000000e4caf000) deq 0x00000000e4caf1d0(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-42 [001] d.... 1.757914: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-15 [000] d.h.. 1.757943: xhci_handle_event: EVENT: TRB 00000000e4caf1f0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-15 [000] d.h.. 1.757952: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-15 [000] d.h.. 1.757958: xhci_inc_deq: CTRL ffffff8022542f80: enq 0x00000000e4caf200(0x00000000e4caf000) deq 0x00000000e4caf200(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-15 [000] d.h.. 1.757965: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8024f51540 pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-15 [000] d.h.. 1.757972: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45571e0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-42 [001] ..... 1.760572: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8024f51540 pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-42 [001] d.... 1.760591: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0002 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-42 [001] d.... 1.760595: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf210(0x00000000e4caf000) deq 0x00000000e4caf200(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-42 [001] d.... 1.760617: xhci_queue_trb: CTRL: Buffer 00000000e4c8cce8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-42 [001] d.... 1.760620: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf220(0x00000000e4caf000) deq 0x00000000e4caf200(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-42 [001] d.... 1.760621: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-42 [001] d.... 1.760623: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf230(0x00000000e4caf000) deq 0x00000000e4caf200(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-42 [001] d.... 1.760626: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-164 [000] d.h.. 1.760654: xhci_handle_event: EVENT: TRB 00000000e4caf220 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-164 [000] d.h.. 1.760662: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-164 [000] d.h.. 1.760669: xhci_inc_deq: CTRL ffffff8022542f80: enq 0x00000000e4caf230(0x00000000e4caf000) deq 0x00000000e4caf230(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-164 [000] d.h.. 1.760674: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8024f51540 pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-164 [000] d.h.. 1.760684: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45571f0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-42 [001] ..... 1.765970: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff80254a7e40 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-42 [001] d.... 1.765991: xhci_queue_trb: CTRL: bRequestType 23 bRequest 01 wValue 0010 wIndex 0002 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-42 [001] d.... 1.765995: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf240(0x00000000e4caf000) deq 0x00000000e4caf230(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-42 [001] d.... 1.765997: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-42 [001] d.... 1.765999: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf250(0x00000000e4caf000) deq 0x00000000e4caf230(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-42 [001] d.... 1.766003: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-189 [000] d.h.. 1.766028: xhci_handle_event: EVENT: TRB 00000000e4caf240 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-189 [000] d.h.. 1.766037: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-189 [000] d.h.. 1.766043: xhci_inc_deq: CTRL ffffff8022542f80: enq 0x00000000e4caf250(0x00000000e4caf000) deq 0x00000000e4caf250(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-189 [000] d.h.. 1.766049: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff80254a7e40 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-189 [000] d.h.. 1.766060: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557200(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.768355: xhci_hub_status_data: port 2-0: 0x0a0002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake: WCE WOE
<task>-132 [001] ..... 1.874603: xhci_urb_enqueue: 1-1 ep1in-intr: urb ffffff8024f63840 pipe 1077969536 slot 1 length 0/1 sgs 0/0 stream 0 flags 00010200
<task>-132 [001] d.... 1.874625: xhci_queue_trb: INTR: Buffer 00000000e4c8cce0 length 1 TD size 0 intr 0 type 'Normal' flags b:i:I:c:s:I:e:c
<task>-132 [001] d.... 1.874630: xhci_inc_enq: INTR ffffff8022d63080: enq 0x00000000e54a6010(0x00000000e54a6000) deq 0x00000000e54a6000(0x00000000e54a6000) segs 2 stream 0 bounce 1 cycle 1
<task>-132 [001] d.... 1.874634: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep1in
<task>-132 [001] ..... 1.874666: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8024eb6780 pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 1.874670: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0002 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 1.874672: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf260(0x00000000e4caf000) deq 0x00000000e4caf250(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.874674: xhci_queue_trb: CTRL: Buffer 00000000e4c8cce8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 1.874676: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf270(0x00000000e4caf000) deq 0x00000000e4caf250(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.874678: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 1.874680: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf280(0x00000000e4caf000) deq 0x00000000e4caf250(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.874681: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-200 [000] d.h.. 1.874709: xhci_handle_event: EVENT: TRB 00000000e4caf270 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-200 [000] d.h.. 1.874719: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-200 [000] d.h.. 1.874725: xhci_inc_deq: CTRL ffffff8022542f80: enq 0x00000000e4caf280(0x00000000e4caf000) deq 0x00000000e4caf280(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-200 [000] d.h.. 1.874731: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8024eb6780 pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-200 [000] d.h.. 1.874738: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557210(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.875178: xhci_queue_trb: CMD: Enable Slot Command: flags C
<task>-132 [001] d.... 1.875181: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e45580c0(0x00000000e4558000) deq 0x00000000e45580b0(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.875184: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-197 [000] D.h.. 1.875202: xhci_handle_event: EVENT: TRB 00000000e45580b0 status 'Success' len 0 slot 2 ep 0 type 'Command Completion Event' flags e:C
<task>-197 [000] D.h.. 1.875207: xhci_handle_command: CMD: Enable Slot Command: flags C
<task>-197 [000] D.h.. 1.875218: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e45580c0(0x00000000e4558000) deq 0x00000000e45580c0(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-197 [000] D.h.. 1.875219: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557220(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 1.875323: xhci_ring_alloc: CTRL ffffff8022d63600: enq 0x00000000e54a0000(0x00000000e54a0000) deq 0x00000000e54a0000(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 1.875327: xhci_alloc_virt_device: vdev ffffff8024524000 ctx e54f6000 | e0fc0000 num 0 state 0 speed 0 port 0 level 0 slot 0
<task>-132 [001] ..... 1.875330: xhci_alloc_dev: RS 00000 UNKNOWN speed Ctx Entries 0 MEL 0 us Port# 0/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-132 [001] ..... 1.875379: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8024eb6780 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 1.875384: xhci_queue_trb: CTRL: bRequestType 23 bRequest 03 wValue 0004 wIndex 0002 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 1.875386: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf290(0x00000000e4caf000) deq 0x00000000e4caf280(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.875388: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 1.875390: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf2a0(0x00000000e4caf000) deq 0x00000000e4caf280(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.875392: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-200 [000] d.h.. 1.875406: xhci_handle_event: EVENT: TRB 00000000e4caf290 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-200 [000] d.h.. 1.875412: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-200 [000] d.h.. 1.875416: xhci_inc_deq: CTRL ffffff8022542f80: enq 0x00000000e4caf2a0(0x00000000e4caf000) deq 0x00000000e4caf2a0(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-200 [000] d.h.. 1.875419: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8024eb6780 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-200 [000] d.h.. 1.875427: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557230(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-95 [001] d.s.. 1.893894: xhci_hub_status_data: port 1-0: 0x00000e03 Powered Connected Enabled Link:U0 PortSpeed:3 Change: Wake:
<task>-132 [001] ..... 1.894132: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8024eb6d80 pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 1.894146: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0002 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 1.894150: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf2b0(0x00000000e4caf000) deq 0x00000000e4caf2a0(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.894153: xhci_queue_trb: CTRL: Buffer 00000000e4c8cce8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 1.894155: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf2c0(0x00000000e4caf000) deq 0x00000000e4caf2a0(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.894156: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 1.894158: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf2d0(0x00000000e4caf000) deq 0x00000000e4caf2a0(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.894161: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-164 [000] d.h.. 1.894186: xhci_handle_event: EVENT: TRB 00000000e4caf2c0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-164 [000] d.h.. 1.894196: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-164 [000] d.h.. 1.894202: xhci_inc_deq: CTRL ffffff8022542f80: enq 0x00000000e4caf2d0(0x00000000e4caf000) deq 0x00000000e4caf2d0(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-164 [000] d.h.. 1.894207: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8024eb6d80 pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-164 [000] d.h.. 1.894213: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557240(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 1.894562: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8024eb6d80 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 1.894567: xhci_queue_trb: CTRL: bRequestType 23 bRequest 01 wValue 0014 wIndex 0002 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 1.894570: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf2e0(0x00000000e4caf000) deq 0x00000000e4caf2d0(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.894572: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 1.894574: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf2f0(0x00000000e4caf000) deq 0x00000000e4caf2d0(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.894575: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-164 [000] d.h.. 1.894597: xhci_handle_event: EVENT: TRB 00000000e4caf2e0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-164 [000] d.h.. 1.894603: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-164 [000] d.h.. 1.894607: xhci_inc_deq: CTRL ffffff8022542f80: enq 0x00000000e4caf2f0(0x00000000e4caf000) deq 0x00000000e4caf2f0(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-164 [000] d.h.. 1.894609: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8024eb6d80 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-164 [000] d.h.. 1.894614: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557250(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 1.949977: xhci_setup_device_slot: RS 00000 UNKNOWN speed Ctx Entries 0 MEL 0 us Port# 0/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-132 [001] ..... 1.950006: xhci_setup_addressable_virt_device: vdev ffffff8024524000 ctx e54f6000 | e0fc0000 num 0 state 5 speed 3 port 2 level 2 slot 2
<task>-132 [001] ..... 1.950012: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e54f6000, ctx_va=@ffffffc080f25000
<task>-132 [001] ..... 1.950016: xhci_address_ctrl_ctx: Add: slot ep0
<task>-132 [001] d.... 1.950019: xhci_setup_device: vdev ffffff8024524000 ctx e54f6000 | e0fc0000 num 0 state 5 speed 3 port 2 level 2 slot 2
<task>-132 [001] d.... 1.950029: xhci_queue_trb: CMD: Address Device Command: ctx 00000000e54f6000 slot 2 flags B:C
<task>-132 [001] d.... 1.950033: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e45580d0(0x00000000e4558000) deq 0x00000000e45580c0(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.950037: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-164 [000] d.h.. 1.950058: xhci_handle_event: EVENT: TRB 00000000e45580c0 status 'Success' len 0 slot 2 ep 0 type 'Command Completion Event' flags e:C
<task>-164 [000] d.h.. 1.950064: xhci_handle_command: CMD: Address Device Command: ctx 00000000e54f6000 slot 2 flags B:C
<task>-164 [000] d.h.. 1.950070: xhci_handle_cmd_addr_dev: RS 00002 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<task>-164 [000] d.h.. 1.950084: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e45580d0(0x00000000e4558000) deq 0x00000000e45580d0(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-164 [000] d.h.. 1.950087: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557260(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 1.950336: xhci_dbg_address: Successful setup context command
<task>-132 [001] ..... 1.950341: xhci_dbg_address: Op regs DCBAA ptr = 0x000000e456f000
<task>-132 [001] ..... 1.950348: xhci_dbg_address: Slot ID 2 dcbaa entry @ffffffc080c1d010 = 0x000000e0fc0000
<task>-132 [001] ..... 1.950353: xhci_dbg_address: Output Context DMA address = 0xe0fc0000
<task>-132 [001] ..... 1.950355: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e54f6000, ctx_va=@ffffffc080f25000
<task>-132 [001] ..... 1.950358: xhci_address_ctx: ctx_64=0, ctx_type=1, ctx_dma=@e0fc0000, ctx_va=@ffffffc080e26000
<task>-132 [001] ..... 1.950361: xhci_dbg_address: Internal device address = 0
<task>-132 [001] ..... 1.950383: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8025649cc0 pipe 2147483776 slot 2 length 0/64 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 1.950392: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0100 wIndex 0000 wLength 64 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 1.950395: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0010(0x00000000e54a0000) deq 0x00000000e54a0000(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.950397: xhci_queue_trb: CTRL: Buffer 00000000e4f68a40 length 64 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 1.950399: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0020(0x00000000e54a0000) deq 0x00000000e54a0000(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.950400: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 1.950402: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0030(0x00000000e54a0000) deq 0x00000000e54a0000(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.950405: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-164 [000] d.h.. 1.950419: xhci_handle_event: EVENT: TRB 00000000e54a0010 status 'Short Packet' len 46 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-164 [000] d.h.. 1.950427: xhci_handle_transfer: CTRL: Buffer 00000000e4f68a40 length 64 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-164 [000] d.h.. 1.950430: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557270(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-164 [000] d.h.. 1.950432: xhci_handle_event: EVENT: TRB 00000000e54a0020 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-164 [000] d.h.. 1.950435: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-164 [000] d.h.. 1.950439: xhci_inc_deq: CTRL ffffff8022d63600: enq 0x00000000e54a0030(0x00000000e54a0000) deq 0x00000000e54a0030(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-164 [000] d.h.. 1.950443: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8025649cc0 pipe 2147483776 slot 2 length 18/64 sgs 0/0 stream 0 flags 00110200
<task>-164 [000] d.h.. 1.950451: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557280(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 1.950595: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8025649cc0 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 1.950602: xhci_queue_trb: CTRL: bRequestType 23 bRequest 03 wValue 0004 wIndex 0002 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 1.950604: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf300(0x00000000e4caf000) deq 0x00000000e4caf2f0(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.950605: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 1.950607: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf310(0x00000000e4caf000) deq 0x00000000e4caf2f0(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.950609: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-164 [000] d.h.. 1.950622: xhci_handle_event: EVENT: TRB 00000000e4caf300 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-164 [000] d.h.. 1.950627: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-164 [000] d.h.. 1.950630: xhci_inc_deq: CTRL ffffff8022542f80: enq 0x00000000e4caf310(0x00000000e4caf000) deq 0x00000000e4caf310(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-164 [000] d.h.. 1.950632: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8025649cc0 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-164 [000] d.h.. 1.950637: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557290(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 1.966002: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8025649cc0 pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 1.966021: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0002 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 1.966026: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf320(0x00000000e4caf000) deq 0x00000000e4caf310(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.966029: xhci_queue_trb: CTRL: Buffer 00000000e4c8cce8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 1.966031: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf330(0x00000000e4caf000) deq 0x00000000e4caf310(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.966032: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 1.966034: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf340(0x00000000e4caf000) deq 0x00000000e4caf310(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.966037: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-164 [000] d.h.. 1.966063: xhci_handle_event: EVENT: TRB 00000000e4caf330 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-164 [000] d.h.. 1.966073: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-164 [000] d.h.. 1.966079: xhci_inc_deq: CTRL ffffff8022542f80: enq 0x00000000e4caf340(0x00000000e4caf000) deq 0x00000000e4caf340(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-164 [000] d.h.. 1.966085: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8025649cc0 pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-164 [000] d.h.. 1.966095: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45572a0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 1.966597: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8025649cc0 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 1.966606: xhci_queue_trb: CTRL: bRequestType 23 bRequest 01 wValue 0014 wIndex 0002 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 1.966609: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf350(0x00000000e4caf000) deq 0x00000000e4caf340(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.966610: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 1.966612: xhci_inc_enq: CTRL ffffff8022542f80: enq 0x00000000e4caf360(0x00000000e4caf000) deq 0x00000000e4caf340(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 1.966615: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-31 [000] d.h.. 1.966632: xhci_handle_event: EVENT: TRB 00000000e4caf350 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-31 [000] d.h.. 1.966639: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-31 [000] d.h.. 1.966644: xhci_inc_deq: CTRL ffffff8022542f80: enq 0x00000000e4caf360(0x00000000e4caf000) deq 0x00000000e4caf360(0x00000000e4caf000) segs 2 stream 0 bounce 0 cycle 1
<task>-31 [000] d.h.. 1.966648: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8025649cc0 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-31 [000] d.h.. 1.966655: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45572b0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.022027: xhci_discover_or_reset_device: RS 00002 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<task>-132 [001] d.... 2.022051: xhci_queue_trb: CMD: Reset Device Command: slot 2 flags C
<task>-132 [001] d.... 2.022055: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e45580e0(0x00000000e4558000) deq 0x00000000e45580d0(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.022059: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-186 [000] d.h.. 2.022079: xhci_handle_event: EVENT: TRB 00000000e45580d0 status 'Context State Error' len 0 slot 2 ep 0 type 'Command Completion Event' flags e:C
<task>-186 [000] d.h.. 2.022085: xhci_handle_command: CMD: Reset Device Command: slot 2 flags C
<task>-186 [000] d.h.. 2.022092: xhci_handle_cmd_reset_dev: RS 00002 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<task>-186 [000] d.h.. 2.022103: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e45580e0(0x00000000e4558000) deq 0x00000000e45580e0(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-186 [000] d.h.. 2.022105: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45572c0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.022196: xhci_setup_device_slot: RS 00002 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<task>-132 [001] ..... 2.022205: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e54f6000, ctx_va=@ffffffc080f25000
<task>-132 [001] ..... 2.022209: xhci_address_ctrl_ctx: Add: slot ep0
<task>-132 [001] d.... 2.022212: xhci_setup_device: vdev ffffff8024524000 ctx e54f6000 | e0fc0000 num 0 state 5 speed 3 port 2 level 2 slot 2
<task>-132 [001] d.... 2.022216: xhci_queue_trb: CMD: Address Device Command: ctx 00000000e54f6000 slot 2 flags b:C
<task>-132 [001] d.... 2.022218: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e45580f0(0x00000000e4558000) deq 0x00000000e45580e0(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.022220: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-186 [000] d.h.. 2.022235: xhci_handle_event: EVENT: TRB 00000000e45580e0 status 'Success' len 0 slot 2 ep 0 type 'Command Completion Event' flags e:C
<task>-186 [000] d.h.. 2.022238: xhci_handle_command: CMD: Address Device Command: ctx 00000000e54f6000 slot 2 flags b:C
<task>-186 [000] d.h.. 2.022242: xhci_handle_cmd_addr_dev: RS 00002 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 2 State addressed
<task>-186 [000] d.h.. 2.022250: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e45580f0(0x00000000e4558000) deq 0x00000000e45580f0(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-186 [000] d.h.. 2.022252: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45572d0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.022270: xhci_dbg_address: Successful setup address command
<task>-132 [001] ..... 2.022276: xhci_dbg_address: Op regs DCBAA ptr = 0x000000e456f000
<task>-132 [001] ..... 2.022283: xhci_dbg_address: Slot ID 2 dcbaa entry @ffffffc080c1d010 = 0x000000e0fc0000
<task>-132 [001] ..... 2.022288: xhci_dbg_address: Output Context DMA address = 0xe0fc0000
<task>-132 [001] ..... 2.022291: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e54f6000, ctx_va=@ffffffc080f25000
<task>-132 [001] ..... 2.022293: xhci_address_ctx: ctx_64=0, ctx_type=1, ctx_dma=@e0fc0000, ctx_va=@ffffffc080e26000
<task>-132 [001] ..... 2.022297: xhci_dbg_address: Internal device address = 2
<task>-132 [001] ..... 2.039615: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8022d77480 pipe 2147484544 slot 2 length 0/18 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.039635: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0100 wIndex 0000 wLength 18 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.039640: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0040(0x00000000e54a0000) deq 0x00000000e54a0030(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.039643: xhci_queue_trb: CTRL: Buffer 00000000e4e62540 length 18 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.039645: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0050(0x00000000e54a0000) deq 0x00000000e54a0030(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.039646: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.039648: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0060(0x00000000e54a0000) deq 0x00000000e54a0030(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.039651: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-125 [000] d.h.. 2.039686: xhci_handle_event: EVENT: TRB 00000000e54a0050 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-125 [000] d.h.. 2.039696: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-125 [000] d.h.. 2.039702: xhci_inc_deq: CTRL ffffff8022d63600: enq 0x00000000e54a0060(0x00000000e54a0000) deq 0x00000000e54a0060(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-125 [000] d.h.. 2.039708: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8022d77480 pipe 2147484544 slot 2 length 18/18 sgs 0/0 stream 0 flags 00110200
<task>-125 [000] d.h.. 2.039719: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45572e0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.040539: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8022d77480 pipe 2147484544 slot 2 length 0/9 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.040551: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0200 wIndex 0000 wLength 9 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.040554: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0070(0x00000000e54a0000) deq 0x00000000e54a0060(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.040559: xhci_queue_trb: CTRL: Buffer 00000000e4fc46b0 length 9 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.040561: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0080(0x00000000e54a0000) deq 0x00000000e54a0060(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.040562: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.040564: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0090(0x00000000e54a0000) deq 0x00000000e54a0060(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.040567: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-164 [000] d.h.. 2.040598: xhci_handle_event: EVENT: TRB 00000000e54a0080 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-164 [000] d.h.. 2.040607: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-164 [000] d.h.. 2.040612: xhci_inc_deq: CTRL ffffff8022d63600: enq 0x00000000e54a0090(0x00000000e54a0000) deq 0x00000000e54a0090(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-164 [000] d.h.. 2.040616: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8022d77480 pipe 2147484544 slot 2 length 9/9 sgs 0/0 stream 0 flags 00110200
<task>-164 [000] d.h.. 2.040624: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45572f0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.041142: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8022d77480 pipe 2147484544 slot 2 length 0/41 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.041150: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0200 wIndex 0000 wLength 41 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.041152: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a00a0(0x00000000e54a0000) deq 0x00000000e54a0090(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.041154: xhci_queue_trb: CTRL: Buffer 00000000e4f76ec0 length 41 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.041156: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a00b0(0x00000000e54a0000) deq 0x00000000e54a0090(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.041157: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.041159: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a00c0(0x00000000e54a0000) deq 0x00000000e54a0090(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.041162: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-117 [000] d.h.. 2.041184: xhci_handle_event: EVENT: TRB 00000000e54a00b0 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-117 [000] d.h.. 2.041190: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-117 [000] d.h.. 2.041194: xhci_inc_deq: CTRL ffffff8022d63600: enq 0x00000000e54a00c0(0x00000000e54a0000) deq 0x00000000e54a00c0(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-117 [000] d.h.. 2.041197: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8022d77480 pipe 2147484544 slot 2 length 41/41 sgs 0/0 stream 0 flags 00110200
<task>-117 [000] d.h.. 2.041204: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557300(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.041826: xhci_ring_alloc: INTR ffffff8024e47a80: enq 0x00000000e4e26000(0x00000000e4e26000) deq 0x00000000e4e26000(0x00000000e4e26000) segs 2 stream 0 bounce 1 cycle 1
<task>-132 [001] ..... 2.041832: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 256000 us max ESIT payload 1 CErr 3 Type Int IN burst 0 maxp 1 deq 00000000e4e26001 avg trb len 1
<task>-132 [001] d.... 2.041910: xhci_configure_endpoint_ctrl_ctx: Add: slot 1in
<task>-132 [001] d.... 2.041914: xhci_configure_endpoint: RS 00002 high-speed Ctx Entries 3 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-132 [001] d.... 2.041923: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e54f6000 slot 2 flags d:C
<task>-132 [001] d.... 2.041926: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e4558100(0x00000000e4558000) deq 0x00000000e45580f0(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.041929: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-164 [000] d.h.. 2.042013: xhci_handle_event: EVENT: TRB 00000000e45580f0 status 'Success' len 0 slot 2 ep 0 type 'Command Completion Event' flags e:C
<task>-164 [000] d.h.. 2.042018: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e54f6000 slot 2 flags d:C
<task>-164 [000] d.h.. 2.042029: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e4558100(0x00000000e4558000) deq 0x00000000e4558100(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-164 [000] d.h.. 2.042031: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557310(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.043117: xhci_dbg_context_change: Successful Endpoint Configure command
<task>-132 [001] d.... 2.043172: xhci_queue_trb: CMD: Stop Ring Command: slot 2 sp 0 ep 3 flags C
<task>-132 [001] d.... 2.043176: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e4558110(0x00000000e4558000) deq 0x00000000e4558100(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.043178: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-133 [000] d.h.. 2.043197: xhci_handle_event: EVENT: TRB 00000000e4e26000 status 'Stopped - Length Invalid' len 0 slot 2 ep 3 type 'Transfer Event' flags e:C
<task>-133 [000] d.h.. 2.043205: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557320(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-133 [000] d.h.. 2.043207: xhci_handle_event: EVENT: TRB 00000000e4558100 status 'Success' len 0 slot 2 ep 0 type 'Command Completion Event' flags e:C
<task>-133 [000] d.h.. 2.043210: xhci_handle_command: CMD: Stop Ring Command: slot 2 sp 0 ep 3 flags C
<task>-133 [000] d.h.. 2.043226: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e4558110(0x00000000e4558000) deq 0x00000000e4558110(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-133 [000] d.h.. 2.043228: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557330(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.043989: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e5581000 slot 2 flags d:C
<task>-132 [001] d.... 2.043997: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e4558120(0x00000000e4558000) deq 0x00000000e4558110(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.043999: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-164 [000] d.h.. 2.044087: xhci_handle_event: EVENT: TRB 00000000e4558110 status 'Success' len 0 slot 2 ep 0 type 'Command Completion Event' flags e:C
<task>-164 [000] d.h.. 2.044092: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e5581000 slot 2 flags d:C
<task>-164 [000] d.h.. 2.044109: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e4558120(0x00000000e4558000) deq 0x00000000e4558120(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-164 [000] d.h.. 2.044111: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557340(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.044188: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8022d77900 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.044198: xhci_queue_trb: CTRL: bRequestType 00 bRequest 09 wValue 0001 wIndex 0000 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.044200: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a00d0(0x00000000e54a0000) deq 0x00000000e54a00c0(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.044202: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.044204: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a00e0(0x00000000e54a0000) deq 0x00000000e54a00c0(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.044208: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-164 [000] d.h.. 2.044223: xhci_handle_event: EVENT: TRB 00000000e54a00d0 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-164 [000] d.h.. 2.044233: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-164 [000] d.h.. 2.044237: xhci_inc_deq: CTRL ffffff8022d63600: enq 0x00000000e54a00e0(0x00000000e54a0000) deq 0x00000000e54a00e0(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-164 [000] d.h.. 2.044242: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8022d77900 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-164 [000] d.h.. 2.044255: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557350(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.044712: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8022d77900 pipe 2147484544 slot 2 length 0/15 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.044718: xhci_queue_trb: CTRL: bRequestType a0 bRequest 06 wValue 2900 wIndex 0000 wLength 15 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.044721: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a00f0(0x00000000e54a0000) deq 0x00000000e54a00e0(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.044723: xhci_queue_trb: CTRL: Buffer 00000000e4fc4860 length 15 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.044725: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0100(0x00000000e54a0000) deq 0x00000000e54a00e0(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.044727: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.044728: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0110(0x00000000e54a0000) deq 0x00000000e54a00e0(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.044730: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-164 [000] d.h.. 2.044746: xhci_handle_event: EVENT: TRB 00000000e54a00f0 status 'Short Packet' len 6 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-164 [000] d.h.. 2.044752: xhci_handle_transfer: CTRL: Buffer 00000000e4fc4860 length 15 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-164 [000] d.h.. 2.044755: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557360(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-164 [000] d.h.. 2.044757: xhci_handle_event: EVENT: TRB 00000000e54a0100 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-164 [000] d.h.. 2.044760: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-164 [000] d.h.. 2.044763: xhci_inc_deq: CTRL ffffff8022d63600: enq 0x00000000e54a0110(0x00000000e54a0000) deq 0x00000000e54a0110(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-164 [000] d.h.. 2.044766: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8022d77900 pipe 2147484544 slot 2 length 9/15 sgs 0/0 stream 0 flags 00110200
<task>-164 [000] d.h.. 2.044769: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557370(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.045086: xhci_ring_alloc: INTR ffffff8024e47280: enq 0x00000000e4e23000(0x00000000e4e23000) deq 0x00000000e4e23000(0x00000000e4e23000) segs 2 stream 0 bounce 1 cycle 1
<task>-132 [001] ..... 2.045090: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 256000 us max ESIT payload 1 CErr 3 Type Int IN burst 0 maxp 1 deq 00000000e4e23001 avg trb len 1
<task>-132 [001] d.... 2.045107: xhci_configure_endpoint_ctrl_ctx: Drop: 1in, Add: slot 1in
<task>-132 [001] d.... 2.045110: xhci_configure_endpoint: RS 00002 high-speed Ctx Entries 3 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-132 [001] d.... 2.045116: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e54f6000 slot 2 flags d:C
<task>-132 [001] d.... 2.045119: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e4558130(0x00000000e4558000) deq 0x00000000e4558120(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.045121: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-164 [000] d.h.. 2.045202: xhci_handle_event: EVENT: TRB 00000000e4558120 status 'Success' len 0 slot 2 ep 0 type 'Command Completion Event' flags e:C
<task>-164 [000] d.h.. 2.045206: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e54f6000 slot 2 flags d:C
<task>-164 [000] d.h.. 2.045216: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e4558130(0x00000000e4558000) deq 0x00000000e4558130(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-164 [000] d.h.. 2.045218: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557380(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.046120: xhci_dbg_context_change: Successful Endpoint Configure command
<task>-132 [001] ..... 2.046138: xhci_ring_free: INTR ffffff8024e47a80: enq 0x00000000e4e26000(0x00000000e4e26000) deq 0x00000000e4e26000(0x00000000e4e26000) segs 2 stream 0 bounce 1 cycle 1
<task>-132 [001] ..... 2.046163: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8022d77900 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.046172: xhci_queue_trb: CTRL: bRequestType 01 bRequest 0b wValue 0001 wIndex 0000 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.046175: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0120(0x00000000e54a0000) deq 0x00000000e54a0110(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.046176: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.046178: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0130(0x00000000e54a0000) deq 0x00000000e54a0110(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.046181: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-133 [000] d.h.. 2.046203: xhci_handle_event: EVENT: TRB 00000000e54a0120 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-133 [000] d.h.. 2.046211: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-133 [000] d.h.. 2.046216: xhci_inc_deq: CTRL ffffff8022d63600: enq 0x00000000e54a0130(0x00000000e54a0000) deq 0x00000000e54a0130(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-133 [000] d.h.. 2.046221: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8022d77900 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-133 [000] d.h.. 2.046228: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557390(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.046780: xhci_queue_trb: CMD: Stop Ring Command: slot 2 sp 0 ep 3 flags C
<task>-132 [001] d.... 2.046787: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e4558140(0x00000000e4558000) deq 0x00000000e4558130(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.046789: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-164 [000] d.h.. 2.046804: xhci_handle_event: EVENT: TRB 00000000e4e23000 status 'Stopped - Length Invalid' len 0 slot 2 ep 3 type 'Transfer Event' flags e:C
<task>-164 [000] d.h.. 2.046812: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45573a0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-164 [000] d.h.. 2.046814: xhci_handle_event: EVENT: TRB 00000000e4558130 status 'Success' len 0 slot 2 ep 0 type 'Command Completion Event' flags e:C
<task>-164 [000] d.h.. 2.046817: xhci_handle_command: CMD: Stop Ring Command: slot 2 sp 0 ep 3 flags C
<task>-164 [000] d.h.. 2.046833: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e4558140(0x00000000e4558000) deq 0x00000000e4558140(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-164 [000] d.h.. 2.046834: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45573b0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.046880: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e5581000 slot 2 flags d:C
<task>-132 [001] d.... 2.046882: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e4558150(0x00000000e4558000) deq 0x00000000e4558140(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.046884: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-164 [000] d.h.. 2.046964: xhci_handle_event: EVENT: TRB 00000000e4558140 status 'Success' len 0 slot 2 ep 0 type 'Command Completion Event' flags e:C
<task>-164 [000] d.h.. 2.046967: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e5581000 slot 2 flags d:C
<task>-164 [000] d.h.. 2.046976: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e4558150(0x00000000e4558000) deq 0x00000000e4558150(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-164 [000] d.h.. 2.046978: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45573c0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.047131: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8022d77900 pipe 2147484544 slot 2 length 0/2 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.047137: xhci_queue_trb: CTRL: bRequestType 80 bRequest 00 wValue 0000 wIndex 0000 wLength 2 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.047140: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0140(0x00000000e54a0000) deq 0x00000000e54a0130(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.047142: xhci_queue_trb: CTRL: Buffer 00000000e4c8cfa0 length 2 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.047144: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0150(0x00000000e54a0000) deq 0x00000000e54a0130(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.047145: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.047147: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0160(0x00000000e54a0000) deq 0x00000000e54a0130(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.047150: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-164 [000] d.h.. 2.047166: xhci_handle_event: EVENT: TRB 00000000e54a0150 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-164 [000] d.h.. 2.047172: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-164 [000] d.h.. 2.047175: xhci_inc_deq: CTRL ffffff8022d63600: enq 0x00000000e54a0160(0x00000000e54a0000) deq 0x00000000e54a0160(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-164 [000] d.h.. 2.047180: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8022d77900 pipe 2147484544 slot 2 length 2/2 sgs 0/0 stream 0 flags 00110200
<task>-164 [000] d.h.. 2.047187: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45573d0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.047381: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8022d77900 pipe 2147484544 slot 2 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.047386: xhci_queue_trb: CTRL: bRequestType a0 bRequest 00 wValue 0000 wIndex 0000 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.047389: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0170(0x00000000e54a0000) deq 0x00000000e54a0160(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.047390: xhci_queue_trb: CTRL: Buffer 00000000e4c8cf78 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.047392: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0180(0x00000000e54a0000) deq 0x00000000e54a0160(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.047393: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.047395: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0190(0x00000000e54a0000) deq 0x00000000e54a0160(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.047397: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-164 [000] d.h.. 2.047414: xhci_handle_event: EVENT: TRB 00000000e54a0180 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-164 [000] d.h.. 2.047420: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-164 [000] d.h.. 2.047423: xhci_inc_deq: CTRL ffffff8022d63600: enq 0x00000000e54a0190(0x00000000e54a0000) deq 0x00000000e54a0190(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-164 [000] d.h.. 2.047425: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8022d77900 pipe 2147484544 slot 2 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-164 [000] d.h.. 2.047430: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45573e0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.047739: xhci_configure_endpoint_ctrl_ctx: Add: slot
<task>-132 [001] d.... 2.047743: xhci_configure_endpoint: RS 00002 high-speed multi-TT Hub Ctx Entries 3 MEL 0 us Port# 1/3 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-132 [001] d.... 2.047748: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e5581000 slot 2 flags d:C
<task>-132 [001] d.... 2.047750: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e4558160(0x00000000e4558000) deq 0x00000000e4558150(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.047752: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-164 [000] d.h.. 2.047831: xhci_handle_event: EVENT: TRB 00000000e4558150 status 'Success' len 0 slot 2 ep 0 type 'Command Completion Event' flags e:C
<task>-164 [000] d.h.. 2.047835: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e5581000 slot 2 flags d:C
<task>-164 [000] d.h.. 2.047845: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e4558160(0x00000000e4558000) deq 0x00000000e4558160(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-164 [000] d.h.. 2.047847: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45573f0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.048391: xhci_dbg_context_change: Successful Endpoint Configure command
<task>-132 [001] ..... 2.048409: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8022d77c00 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.048414: xhci_queue_trb: CTRL: bRequestType 23 bRequest 03 wValue 0008 wIndex 0001 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.048417: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a01a0(0x00000000e54a0000) deq 0x00000000e54a0190(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.048418: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.048420: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a01b0(0x00000000e54a0000) deq 0x00000000e54a0190(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.048422: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-164 [000] d.h.. 2.048436: xhci_handle_event: EVENT: TRB 00000000e54a01a0 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-164 [000] d.h.. 2.048443: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-164 [000] d.h.. 2.048447: xhci_inc_deq: CTRL ffffff8022d63600: enq 0x00000000e54a01b0(0x00000000e54a0000) deq 0x00000000e54a01b0(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-164 [000] d.h.. 2.048450: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8022d77c00 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-164 [000] d.h.. 2.048456: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557400(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.048500: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8022d77c00 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.048504: xhci_queue_trb: CTRL: bRequestType 23 bRequest 03 wValue 0008 wIndex 0002 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.048506: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a01c0(0x00000000e54a0000) deq 0x00000000e54a01b0(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.048508: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.048510: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a01d0(0x00000000e54a0000) deq 0x00000000e54a01b0(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.048511: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-164 [000] d.h.. 2.048524: xhci_handle_event: EVENT: TRB 00000000e54a01c0 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-164 [000] d.h.. 2.048529: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-164 [000] d.h.. 2.048532: xhci_inc_deq: CTRL ffffff8022d63600: enq 0x00000000e54a01d0(0x00000000e54a0000) deq 0x00000000e54a01d0(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-164 [000] d.h.. 2.048534: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8022d77c00 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-164 [000] d.h.. 2.048537: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557410(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.048565: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8022d77c00 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.048569: xhci_queue_trb: CTRL: bRequestType 23 bRequest 03 wValue 0008 wIndex 0003 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.048571: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a01e0(0x00000000e54a0000) deq 0x00000000e54a01d0(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.048572: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.048574: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a01f0(0x00000000e54a0000) deq 0x00000000e54a01d0(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.048576: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-164 [000] d.h.. 2.048596: xhci_handle_event: EVENT: TRB 00000000e54a01e0 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-164 [000] d.h.. 2.048600: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-164 [000] d.h.. 2.048603: xhci_inc_deq: CTRL ffffff8022d63600: enq 0x00000000e54a01f0(0x00000000e54a0000) deq 0x00000000e54a01f0(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-164 [000] d.h.. 2.048605: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8022d77c00 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-164 [000] d.h.. 2.048608: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557420(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.150184: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024e17540 pipe 2147484544 slot 2 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.150203: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0001 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.150208: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0200(0x00000000e54a0000) deq 0x00000000e54a01f0(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.150211: xhci_queue_trb: CTRL: Buffer 00000000e4c8cf78 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.150213: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0210(0x00000000e54a0000) deq 0x00000000e54a01f0(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.150214: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.150216: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0220(0x00000000e54a0000) deq 0x00000000e54a01f0(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.150219: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-113 [000] d.h.. 2.150246: xhci_handle_event: EVENT: TRB 00000000e54a0210 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-113 [000] d.h.. 2.150255: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-113 [000] d.h.. 2.150261: xhci_inc_deq: CTRL ffffff8022d63600: enq 0x00000000e54a0220(0x00000000e54a0000) deq 0x00000000e54a0220(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-113 [000] d.h.. 2.150269: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024e17540 pipe 2147484544 slot 2 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-113 [000] d.h.. 2.150277: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557430(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.150325: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024e17540 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.150329: xhci_queue_trb: CTRL: bRequestType 23 bRequest 01 wValue 0010 wIndex 0001 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.150331: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0230(0x00000000e54a0000) deq 0x00000000e54a0220(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.150333: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.150335: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0240(0x00000000e54a0000) deq 0x00000000e54a0220(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.150337: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-113 [000] d.h.. 2.150351: xhci_handle_event: EVENT: TRB 00000000e54a0230 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-113 [000] d.h.. 2.150356: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-113 [000] d.h.. 2.150359: xhci_inc_deq: CTRL ffffff8022d63600: enq 0x00000000e54a0240(0x00000000e54a0000) deq 0x00000000e54a0240(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-113 [000] d.h.. 2.150362: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024e17540 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-113 [000] d.h.. 2.150365: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557440(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.150399: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024e17540 pipe 2147484544 slot 2 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.150403: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0002 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.150405: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0250(0x00000000e54a0000) deq 0x00000000e54a0240(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.150406: xhci_queue_trb: CTRL: Buffer 00000000e4c8cf78 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.150408: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0260(0x00000000e54a0000) deq 0x00000000e54a0240(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.150410: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.150412: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0270(0x00000000e54a0000) deq 0x00000000e54a0240(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.150414: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-113 [000] d.h.. 2.150429: xhci_handle_event: EVENT: TRB 00000000e54a0260 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-113 [000] d.h.. 2.150434: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-113 [000] d.h.. 2.150437: xhci_inc_deq: CTRL ffffff8022d63600: enq 0x00000000e54a0270(0x00000000e54a0000) deq 0x00000000e54a0270(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-113 [000] d.h.. 2.150439: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024e17540 pipe 2147484544 slot 2 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-113 [000] d.h.. 2.150443: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557450(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.150479: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024e17540 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.150483: xhci_queue_trb: CTRL: bRequestType 23 bRequest 01 wValue 0010 wIndex 0002 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.150486: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0280(0x00000000e54a0000) deq 0x00000000e54a0270(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.150487: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.150489: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0290(0x00000000e54a0000) deq 0x00000000e54a0270(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.150491: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-113 [000] d.h.. 2.150504: xhci_handle_event: EVENT: TRB 00000000e54a0280 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-113 [000] d.h.. 2.150508: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-113 [000] d.h.. 2.150512: xhci_inc_deq: CTRL ffffff8022d63600: enq 0x00000000e54a0290(0x00000000e54a0000) deq 0x00000000e54a0290(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-113 [000] d.h.. 2.150514: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024e17540 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-113 [000] d.h.. 2.150517: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557460(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.150550: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024e17540 pipe 2147484544 slot 2 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.150554: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0003 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.150556: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a02a0(0x00000000e54a0000) deq 0x00000000e54a0290(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.150558: xhci_queue_trb: CTRL: Buffer 00000000e4c8cf78 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.150560: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a02b0(0x00000000e54a0000) deq 0x00000000e54a0290(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.150561: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.150563: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a02c0(0x00000000e54a0000) deq 0x00000000e54a0290(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.150564: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-113 [000] d.h.. 2.150581: xhci_handle_event: EVENT: TRB 00000000e54a02b0 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-113 [000] d.h.. 2.150585: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-113 [000] d.h.. 2.150588: xhci_inc_deq: CTRL ffffff8022d63600: enq 0x00000000e54a02c0(0x00000000e54a0000) deq 0x00000000e54a02c0(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-113 [000] d.h.. 2.150591: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024e17540 pipe 2147484544 slot 2 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-113 [000] d.h.. 2.150594: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557470(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.257998: xhci_urb_enqueue: 1-1.2 ep1in-intr: urb ffffff8022d77900 pipe 1077969792 slot 2 length 0/1 sgs 0/0 stream 0 flags 00010200
<task>-132 [001] d.... 2.258024: xhci_queue_trb: INTR: Buffer 00000000e4c8cf60 length 1 TD size 0 intr 0 type 'Normal' flags b:i:I:c:s:I:e:c
<task>-132 [001] d.... 2.258029: xhci_inc_enq: INTR ffffff8024e47280: enq 0x00000000e4e23010(0x00000000e4e23000) deq 0x00000000e4e23000(0x00000000e4e23000) segs 2 stream 0 bounce 1 cycle 1
<task>-132 [001] d.... 2.258033: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep1in
<task>-132 [001] ..... 2.258077: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024d460c0 pipe 2147484544 slot 2 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.258083: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0001 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.258086: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a02d0(0x00000000e54a0000) deq 0x00000000e54a02c0(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.258088: xhci_queue_trb: CTRL: Buffer 00000000e4c8cf78 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.258091: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a02e0(0x00000000e54a0000) deq 0x00000000e54a02c0(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.258093: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.258095: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a02f0(0x00000000e54a0000) deq 0x00000000e54a02c0(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.258096: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<idle>-0 [000] d.h.. 2.258227: xhci_handle_event: EVENT: TRB 00000000e54a02e0 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.258240: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.258246: xhci_inc_deq: CTRL ffffff8022d63600: enq 0x00000000e54a02f0(0x00000000e54a0000) deq 0x00000000e54a02f0(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.258254: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024d460c0 pipe 2147484544 slot 2 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.258263: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557480(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.258375: xhci_queue_trb: CMD: Enable Slot Command: flags C
<task>-132 [001] d.... 2.258379: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e4558170(0x00000000e4558000) deq 0x00000000e4558160(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.258382: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 2.258418: xhci_handle_event: EVENT: TRB 00000000e4558160 status 'Success' len 0 slot 3 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 2.258422: xhci_handle_command: CMD: Enable Slot Command: flags C
<idle>-0 [000] d.h.. 2.258436: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e4558170(0x00000000e4558000) deq 0x00000000e4558170(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.258438: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557490(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.258556: xhci_ring_alloc: CTRL ffffff8024e47080: enq 0x00000000e4e26000(0x00000000e4e26000) deq 0x00000000e4e26000(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.258562: xhci_alloc_virt_device: vdev ffffff8025732000 ctx e4d69000 | e5581000 num 0 state 0 speed 0 port 0 level 0 slot 0
<task>-132 [001] ..... 2.258566: xhci_alloc_dev: RS 00000 UNKNOWN speed Ctx Entries 0 MEL 0 us Port# 0/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-132 [001] ..... 2.258631: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024d460c0 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.258636: xhci_queue_trb: CTRL: bRequestType 23 bRequest 03 wValue 0004 wIndex 0001 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.258639: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0300(0x00000000e54a0000) deq 0x00000000e54a02f0(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.258644: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.258647: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0310(0x00000000e54a0000) deq 0x00000000e54a02f0(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.258648: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<idle>-0 [000] d.h.. 2.258722: xhci_handle_event: EVENT: TRB 00000000e54a0300 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.258729: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.258734: xhci_inc_deq: CTRL ffffff8022d63600: enq 0x00000000e54a0310(0x00000000e54a0000) deq 0x00000000e54a0310(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.258737: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024d460c0 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.258742: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45574a0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.274098: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024d460c0 pipe 2147484544 slot 2 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.274128: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0001 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.274135: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0320(0x00000000e54a0000) deq 0x00000000e54a0310(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.274139: xhci_queue_trb: CTRL: Buffer 00000000e4c8cf78 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.274142: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0330(0x00000000e54a0000) deq 0x00000000e54a0310(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.274144: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.274147: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0340(0x00000000e54a0000) deq 0x00000000e54a0310(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.274152: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<idle>-0 [000] d.h.. 2.274422: xhci_handle_event: EVENT: TRB 00000000e54a0330 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.274440: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.274450: xhci_inc_deq: CTRL ffffff8022d63600: enq 0x00000000e54a0340(0x00000000e54a0000) deq 0x00000000e54a0340(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.274466: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024d460c0 pipe 2147484544 slot 2 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.274489: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45574b0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.274783: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024d460c0 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.274809: xhci_queue_trb: CTRL: bRequestType 23 bRequest 01 wValue 0014 wIndex 0001 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.274813: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0350(0x00000000e54a0000) deq 0x00000000e54a0340(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.274815: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.274818: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0360(0x00000000e54a0000) deq 0x00000000e54a0340(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.274822: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<idle>-0 [000] d.h.. 2.274957: xhci_handle_event: EVENT: TRB 00000000e54a0350 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.274974: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.274982: xhci_inc_deq: CTRL ffffff8022d63600: enq 0x00000000e54a0360(0x00000000e54a0000) deq 0x00000000e54a0360(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.274996: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024d460c0 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.275014: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45574c0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.330011: xhci_setup_device_slot: RS 00000 UNKNOWN speed Ctx Entries 0 MEL 0 us Port# 0/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-132 [001] ..... 2.330032: xhci_setup_addressable_virt_device: vdev ffffff8025732000 ctx e4d69000 | e5581000 num 0 state 5 speed 3 port 1 level 3 slot 3
<task>-132 [001] ..... 2.330035: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e4d69000, ctx_va=@ffffffc080f5d000
<task>-132 [001] ..... 2.330040: xhci_address_ctrl_ctx: Add: slot ep0
<task>-132 [001] d.... 2.330043: xhci_setup_device: vdev ffffff8025732000 ctx e4d69000 | e5581000 num 0 state 5 speed 3 port 1 level 3 slot 3
<task>-132 [001] d.... 2.330053: xhci_queue_trb: CMD: Address Device Command: ctx 00000000e4d69000 slot 3 flags B:C
<task>-132 [001] d.... 2.330057: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e4558180(0x00000000e4558000) deq 0x00000000e4558170(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.330060: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 2.330092: xhci_handle_event: EVENT: TRB 00000000e4558170 status 'Success' len 0 slot 3 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 2.330097: xhci_handle_command: CMD: Address Device Command: ctx 00000000e4d69000 slot 3 flags B:C
<idle>-0 [000] d.h.. 2.330103: xhci_handle_cmd_addr_dev: RS 00012 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<idle>-0 [000] d.h.. 2.330122: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e4558180(0x00000000e4558000) deq 0x00000000e4558180(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.330124: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45574d0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.330151: xhci_dbg_address: Successful setup context command
<task>-132 [001] ..... 2.330157: xhci_dbg_address: Op regs DCBAA ptr = 0x000000e456f000
<task>-132 [001] ..... 2.330164: xhci_dbg_address: Slot ID 3 dcbaa entry @ffffffc080c1d018 = 0x000000e5581000
<task>-132 [001] ..... 2.330169: xhci_dbg_address: Output Context DMA address = 0xe5581000
<task>-132 [001] ..... 2.330171: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e4d69000, ctx_va=@ffffffc080f5d000
<task>-132 [001] ..... 2.330174: xhci_address_ctx: ctx_64=0, ctx_type=1, ctx_dma=@e5581000, ctx_va=@ffffffc081b7e000
<task>-132 [001] ..... 2.330177: xhci_dbg_address: Internal device address = 0
<task>-132 [001] ..... 2.330206: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d460c0 pipe 2147483776 slot 3 length 0/64 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.330215: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0100 wIndex 0000 wLength 64 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.330217: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26010(0x00000000e4e26000) deq 0x00000000e4e26000(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.330220: xhci_queue_trb: CTRL: Buffer 00000000e4e22900 length 64 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.330222: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26020(0x00000000e4e26000) deq 0x00000000e4e26000(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.330223: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.330225: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26030(0x00000000e4e26000) deq 0x00000000e4e26000(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.330228: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.330249: xhci_handle_event: EVENT: TRB 00000000e4e26010 status 'Short Packet' len 46 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.330257: xhci_handle_transfer: CTRL: Buffer 00000000e4e22900 length 64 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<idle>-0 [000] d.h.. 2.330260: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45574e0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.330262: xhci_handle_event: EVENT: TRB 00000000e4e26020 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.330265: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.330268: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26030(0x00000000e4e26000) deq 0x00000000e4e26030(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.330274: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d460c0 pipe 2147483776 slot 3 length 18/64 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.330281: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45574f0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.330328: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024d460c0 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.330335: xhci_queue_trb: CTRL: bRequestType 23 bRequest 03 wValue 0004 wIndex 0001 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.330337: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0370(0x00000000e54a0000) deq 0x00000000e54a0360(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.330338: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.330340: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0380(0x00000000e54a0000) deq 0x00000000e54a0360(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.330342: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<idle>-0 [000] d.h.. 2.330364: xhci_handle_event: EVENT: TRB 00000000e54a0370 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.330368: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.330372: xhci_inc_deq: CTRL ffffff8022d63600: enq 0x00000000e54a0380(0x00000000e54a0000) deq 0x00000000e54a0380(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.330374: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024d460c0 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.330377: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557500(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.350027: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024d460c0 pipe 2147484544 slot 2 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.350058: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0001 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.350065: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0390(0x00000000e54a0000) deq 0x00000000e54a0380(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.350069: xhci_queue_trb: CTRL: Buffer 00000000e4c8cf78 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.350072: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a03a0(0x00000000e54a0000) deq 0x00000000e54a0380(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.350073: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.350076: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a03b0(0x00000000e54a0000) deq 0x00000000e54a0380(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.350081: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<idle>-0 [000] d.h.. 2.350285: xhci_handle_event: EVENT: TRB 00000000e54a03a0 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.350302: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.350311: xhci_inc_deq: CTRL ffffff8022d63600: enq 0x00000000e54a03b0(0x00000000e54a0000) deq 0x00000000e54a03b0(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.350325: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024d460c0 pipe 2147484544 slot 2 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.350343: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557510(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.350488: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024d460c0 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.350496: xhci_queue_trb: CTRL: bRequestType 23 bRequest 01 wValue 0014 wIndex 0001 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.350501: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a03c0(0x00000000e54a0000) deq 0x00000000e54a03b0(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.350502: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.350507: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a03d0(0x00000000e54a0000) deq 0x00000000e54a03b0(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.350510: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<idle>-0 [000] d.h.. 2.350561: xhci_handle_event: EVENT: TRB 00000000e54a03c0 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.350566: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.350570: xhci_inc_deq: CTRL ffffff8022d63600: enq 0x00000000e54a03d0(0x00000000e54a0000) deq 0x00000000e54a03d0(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.350573: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024d460c0 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.350577: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557520(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.409990: xhci_discover_or_reset_device: RS 00012 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<task>-132 [001] d.... 2.410013: xhci_queue_trb: CMD: Reset Device Command: slot 3 flags C
<task>-132 [001] d.... 2.410017: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e4558190(0x00000000e4558000) deq 0x00000000e4558180(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.410021: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] dNh.. 2.410153: xhci_handle_event: EVENT: TRB 00000000e4558180 status 'Context State Error' len 0 slot 3 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] dNh.. 2.410158: xhci_handle_command: CMD: Reset Device Command: slot 3 flags C
<idle>-0 [000] dNh.. 2.410164: xhci_handle_cmd_reset_dev: RS 00012 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<idle>-0 [000] dNh.. 2.410177: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e4558190(0x00000000e4558000) deq 0x00000000e4558190(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] dNh.. 2.410179: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557530(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.410252: xhci_setup_device_slot: RS 00012 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<task>-132 [001] ..... 2.410260: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e4d69000, ctx_va=@ffffffc080f5d000
<task>-132 [001] ..... 2.410264: xhci_address_ctrl_ctx: Add: slot ep0
<task>-132 [001] d.... 2.410267: xhci_setup_device: vdev ffffff8025732000 ctx e4d69000 | e5581000 num 0 state 5 speed 3 port 1 level 3 slot 3
<task>-132 [001] d.... 2.410272: xhci_queue_trb: CMD: Address Device Command: ctx 00000000e4d69000 slot 3 flags b:C
<task>-132 [001] d.... 2.410274: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e45581a0(0x00000000e4558000) deq 0x00000000e4558190(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.410276: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 2.410342: xhci_handle_event: EVENT: TRB 00000000e4558190 status 'Success' len 0 slot 3 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 2.410346: xhci_handle_command: CMD: Address Device Command: ctx 00000000e4d69000 slot 3 flags b:C
<idle>-0 [000] d.h.. 2.410350: xhci_handle_cmd_addr_dev: RS 00012 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 3 State addressed
<idle>-0 [000] d.h.. 2.410361: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e45581a0(0x00000000e4558000) deq 0x00000000e45581a0(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.410363: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557540(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.410405: xhci_dbg_address: Successful setup address command
<task>-132 [001] ..... 2.410413: xhci_dbg_address: Op regs DCBAA ptr = 0x000000e456f000
<task>-132 [001] ..... 2.410420: xhci_dbg_address: Slot ID 3 dcbaa entry @ffffffc080c1d018 = 0x000000e5581000
<task>-132 [001] ..... 2.410428: xhci_dbg_address: Output Context DMA address = 0xe5581000
<task>-132 [001] ..... 2.410430: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e4d69000, ctx_va=@ffffffc080f5d000
<task>-132 [001] ..... 2.410433: xhci_address_ctx: ctx_64=0, ctx_type=1, ctx_dma=@e5581000, ctx_va=@ffffffc081b7e000
<task>-132 [001] ..... 2.410436: xhci_dbg_address: Internal device address = 3
<task>-132 [001] ..... 2.425916: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d460c0 pipe 2147484800 slot 3 length 0/18 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.425925: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0100 wIndex 0000 wLength 18 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.425927: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26040(0x00000000e4e26000) deq 0x00000000e4e26030(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.425930: xhci_queue_trb: CTRL: Buffer 00000000e4e628e0 length 18 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.425932: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26050(0x00000000e4e26000) deq 0x00000000e4e26030(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.425933: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.425935: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26060(0x00000000e4e26000) deq 0x00000000e4e26030(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.425938: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.426055: xhci_handle_event: EVENT: TRB 00000000e4e26050 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.426062: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.426066: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26060(0x00000000e4e26000) deq 0x00000000e4e26060(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.426072: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d460c0 pipe 2147484800 slot 3 length 18/18 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.426077: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557550(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.426172: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d460c0 pipe 2147484800 slot 3 length 0/9 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.426176: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0200 wIndex 0000 wLength 9 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.426179: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26070(0x00000000e4e26000) deq 0x00000000e4e26060(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.426180: xhci_queue_trb: CTRL: Buffer 00000000e4fc4a20 length 9 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.426182: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26080(0x00000000e4e26000) deq 0x00000000e4e26060(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.426184: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.426186: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26090(0x00000000e4e26000) deq 0x00000000e4e26060(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.426187: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.426223: xhci_handle_event: EVENT: TRB 00000000e4e26080 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.426227: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.426231: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26090(0x00000000e4e26000) deq 0x00000000e4e26090(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.426234: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d460c0 pipe 2147484800 slot 3 length 9/9 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.426237: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557560(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.426295: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d460c0 pipe 2147484800 slot 3 length 0/39 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.426299: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0200 wIndex 0000 wLength 39 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.426301: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e260a0(0x00000000e4e26000) deq 0x00000000e4e26090(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.426303: xhci_queue_trb: CTRL: Buffer 00000000e4e22900 length 39 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.426305: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e260b0(0x00000000e4e26000) deq 0x00000000e4e26090(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.426306: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.426308: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e260c0(0x00000000e4e26000) deq 0x00000000e4e26090(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.426309: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.426346: xhci_handle_event: EVENT: TRB 00000000e4e260b0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.426350: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.426354: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e260c0(0x00000000e4e26000) deq 0x00000000e4e260c0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.426356: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d460c0 pipe 2147484800 slot 3 length 39/39 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.426360: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557570(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.427026: xhci_ring_alloc: BULK ffffff8024e47d00: enq 0x00000000e4e0d000(0x00000000e4e0d000) deq 0x00000000e4e0d000(0x00000000e4e0d000) segs 2 stream 0 bounce 512 cycle 1
<task>-132 [001] ..... 2.427030: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 125 us max ESIT payload 0 CErr 3 Type Bulk IN burst 0 maxp 512 deq 00000000e4e0d001 avg trb len 0
<task>-132 [001] ..... 2.427051: xhci_ring_alloc: BULK ffffff8024e47d80: enq 0x00000000e4d2d000(0x00000000e4d2d000) deq 0x00000000e4d2d000(0x00000000e4d2d000) segs 2 stream 0 bounce 512 cycle 1
<task>-132 [001] ..... 2.427053: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 125 us max ESIT payload 0 CErr 3 Type Bulk OUT burst 0 maxp 512 deq 00000000e4d2d001 avg trb len 0
<task>-132 [001] ..... 2.427073: xhci_ring_alloc: INTR ffffff8024e47f80: enq 0x00000000e4d6c000(0x00000000e4d6c000) deq 0x00000000e4d6c000(0x00000000e4d6c000) segs 2 stream 0 bounce 16 cycle 1
<task>-132 [001] ..... 2.427075: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 1000 us max ESIT payload 16 CErr 3 Type Int IN burst 0 maxp 16 deq 00000000e4d6c001 avg trb len 16
<task>-132 [001] d.... 2.427088: xhci_configure_endpoint_ctrl_ctx: Add: slot 1in 2out 3in
<task>-132 [001] d.... 2.427091: xhci_configure_endpoint: RS 00012 high-speed Ctx Entries 7 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-132 [001] d.... 2.427098: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e4d69000 slot 3 flags d:C
<task>-132 [001] d.... 2.427101: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e45581b0(0x00000000e4558000) deq 0x00000000e45581a0(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.427102: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-113 [000] d.h.. 2.427203: xhci_handle_event: EVENT: TRB 00000000e45581a0 status 'Success' len 0 slot 3 ep 0 type 'Command Completion Event' flags e:C
<task>-113 [000] d.h.. 2.427208: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e4d69000 slot 3 flags d:C
<task>-113 [000] d.h.. 2.427222: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e45581b0(0x00000000e4558000) deq 0x00000000e45581b0(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-113 [000] d.h.. 2.427224: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557580(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.427272: xhci_dbg_context_change: Successful Endpoint Configure command
<task>-132 [001] d.... 2.427307: xhci_queue_trb: CMD: Stop Ring Command: slot 3 sp 0 ep 3 flags C
<task>-132 [001] d.... 2.427309: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e45581c0(0x00000000e4558000) deq 0x00000000e45581b0(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.427311: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-113 [000] d.h.. 2.427322: xhci_handle_event: EVENT: TRB 00000000e4e0d000 status 'Stopped - Length Invalid' len 0 slot 3 ep 3 type 'Transfer Event' flags e:C
<task>-113 [000] d.h.. 2.427327: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557590(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-113 [000] d.h.. 2.427329: xhci_handle_event: EVENT: TRB 00000000e45581b0 status 'Success' len 0 slot 3 ep 0 type 'Command Completion Event' flags e:C
<task>-113 [000] d.h.. 2.427331: xhci_handle_command: CMD: Stop Ring Command: slot 3 sp 0 ep 3 flags C
<task>-113 [000] d.h.. 2.427342: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e45581c0(0x00000000e4558000) deq 0x00000000e45581c0(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-113 [000] d.h.. 2.427344: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45575a0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.428051: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e5582000 slot 3 flags d:C
<task>-132 [001] d.... 2.428055: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e45581d0(0x00000000e4558000) deq 0x00000000e45581c0(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.428057: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 2.428173: xhci_handle_event: EVENT: TRB 00000000e45581c0 status 'Success' len 0 slot 3 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 2.428176: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e5582000 slot 3 flags d:C
<idle>-0 [000] d.h.. 2.428190: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e45581d0(0x00000000e4558000) deq 0x00000000e45581d0(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.428192: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45575b0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.428238: xhci_queue_trb: CMD: Stop Ring Command: slot 3 sp 0 ep 4 flags C
<task>-132 [001] d.... 2.428241: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e45581e0(0x00000000e4558000) deq 0x00000000e45581d0(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.428242: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 2.428277: xhci_handle_event: EVENT: TRB 00000000e4d2d000 status 'Stopped - Length Invalid' len 0 slot 3 ep 4 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.428282: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45575c0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.428283: xhci_handle_event: EVENT: TRB 00000000e45581d0 status 'Success' len 0 slot 3 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 2.428286: xhci_handle_command: CMD: Stop Ring Command: slot 3 sp 0 ep 4 flags C
<idle>-0 [000] d.h.. 2.428298: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e45581e0(0x00000000e4558000) deq 0x00000000e45581e0(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.428299: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45575d0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.428336: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e5582000 slot 3 flags d:C
<task>-132 [001] d.... 2.428339: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e45581f0(0x00000000e4558000) deq 0x00000000e45581e0(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.428340: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 2.428450: xhci_handle_event: EVENT: TRB 00000000e45581e0 status 'Success' len 0 slot 3 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 2.428453: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e5582000 slot 3 flags d:C
<idle>-0 [000] d.h.. 2.428467: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e45581f0(0x00000000e4558000) deq 0x00000000e45581f0(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.428468: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45575e0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.428518: xhci_queue_trb: CMD: Stop Ring Command: slot 3 sp 0 ep 7 flags C
<task>-132 [001] d.... 2.428521: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e4558200(0x00000000e4558000) deq 0x00000000e45581f0(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.428522: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 2.428643: xhci_handle_event: EVENT: TRB 00000000e4d6c000 status 'Stopped - Length Invalid' len 0 slot 3 ep 7 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.428647: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45575f0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.428649: xhci_handle_event: EVENT: TRB 00000000e45581f0 status 'Success' len 0 slot 3 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 2.428651: xhci_handle_command: CMD: Stop Ring Command: slot 3 sp 0 ep 7 flags C
<idle>-0 [000] d.h.. 2.428663: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e4558200(0x00000000e4558000) deq 0x00000000e4558200(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.428664: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557600(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.428703: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e5582000 slot 3 flags d:C
<task>-132 [001] d.... 2.428706: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e4558210(0x00000000e4558000) deq 0x00000000e4558200(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.428707: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 2.428814: xhci_handle_event: EVENT: TRB 00000000e4558200 status 'Success' len 0 slot 3 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 2.428818: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e5582000 slot 3 flags d:C
<idle>-0 [000] d.h.. 2.428831: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e4558210(0x00000000e4558000) deq 0x00000000e4558210(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.428833: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557610(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.428897: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d460c0 pipe 2147484672 slot 3 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.428904: xhci_queue_trb: CTRL: bRequestType 00 bRequest 09 wValue 0001 wIndex 0000 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.428906: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e260d0(0x00000000e4e26000) deq 0x00000000e4e260c0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.428908: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.428910: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e260e0(0x00000000e4e26000) deq 0x00000000e4e260c0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.428912: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.430957: xhci_handle_event: EVENT: TRB 00000000e4e260d0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.430963: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.430968: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e260e0(0x00000000e4e26000) deq 0x00000000e4e260e0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.430973: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d460c0 pipe 2147484672 slot 3 length 0/0 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.430981: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557620(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.431509: xhci_ring_alloc: BULK ffffff8024e47c80: enq 0x00000000e4d73000(0x00000000e4d73000) deq 0x00000000e4d73000(0x00000000e4d73000) segs 2 stream 0 bounce 512 cycle 1
<task>-132 [001] ..... 2.431513: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 125 us max ESIT payload 0 CErr 3 Type Bulk IN burst 0 maxp 512 deq 00000000e4d73001 avg trb len 0
<task>-132 [001] ..... 2.431532: xhci_ring_alloc: BULK ffffff8024e47000: enq 0x00000000e4d6d000(0x00000000e4d6d000) deq 0x00000000e4d6d000(0x00000000e4d6d000) segs 2 stream 0 bounce 512 cycle 1
<task>-132 [001] ..... 2.431534: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 125 us max ESIT payload 0 CErr 3 Type Bulk OUT burst 0 maxp 512 deq 00000000e4d6d001 avg trb len 0
<task>-132 [001] ..... 2.431555: xhci_ring_alloc: INTR ffffff8024e47200: enq 0x00000000e4d2b000(0x00000000e4d2b000) deq 0x00000000e4d2b000(0x00000000e4d2b000) segs 2 stream 0 bounce 16 cycle 1
<task>-132 [001] ..... 2.431557: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 1000 us max ESIT payload 16 CErr 3 Type Int IN burst 0 maxp 16 deq 00000000e4d2b001 avg trb len 16
<task>-132 [001] d.... 2.431568: xhci_configure_endpoint_ctrl_ctx: Drop: 1in 2out 3in, Add: slot 1in 2out 3in
<task>-132 [001] d.... 2.431571: xhci_configure_endpoint: RS 00012 high-speed Ctx Entries 7 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-132 [001] d.... 2.431576: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e4d69000 slot 3 flags d:C
<task>-132 [001] d.... 2.431579: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e4558220(0x00000000e4558000) deq 0x00000000e4558210(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.431581: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] dNh.. 2.431737: xhci_handle_event: EVENT: TRB 00000000e4558210 status 'Success' len 0 slot 3 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] dNh.. 2.431740: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e4d69000 slot 3 flags d:C
<idle>-0 [000] dNh.. 2.431754: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e4558220(0x00000000e4558000) deq 0x00000000e4558220(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] dNh.. 2.431756: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557630(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.432088: xhci_dbg_context_change: Successful Endpoint Configure command
<task>-132 [001] ..... 2.432101: xhci_ring_free: BULK ffffff8024e47d00: enq 0x00000000e4e0d000(0x00000000e4e0d000) deq 0x00000000e4e0d000(0x00000000e4e0d000) segs 2 stream 0 bounce 512 cycle 1
<task>-132 [001] ..... 2.432106: xhci_ring_free: BULK ffffff8024e47d80: enq 0x00000000e4d2d000(0x00000000e4d2d000) deq 0x00000000e4d2d000(0x00000000e4d2d000) segs 2 stream 0 bounce 512 cycle 1
<task>-132 [001] ..... 2.432114: xhci_ring_free: INTR ffffff8024e47f80: enq 0x00000000e4d6c000(0x00000000e4d6c000) deq 0x00000000e4d6c000(0x00000000e4d6c000) segs 2 stream 0 bounce 16 cycle 1
<task>-132 [001] ..... 2.432129: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484672 slot 3 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.432136: xhci_queue_trb: CTRL: bRequestType 01 bRequest 0b wValue 0000 wIndex 0000 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.432138: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e260f0(0x00000000e4e26000) deq 0x00000000e4e260e0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.432139: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.432142: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26100(0x00000000e4e26000) deq 0x00000000e4e260e0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.432144: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.432163: xhci_handle_event: EVENT: TRB 00000000e4e260f0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.432171: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.432176: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26100(0x00000000e4e26000) deq 0x00000000e4e26100(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.432179: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484672 slot 3 length 0/0 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.432185: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557640(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.432492: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.432497: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0030 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.432500: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26110(0x00000000e4e26000) deq 0x00000000e4e26100(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.432502: xhci_queue_trb: CTRL: Buffer 00000000e4e1e368 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.432504: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26120(0x00000000e4e26000) deq 0x00000000e4e26100(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.432505: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.432507: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26130(0x00000000e4e26000) deq 0x00000000e4e26100(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.432508: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.432548: xhci_handle_event: EVENT: TRB 00000000e4e26120 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.432553: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.432557: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26130(0x00000000e4e26000) deq 0x00000000e4e26130(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.432560: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.432563: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557650(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.432630: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.432634: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0030 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.432637: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26140(0x00000000e4e26000) deq 0x00000000e4e26130(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.432638: xhci_queue_trb: CTRL: Buffer 0000000080000001 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.432640: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26150(0x00000000e4e26000) deq 0x00000000e4e26130(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.432642: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.432644: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26160(0x00000000e4e26000) deq 0x00000000e4e26130(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.432645: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.432681: xhci_handle_event: EVENT: TRB 00000000e4e26150 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.432685: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.432689: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26160(0x00000000e4e26000) deq 0x00000000e4e26160(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.432691: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.432694: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557660(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.432752: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.432756: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0030 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.432759: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26170(0x00000000e4e26000) deq 0x00000000e4e26160(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.432760: xhci_queue_trb: CTRL: Buffer 00000000e4e1e368 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.432762: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26180(0x00000000e4e26000) deq 0x00000000e4e26160(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.432764: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.432766: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26190(0x00000000e4e26000) deq 0x00000000e4e26160(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.432767: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.432804: xhci_handle_event: EVENT: TRB 00000000e4e26180 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.432808: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.432811: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26190(0x00000000e4e26000) deq 0x00000000e4e26190(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.432814: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.432817: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557670(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.432878: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.432882: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0034 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.432884: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e261a0(0x00000000e4e26000) deq 0x00000000e4e26190(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.432885: xhci_queue_trb: CTRL: Buffer 00000000e4e1e368 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.432887: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e261b0(0x00000000e4e26000) deq 0x00000000e4e26190(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.432889: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.432891: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e261c0(0x00000000e4e26000) deq 0x00000000e4e26190(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.432892: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.432928: xhci_handle_event: EVENT: TRB 00000000e4e261b0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.432933: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.432936: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e261c0(0x00000000e4e26000) deq 0x00000000e4e261c0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.432939: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.432942: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557680(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.432996: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.433000: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0030 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.433003: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e261d0(0x00000000e4e26000) deq 0x00000000e4e261c0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.433005: xhci_queue_trb: CTRL: Buffer 0000000080000002 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.433007: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e261e0(0x00000000e4e26000) deq 0x00000000e4e261c0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.433008: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.433010: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e261f0(0x00000000e4e26000) deq 0x00000000e4e261c0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.433011: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.433047: xhci_handle_event: EVENT: TRB 00000000e4e261e0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.433052: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.433055: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e261f0(0x00000000e4e26000) deq 0x00000000e4e261f0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.433058: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.433061: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557690(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.433119: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.433123: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0030 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.433126: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26200(0x00000000e4e26000) deq 0x00000000e4e261f0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.433127: xhci_queue_trb: CTRL: Buffer 00000000e4e1e368 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.433129: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26210(0x00000000e4e26000) deq 0x00000000e4e261f0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.433130: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.433133: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26220(0x00000000e4e26000) deq 0x00000000e4e261f0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.433134: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.433174: xhci_handle_event: EVENT: TRB 00000000e4e26210 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.433178: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.433181: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26220(0x00000000e4e26000) deq 0x00000000e4e26220(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.433184: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.433187: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45576a0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.433265: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.433269: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0034 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.433272: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26230(0x00000000e4e26000) deq 0x00000000e4e26220(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.433273: xhci_queue_trb: CTRL: Buffer 00000000e4e1e368 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.433276: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26240(0x00000000e4e26000) deq 0x00000000e4e26220(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.433277: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.433279: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26250(0x00000000e4e26000) deq 0x00000000e4e26220(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.433280: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.433395: xhci_handle_event: EVENT: TRB 00000000e4e26240 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.433399: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.433403: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26250(0x00000000e4e26000) deq 0x00000000e4e26250(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.433406: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.433409: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45576b0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.433471: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.433475: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0030 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.433477: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26260(0x00000000e4e26000) deq 0x00000000e4e26250(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.433479: xhci_queue_trb: CTRL: Buffer 0000000080000003 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.433481: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26270(0x00000000e4e26000) deq 0x00000000e4e26250(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.433482: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.433484: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26280(0x00000000e4e26000) deq 0x00000000e4e26250(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.433486: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.433520: xhci_handle_event: EVENT: TRB 00000000e4e26270 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.433525: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.433528: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26280(0x00000000e4e26000) deq 0x00000000e4e26280(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.433530: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.433534: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45576c0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.433588: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.433593: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0030 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.433595: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26290(0x00000000e4e26000) deq 0x00000000e4e26280(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.433596: xhci_queue_trb: CTRL: Buffer 00000000e4e1e368 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.433600: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e262a0(0x00000000e4e26000) deq 0x00000000e4e26280(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.433601: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.433603: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e262b0(0x00000000e4e26000) deq 0x00000000e4e26280(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.433605: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.433639: xhci_handle_event: EVENT: TRB 00000000e4e262a0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.433643: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.433647: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e262b0(0x00000000e4e26000) deq 0x00000000e4e262b0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.433650: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.433653: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45576d0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.433710: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.433714: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0034 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.433717: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e262c0(0x00000000e4e26000) deq 0x00000000e4e262b0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.433718: xhci_queue_trb: CTRL: Buffer 00000000e4e1e368 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.433720: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e262d0(0x00000000e4e26000) deq 0x00000000e4e262b0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.433721: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.433724: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e262e0(0x00000000e4e26000) deq 0x00000000e4e262b0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.433725: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.433761: xhci_handle_event: EVENT: TRB 00000000e4e262d0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.433765: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.433769: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e262e0(0x00000000e4e26000) deq 0x00000000e4e262e0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.433771: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.433775: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45576e0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.433830: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.433834: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0030 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.433836: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e262f0(0x00000000e4e26000) deq 0x00000000e4e262e0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.433838: xhci_queue_trb: CTRL: Buffer 0000000080000004 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.433840: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26300(0x00000000e4e26000) deq 0x00000000e4e262e0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.433846: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.433848: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26310(0x00000000e4e26000) deq 0x00000000e4e262e0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.433849: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.H.. 2.433953: xhci_handle_event: EVENT: TRB 00000000e4e26300 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.H.. 2.433957: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.H.. 2.433961: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26310(0x00000000e4e26000) deq 0x00000000e4e26310(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.H.. 2.433964: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.H.. 2.433967: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45576f0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.434735: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.434749: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0030 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.434752: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26320(0x00000000e4e26000) deq 0x00000000e4e26310(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.434755: xhci_queue_trb: CTRL: Buffer 00000000e4e1e368 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.434757: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26330(0x00000000e4e26000) deq 0x00000000e4e26310(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.434758: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.434760: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26340(0x00000000e4e26000) deq 0x00000000e4e26310(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.434763: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-95 [000] d.h.. 2.434788: xhci_handle_event: EVENT: TRB 00000000e4e26330 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-95 [000] d.h.. 2.434795: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-95 [000] d.h.. 2.434801: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26340(0x00000000e4e26000) deq 0x00000000e4e26340(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-95 [000] d.h.. 2.434806: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-95 [000] d.h.. 2.434814: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557700(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.434876: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.434880: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0034 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.434882: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26350(0x00000000e4e26000) deq 0x00000000e4e26340(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.434884: xhci_queue_trb: CTRL: Buffer 00000000e4e1e368 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.434886: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26360(0x00000000e4e26000) deq 0x00000000e4e26340(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.434887: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.434889: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26370(0x00000000e4e26000) deq 0x00000000e4e26340(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.434891: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-95 [000] d.h.. 2.434907: xhci_handle_event: EVENT: TRB 00000000e4e26360 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-95 [000] d.h.. 2.434911: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-95 [000] d.h.. 2.434915: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26370(0x00000000e4e26000) deq 0x00000000e4e26370(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-95 [000] d.h.. 2.434921: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-95 [000] d.h.. 2.434924: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557710(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.435026: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.435030: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0030 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.435032: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26380(0x00000000e4e26000) deq 0x00000000e4e26370(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.435034: xhci_queue_trb: CTRL: Buffer 0000000080000005 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.435036: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26390(0x00000000e4e26000) deq 0x00000000e4e26370(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.435037: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.435039: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e263a0(0x00000000e4e26000) deq 0x00000000e4e26370(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.435041: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.435176: xhci_handle_event: EVENT: TRB 00000000e4e26390 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.435182: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.435186: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e263a0(0x00000000e4e26000) deq 0x00000000e4e263a0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.435189: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.435194: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557720(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.435262: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.435267: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0030 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.435270: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e263b0(0x00000000e4e26000) deq 0x00000000e4e263a0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.435271: xhci_queue_trb: CTRL: Buffer 00000000e4e1e368 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.435274: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e263c0(0x00000000e4e26000) deq 0x00000000e4e263a0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.435275: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.435277: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e263d0(0x00000000e4e26000) deq 0x00000000e4e263a0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.435279: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-95 [000] d.h.. 2.435296: xhci_handle_event: EVENT: TRB 00000000e4e263c0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-95 [000] d.h.. 2.435300: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-95 [000] d.h.. 2.435303: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e263d0(0x00000000e4e26000) deq 0x00000000e4e263d0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-95 [000] d.h.. 2.435306: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-95 [000] d.h.. 2.435309: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557730(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.435369: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.435373: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0034 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.435375: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e263e0(0x00000000e4e26000) deq 0x00000000e4e263d0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.435376: xhci_queue_trb: CTRL: Buffer 00000000e4e1e368 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.435379: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e263f0(0x00000000e4e26000) deq 0x00000000e4e263d0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.435380: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.435386: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26400(0x00000000e4e26000) deq 0x00000000e4e263d0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.435387: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.435501: xhci_handle_event: EVENT: TRB 00000000e4e263f0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.435506: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.435510: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26400(0x00000000e4e26000) deq 0x00000000e4e26400(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.435513: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.435519: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557740(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.435565: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.435570: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0030 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.435573: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26410(0x00000000e4e26000) deq 0x00000000e4e26400(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.435574: xhci_queue_trb: CTRL: Buffer 0000000080000006 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.435576: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26420(0x00000000e4e26000) deq 0x00000000e4e26400(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.435577: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.435579: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26430(0x00000000e4e26000) deq 0x00000000e4e26400(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.435581: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-95 [000] d.h.. 2.435602: xhci_handle_event: EVENT: TRB 00000000e4e26420 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-95 [000] d.h.. 2.435606: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-95 [000] d.h.. 2.435609: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26430(0x00000000e4e26000) deq 0x00000000e4e26430(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-95 [000] d.h.. 2.435612: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-95 [000] d.h.. 2.435616: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557750(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.435671: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.435675: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0030 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.435677: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26440(0x00000000e4e26000) deq 0x00000000e4e26430(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.435679: xhci_queue_trb: CTRL: Buffer 00000000e4e1e368 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.435681: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26450(0x00000000e4e26000) deq 0x00000000e4e26430(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.435682: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.435684: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26460(0x00000000e4e26000) deq 0x00000000e4e26430(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.435685: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-95 [000] d.h.. 2.435702: xhci_handle_event: EVENT: TRB 00000000e4e26450 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-95 [000] d.h.. 2.435706: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-95 [000] d.h.. 2.435710: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26460(0x00000000e4e26000) deq 0x00000000e4e26460(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-95 [000] d.h.. 2.435713: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-95 [000] d.h.. 2.435716: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557760(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.435915: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.435920: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0034 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.435923: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26470(0x00000000e4e26000) deq 0x00000000e4e26460(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.435925: xhci_queue_trb: CTRL: Buffer 00000000e4e1e368 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.435927: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26480(0x00000000e4e26000) deq 0x00000000e4e26460(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.435928: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.435931: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26490(0x00000000e4e26000) deq 0x00000000e4e26460(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.435932: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-95 [000] d.h.. 2.435949: xhci_handle_event: EVENT: TRB 00000000e4e26480 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-95 [000] d.h.. 2.435954: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-95 [000] d.h.. 2.435957: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26490(0x00000000e4e26000) deq 0x00000000e4e26490(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-95 [000] d.h.. 2.435960: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-95 [000] d.h.. 2.435964: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557770(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.436143: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.436149: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.436152: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e264a0(0x00000000e4e26000) deq 0x00000000e4e26490(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.436153: xhci_queue_trb: CTRL: Buffer 0000000000000008 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.436156: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e264b0(0x00000000e4e26000) deq 0x00000000e4e26490(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.436157: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.436159: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e264c0(0x00000000e4e26000) deq 0x00000000e4e26490(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.436161: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] dNh.. 2.436220: xhci_handle_event: EVENT: TRB 00000000e4e264b0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] dNh.. 2.436226: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] dNh.. 2.436230: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e264c0(0x00000000e4e26000) deq 0x00000000e4e264c0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] dNh.. 2.436233: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] dNh.. 2.436237: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557780(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.450003: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.450022: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.450026: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e264d0(0x00000000e4e26000) deq 0x00000000e4e264c0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.450029: xhci_queue_trb: CTRL: Buffer 00000000e4e1e368 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.450031: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e264e0(0x00000000e4e26000) deq 0x00000000e4e264c0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.450033: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.450035: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e264f0(0x00000000e4e26000) deq 0x00000000e4e264c0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.450038: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.450185: xhci_handle_event: EVENT: TRB 00000000e4e264e0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.450195: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.450201: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e264f0(0x00000000e4e26000) deq 0x00000000e4e264f0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.450210: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.450222: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557790(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.450326: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.450331: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0108 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.450334: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26500(0x00000000e4e26000) deq 0x00000000e4e264f0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.450335: xhci_queue_trb: CTRL: Buffer 00000000a839dbaa length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.450337: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26510(0x00000000e4e26000) deq 0x00000000e4e264f0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.450339: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.450341: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26520(0x00000000e4e26000) deq 0x00000000e4e264f0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.450343: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.450383: xhci_handle_event: EVENT: TRB 00000000e4e26510 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.450388: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.450392: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26520(0x00000000e4e26000) deq 0x00000000e4e26520(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.450395: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.450399: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45577a0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.450458: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.450463: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0104 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.450465: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26530(0x00000000e4e26000) deq 0x00000000e4e26520(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.450467: xhci_queue_trb: CTRL: Buffer 000000000000bb80 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.450469: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26540(0x00000000e4e26000) deq 0x00000000e4e26520(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.450470: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.450472: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26550(0x00000000e4e26000) deq 0x00000000e4e26520(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.450474: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.450510: xhci_handle_event: EVENT: TRB 00000000e4e26540 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.450515: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.450519: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26550(0x00000000e4e26000) deq 0x00000000e4e26550(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.450521: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.450525: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45577b0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.450587: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.450591: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.450594: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26560(0x00000000e4e26000) deq 0x00000000e4e26550(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.450595: xhci_queue_trb: CTRL: Buffer 00000000e4e1e368 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.450597: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26570(0x00000000e4e26000) deq 0x00000000e4e26550(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.450599: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.450601: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26580(0x00000000e4e26000) deq 0x00000000e4e26550(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.450602: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.450638: xhci_handle_event: EVENT: TRB 00000000e4e26570 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.450643: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.450646: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26580(0x00000000e4e26000) deq 0x00000000e4e26580(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.450649: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.450653: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45577c0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.450710: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.450715: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.450718: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26590(0x00000000e4e26000) deq 0x00000000e4e26580(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.450719: xhci_queue_trb: CTRL: Buffer 0000000000001000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.450721: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e265a0(0x00000000e4e26000) deq 0x00000000e4e26580(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.450723: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.450725: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e265b0(0x00000000e4e26000) deq 0x00000000e4e26580(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.450726: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.450761: xhci_handle_event: EVENT: TRB 00000000e4e265a0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.450766: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.450769: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e265b0(0x00000000e4e26000) deq 0x00000000e4e265b0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.450772: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.450776: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45577d0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.450835: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.450839: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.450841: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e265c0(0x00000000e4e26000) deq 0x00000000e4e265b0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.450843: xhci_queue_trb: CTRL: Buffer 00000000e4e1e368 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.450845: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e265d0(0x00000000e4e26000) deq 0x00000000e4e265b0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.450847: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.450849: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e265e0(0x00000000e4e26000) deq 0x00000000e4e265b0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.450850: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.450886: xhci_handle_event: EVENT: TRB 00000000e4e265d0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.450891: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.450894: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e265e0(0x00000000e4e26000) deq 0x00000000e4e265e0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.450897: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.450901: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45577e0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.450962: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.450966: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0038 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.450969: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e265f0(0x00000000e4e26000) deq 0x00000000e4e265e0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.450970: xhci_queue_trb: CTRL: Buffer 0000000000000025 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.450973: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26600(0x00000000e4e26000) deq 0x00000000e4e265e0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.450974: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.450976: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26610(0x00000000e4e26000) deq 0x00000000e4e265e0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.450977: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.451016: xhci_handle_event: EVENT: TRB 00000000e4e26600 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.451021: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.451024: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26610(0x00000000e4e26000) deq 0x00000000e4e26610(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.451027: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.451031: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45577f0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.451117: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.451122: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0038 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.451125: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26620(0x00000000e4e26000) deq 0x00000000e4e26610(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.451126: xhci_queue_trb: CTRL: Buffer 00000000e4e1e368 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.451130: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26630(0x00000000e4e26000) deq 0x00000000e4e26610(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.451131: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.451133: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26640(0x00000000e4e26000) deq 0x00000000e4e26610(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.451135: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.451251: xhci_handle_event: EVENT: TRB 00000000e4e26630 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.451256: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.451260: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26640(0x00000000e4e26000) deq 0x00000000e4e26640(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.451263: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.451267: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557800(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.451335: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.451340: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 006c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.451342: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26650(0x00000000e4e26000) deq 0x00000000e4e26640(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.451343: xhci_queue_trb: CTRL: Buffer 0000000000002000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.451345: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26660(0x00000000e4e26000) deq 0x00000000e4e26640(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.451347: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.451349: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26670(0x00000000e4e26000) deq 0x00000000e4e26640(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.451350: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.451387: xhci_handle_event: EVENT: TRB 00000000e4e26660 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.451392: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.451395: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26670(0x00000000e4e26000) deq 0x00000000e4e26670(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.451398: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.451402: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557810(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.451464: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.451469: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 006c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.451471: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26680(0x00000000e4e26000) deq 0x00000000e4e26670(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.451473: xhci_queue_trb: CTRL: Buffer 00000000e4e1e368 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.451475: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26690(0x00000000e4e26000) deq 0x00000000e4e26670(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.451476: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.451478: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e266a0(0x00000000e4e26000) deq 0x00000000e4e26670(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.451480: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.451516: xhci_handle_event: EVENT: TRB 00000000e4e26690 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.451520: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.451524: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e266a0(0x00000000e4e26000) deq 0x00000000e4e266a0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.451527: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.451531: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557820(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.451595: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.451601: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.451603: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e266b0(0x00000000e4e26000) deq 0x00000000e4e266a0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.451605: xhci_queue_trb: CTRL: Buffer 00000000e4e1e368 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.451607: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e266c0(0x00000000e4e26000) deq 0x00000000e4e266a0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.451608: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.451610: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e266d0(0x00000000e4e26000) deq 0x00000000e4e266a0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.451612: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.451649: xhci_handle_event: EVENT: TRB 00000000e4e266c0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.451654: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.451657: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e266d0(0x00000000e4e26000) deq 0x00000000e4e266d0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.451660: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.451664: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557830(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.451723: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.451727: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.451730: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e266e0(0x00000000e4e26000) deq 0x00000000e4e266d0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.451731: xhci_queue_trb: CTRL: Buffer 0000000000001022 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.451734: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e266f0(0x00000000e4e26000) deq 0x00000000e4e266d0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.451735: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.451737: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26700(0x00000000e4e26000) deq 0x00000000e4e266d0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.451739: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.451775: xhci_handle_event: EVENT: TRB 00000000e4e266f0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.451780: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.451783: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26700(0x00000000e4e26000) deq 0x00000000e4e26700(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.451785: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.451789: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557840(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.451847: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.451851: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.451854: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26710(0x00000000e4e26000) deq 0x00000000e4e26700(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.451855: xhci_queue_trb: CTRL: Buffer 00000000e4e1e368 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.451857: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26720(0x00000000e4e26000) deq 0x00000000e4e26700(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.451858: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.451860: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26730(0x00000000e4e26000) deq 0x00000000e4e26700(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.451862: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.451900: xhci_handle_event: EVENT: TRB 00000000e4e26720 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.451905: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.451908: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26730(0x00000000e4e26000) deq 0x00000000e4e26730(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.451911: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.451914: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557850(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.451972: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.451976: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0008 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.451979: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26740(0x00000000e4e26000) deq 0x00000000e4e26730(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.451980: xhci_queue_trb: CTRL: Buffer 00000000ffffffff length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.451983: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26750(0x00000000e4e26000) deq 0x00000000e4e26730(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.451984: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.451986: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26760(0x00000000e4e26000) deq 0x00000000e4e26730(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.451988: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.452025: xhci_handle_event: EVENT: TRB 00000000e4e26750 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.452029: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.452032: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26760(0x00000000e4e26000) deq 0x00000000e4e26760(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.452035: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.452038: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557860(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.452097: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.452101: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0000 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.452104: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26770(0x00000000e4e26000) deq 0x00000000e4e26760(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.452105: xhci_queue_trb: CTRL: Buffer 00000000e4e1e368 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.452107: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26780(0x00000000e4e26000) deq 0x00000000e4e26760(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.452108: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.452111: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26790(0x00000000e4e26000) deq 0x00000000e4e26760(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.452112: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.452148: xhci_handle_event: EVENT: TRB 00000000e4e26780 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.452152: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.452155: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26790(0x00000000e4e26000) deq 0x00000000e4e26790(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.452158: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.452162: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557870(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.452223: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.452228: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0024 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.452230: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e267a0(0x00000000e4e26000) deq 0x00000000e4e26790(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.452232: xhci_queue_trb: CTRL: Buffer 00000000e4e1e368 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.452234: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e267b0(0x00000000e4e26000) deq 0x00000000e4e26790(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.452235: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.452237: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e267c0(0x00000000e4e26000) deq 0x00000000e4e26790(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.452239: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.452274: xhci_handle_event: EVENT: TRB 00000000e4e267b0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.452279: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.452282: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e267c0(0x00000000e4e26000) deq 0x00000000e4e267c0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.452285: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.452289: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557880(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.452346: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.452351: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0024 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.452353: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e267d0(0x00000000e4e26000) deq 0x00000000e4e267c0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.452355: xhci_queue_trb: CTRL: Buffer 0000000001110007 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.452357: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e267e0(0x00000000e4e26000) deq 0x00000000e4e267c0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.452358: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.452360: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e267f0(0x00000000e4e26000) deq 0x00000000e4e267c0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.452362: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.452398: xhci_handle_event: EVENT: TRB 00000000e4e267e0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.452403: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.452406: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e267f0(0x00000000e4e26000) deq 0x00000000e4e267f0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.452409: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.452413: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557890(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.452471: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.452475: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 011c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.452478: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26800(0x00000000e4e26000) deq 0x00000000e4e267f0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.452479: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.452482: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26810(0x00000000e4e26000) deq 0x00000000e4e267f0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.452483: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.452485: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26820(0x00000000e4e26000) deq 0x00000000e4e267f0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.452487: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.452522: xhci_handle_event: EVENT: TRB 00000000e4e26810 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.452527: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.452530: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26820(0x00000000e4e26000) deq 0x00000000e4e26820(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.452533: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.452537: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45578a0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.452593: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.452597: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 002c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.452600: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26830(0x00000000e4e26000) deq 0x00000000e4e26820(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.452601: xhci_queue_trb: CTRL: Buffer 0000000000f830a1 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.452603: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26840(0x00000000e4e26000) deq 0x00000000e4e26820(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.452604: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.452606: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26850(0x00000000e4e26000) deq 0x00000000e4e26820(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.452608: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.452643: xhci_handle_event: EVENT: TRB 00000000e4e26840 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.452647: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.452651: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26850(0x00000000e4e26000) deq 0x00000000e4e26850(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.452654: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.452657: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45578b0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.452716: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.452720: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.452722: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26860(0x00000000e4e26000) deq 0x00000000e4e26850(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.452724: xhci_queue_trb: CTRL: Buffer 00000000e4e1e368 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.452726: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26870(0x00000000e4e26000) deq 0x00000000e4e26850(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.452727: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.452729: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26880(0x00000000e4e26000) deq 0x00000000e4e26850(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.452730: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.452766: xhci_handle_event: EVENT: TRB 00000000e4e26870 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.452770: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.452774: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26880(0x00000000e4e26000) deq 0x00000000e4e26880(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.452778: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.452782: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45578c0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.452871: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.452875: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0120 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.452878: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26890(0x00000000e4e26000) deq 0x00000000e4e26880(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.452879: xhci_queue_trb: CTRL: Buffer 0000000000008100 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.452881: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e268a0(0x00000000e4e26000) deq 0x00000000e4e26880(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.452883: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.452885: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e268b0(0x00000000e4e26000) deq 0x00000000e4e26880(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.452886: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.453002: xhci_handle_event: EVENT: TRB 00000000e4e268a0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.453008: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.453012: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e268b0(0x00000000e4e26000) deq 0x00000000e4e268b0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.453015: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.453020: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45578d0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.453089: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.453094: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0130 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.453096: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e268c0(0x00000000e4e26000) deq 0x00000000e4e268b0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.453098: xhci_queue_trb: CTRL: Buffer 00000000e4e1e368 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.453100: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e268d0(0x00000000e4e26000) deq 0x00000000e4e268b0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.453101: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.453103: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e268e0(0x00000000e4e26000) deq 0x00000000e4e268b0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.453105: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.453142: xhci_handle_event: EVENT: TRB 00000000e4e268d0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.453147: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.453151: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e268e0(0x00000000e4e26000) deq 0x00000000e4e268e0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.453154: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.453158: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45578e0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.453216: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.453220: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0130 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.453223: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e268f0(0x00000000e4e26000) deq 0x00000000e4e268e0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.453225: xhci_queue_trb: CTRL: Buffer 0000000000010001 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.453227: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26900(0x00000000e4e26000) deq 0x00000000e4e268e0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.453228: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.453231: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26910(0x00000000e4e26000) deq 0x00000000e4e268e0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.453232: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.453268: xhci_handle_event: EVENT: TRB 00000000e4e26900 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.453272: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.453275: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26910(0x00000000e4e26000) deq 0x00000000e4e26910(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.453278: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.453282: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45578f0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.453338: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-132 [001] d.... 2.453342: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 010c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.453345: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26920(0x00000000e4e26000) deq 0x00000000e4e26910(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.453346: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.453348: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26930(0x00000000e4e26000) deq 0x00000000e4e26910(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.453349: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.453352: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26940(0x00000000e4e26000) deq 0x00000000e4e26910(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.453353: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-132 [001] ..... 2.453358: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46900 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-132 [001] d.... 2.453360: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0110 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.453368: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26950(0x00000000e4e26000) deq 0x00000000e4e26910(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.453370: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.453371: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26960(0x00000000e4e26000) deq 0x00000000e4e26910(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.453373: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.453375: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26970(0x00000000e4e26000) deq 0x00000000e4e26910(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.453376: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-132 [001] ..... 2.453381: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46840 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-132 [001] d.... 2.453383: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.453386: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26980(0x00000000e4e26000) deq 0x00000000e4e26910(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.453387: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.453389: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26990(0x00000000e4e26000) deq 0x00000000e4e26910(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.453390: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.453392: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e269a0(0x00000000e4e26000) deq 0x00000000e4e26910(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.453393: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-132 [001] ..... 2.453404: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46780 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.453406: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0068 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.453408: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e269b0(0x00000000e4e26000) deq 0x00000000e4e26910(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.453410: xhci_queue_trb: CTRL: Buffer 00000000e4e1e398 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.453413: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e269c0(0x00000000e4e26000) deq 0x00000000e4e26910(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.453415: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.453417: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e269d0(0x00000000e4e26000) deq 0x00000000e4e26910(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.453418: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.453451: xhci_handle_event: EVENT: TRB 00000000e4e26930 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.453455: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.453459: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e269d0(0x00000000e4e26000) deq 0x00000000e4e26940(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.453461: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d469c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<idle>-0 [000] d.h.. 2.453466: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557900(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.453467: xhci_handle_event: EVENT: TRB 00000000e4e26960 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.453470: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.453473: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e269d0(0x00000000e4e26000) deq 0x00000000e4e26970(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.453475: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46900 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<idle>-0 [000] d.h.. 2.453476: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557910(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.453478: xhci_handle_event: EVENT: TRB 00000000e4e26990 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.453481: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.453484: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e269d0(0x00000000e4e26000) deq 0x00000000e4e269a0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.453485: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46840 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<idle>-0 [000] d.h.. 2.453487: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557920(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.453488: xhci_handle_event: EVENT: TRB 00000000e4e269c0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.453491: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.453494: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e269d0(0x00000000e4e26000) deq 0x00000000e4e269d0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.453496: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46780 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.453497: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557930(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.453626: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46780 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.453630: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0068 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.453633: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e269e0(0x00000000e4e26000) deq 0x00000000e4e269d0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.453634: xhci_queue_trb: CTRL: Buffer 0000000024e1e3a0 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.453636: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e269f0(0x00000000e4e26000) deq 0x00000000e4e269d0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.453638: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.453640: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26a00(0x00000000e4e26000) deq 0x00000000e4e269d0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.453642: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.453681: xhci_handle_event: EVENT: TRB 00000000e4e269f0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.453685: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.453689: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26a00(0x00000000e4e26000) deq 0x00000000e4e26a00(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.453691: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46780 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.453696: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557940(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.453753: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46780 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.453758: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.453760: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26a10(0x00000000e4e26000) deq 0x00000000e4e26a00(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.453761: xhci_queue_trb: CTRL: Buffer 0000000000000008 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.453764: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26a20(0x00000000e4e26000) deq 0x00000000e4e26a00(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.453765: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.453767: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26a30(0x00000000e4e26000) deq 0x00000000e4e26a00(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.453768: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.453804: xhci_handle_event: EVENT: TRB 00000000e4e26a20 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.453808: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.453811: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26a30(0x00000000e4e26000) deq 0x00000000e4e26a30(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.453814: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46780 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.453818: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557950(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.453928: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46780 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.453933: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0010 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.453936: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26a40(0x00000000e4e26000) deq 0x00000000e4e26a30(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.453938: xhci_queue_trb: CTRL: Buffer 0000000000000004 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.453940: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26a50(0x00000000e4e26000) deq 0x00000000e4e26a30(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.453941: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.453943: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26a60(0x00000000e4e26000) deq 0x00000000e4e26a30(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.453945: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-112 [000] d.h.. 2.453969: xhci_handle_event: EVENT: TRB 00000000e4e26a50 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-112 [000] d.h.. 2.453973: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-112 [000] d.h.. 2.453976: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26a60(0x00000000e4e26000) deq 0x00000000e4e26a60(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-112 [000] d.h.. 2.453979: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46780 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-112 [000] d.h.. 2.453982: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557960(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.455199: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46780 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.455210: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.455213: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26a70(0x00000000e4e26000) deq 0x00000000e4e26a60(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.455215: xhci_queue_trb: CTRL: Buffer 000000000000000c length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.455217: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26a80(0x00000000e4e26000) deq 0x00000000e4e26a60(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.455219: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.455221: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26a90(0x00000000e4e26000) deq 0x00000000e4e26a60(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.455223: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.455363: xhci_handle_event: EVENT: TRB 00000000e4e26a80 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.455372: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.455377: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26a90(0x00000000e4e26000) deq 0x00000000e4e26a90(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.455382: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46780 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.455392: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557970(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.455652: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d466c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.455658: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.455661: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26aa0(0x00000000e4e26000) deq 0x00000000e4e26a90(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.455663: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3a8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.455665: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26ab0(0x00000000e4e26000) deq 0x00000000e4e26a90(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.455666: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.455668: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26ac0(0x00000000e4e26000) deq 0x00000000e4e26a90(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.455670: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.455720: xhci_handle_event: EVENT: TRB 00000000e4e26ab0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.455727: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.455731: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26ac0(0x00000000e4e26000) deq 0x00000000e4e26ac0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.455734: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d466c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.455740: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557980(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.456367: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d466c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.456374: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.456377: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26ad0(0x00000000e4e26000) deq 0x00000000e4e26ac0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.456379: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3a8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.456381: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26ae0(0x00000000e4e26000) deq 0x00000000e4e26ac0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.456382: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.456384: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26af0(0x00000000e4e26000) deq 0x00000000e4e26ac0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.456386: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] dNh.. 2.456462: xhci_handle_event: EVENT: TRB 00000000e4e26ae0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] dNh.. 2.456469: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] dNh.. 2.456473: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26af0(0x00000000e4e26000) deq 0x00000000e4e26af0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] dNh.. 2.456477: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d466c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] dNh.. 2.456484: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557990(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.456580: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d466c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.456585: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.456587: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26b00(0x00000000e4e26000) deq 0x00000000e4e26af0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.456589: xhci_queue_trb: CTRL: Buffer 0000000000000881 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.456591: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26b10(0x00000000e4e26000) deq 0x00000000e4e26af0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.456593: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.456595: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26b20(0x00000000e4e26000) deq 0x00000000e4e26af0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.456596: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-113 [000] d.h.. 2.456618: xhci_handle_event: EVENT: TRB 00000000e4e26b10 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-113 [000] d.h.. 2.456622: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-113 [000] d.h.. 2.456626: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26b20(0x00000000e4e26000) deq 0x00000000e4e26b20(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-113 [000] d.h.. 2.456628: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d466c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-113 [000] d.h.. 2.456632: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45579a0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.456943: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d466c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.456950: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.456952: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26b30(0x00000000e4e26000) deq 0x00000000e4e26b20(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.456954: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3a8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.456956: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26b40(0x00000000e4e26000) deq 0x00000000e4e26b20(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.456957: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.456959: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26b50(0x00000000e4e26000) deq 0x00000000e4e26b20(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.456961: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.457003: xhci_handle_event: EVENT: TRB 00000000e4e26b40 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.457008: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.457012: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26b50(0x00000000e4e26000) deq 0x00000000e4e26b50(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.457016: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d466c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.457021: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45579b0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.457090: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d466c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.457095: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.457097: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26b60(0x00000000e4e26000) deq 0x00000000e4e26b50(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.457099: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3a8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.457101: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26b70(0x00000000e4e26000) deq 0x00000000e4e26b50(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.457102: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.457104: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26b80(0x00000000e4e26000) deq 0x00000000e4e26b50(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.457106: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.457142: xhci_handle_event: EVENT: TRB 00000000e4e26b70 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.457146: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.457150: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26b80(0x00000000e4e26000) deq 0x00000000e4e26b80(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.457153: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d466c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.457157: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45579c0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.457223: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d466c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.457227: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.457230: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26b90(0x00000000e4e26000) deq 0x00000000e4e26b80(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.457231: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3a8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.457234: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26ba0(0x00000000e4e26000) deq 0x00000000e4e26b80(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.457235: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.457237: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26bb0(0x00000000e4e26000) deq 0x00000000e4e26b80(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.457239: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.457275: xhci_handle_event: EVENT: TRB 00000000e4e26ba0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.457280: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.457283: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26bb0(0x00000000e4e26000) deq 0x00000000e4e26bb0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.457286: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d466c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.457289: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45579d0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.457348: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d466c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.457352: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.457354: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26bc0(0x00000000e4e26000) deq 0x00000000e4e26bb0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.457356: xhci_queue_trb: CTRL: Buffer 00000000000008c1 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.457358: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26bd0(0x00000000e4e26000) deq 0x00000000e4e26bb0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.457359: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.457362: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26be0(0x00000000e4e26000) deq 0x00000000e4e26bb0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.457364: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.457399: xhci_handle_event: EVENT: TRB 00000000e4e26bd0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.457404: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.457407: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26be0(0x00000000e4e26000) deq 0x00000000e4e26be0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.457410: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d466c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.457414: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45579e0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.457472: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d466c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.457476: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.457479: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26bf0(0x00000000e4e26000) deq 0x00000000e4e26be0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.457480: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3a8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.457483: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26c00(0x00000000e4e26000) deq 0x00000000e4e26be0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.457484: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.457486: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26c10(0x00000000e4e26000) deq 0x00000000e4e26be0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.457488: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.457524: xhci_handle_event: EVENT: TRB 00000000e4e26c00 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.457529: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.457533: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26c10(0x00000000e4e26000) deq 0x00000000e4e26c10(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.457535: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d466c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.457539: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45579f0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.457600: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d466c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.457604: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.457607: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26c20(0x00000000e4e26000) deq 0x00000000e4e26c10(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.457608: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3a8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.457610: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26c30(0x00000000e4e26000) deq 0x00000000e4e26c10(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.457611: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.457614: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26c40(0x00000000e4e26000) deq 0x00000000e4e26c10(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.457615: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.457749: xhci_handle_event: EVENT: TRB 00000000e4e26c30 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.457754: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.457758: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26c40(0x00000000e4e26000) deq 0x00000000e4e26c40(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.457762: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d466c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.457766: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557a00(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.477417: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.477436: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.477440: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26c50(0x00000000e4e26000) deq 0x00000000e4e26c40(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.477443: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3a8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.477445: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26c60(0x00000000e4e26000) deq 0x00000000e4e26c40(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.477447: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.477449: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26c70(0x00000000e4e26000) deq 0x00000000e4e26c40(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.477451: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] dNh.. 2.478891: xhci_handle_event: EVENT: TRB 00000000e4e26c60 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] dNh.. 2.478907: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] dNh.. 2.478915: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26c70(0x00000000e4e26000) deq 0x00000000e4e26c70(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] dNh.. 2.478923: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] dNh.. 2.478936: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557a10(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.479143: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.479155: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.479159: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26c80(0x00000000e4e26000) deq 0x00000000e4e26c70(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.479161: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.479163: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26c90(0x00000000e4e26000) deq 0x00000000e4e26c70(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.479165: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.479167: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26ca0(0x00000000e4e26000) deq 0x00000000e4e26c70(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.479170: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-113 [000] d.h.. 2.479192: xhci_handle_event: EVENT: TRB 00000000e4e26c90 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-113 [000] d.h.. 2.479198: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-113 [000] d.h.. 2.479202: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26ca0(0x00000000e4e26000) deq 0x00000000e4e26ca0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-113 [000] d.h.. 2.479206: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-113 [000] d.h.. 2.479212: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557a20(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.479809: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.479817: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.479821: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26cb0(0x00000000e4e26000) deq 0x00000000e4e26ca0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.479823: xhci_queue_trb: CTRL: Buffer 0000000000000f83 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.479825: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26cc0(0x00000000e4e26000) deq 0x00000000e4e26ca0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.479826: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.479828: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26cd0(0x00000000e4e26000) deq 0x00000000e4e26ca0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.479831: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.479883: xhci_handle_event: EVENT: TRB 00000000e4e26cc0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.479891: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.479895: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26cd0(0x00000000e4e26000) deq 0x00000000e4e26cd0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.479899: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.479906: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557a30(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.479993: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.479997: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.480000: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26ce0(0x00000000e4e26000) deq 0x00000000e4e26cd0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.480002: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3a8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.480004: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26cf0(0x00000000e4e26000) deq 0x00000000e4e26cd0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.480005: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.480007: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26d00(0x00000000e4e26000) deq 0x00000000e4e26cd0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.480009: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.480047: xhci_handle_event: EVENT: TRB 00000000e4e26cf0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.480051: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.480055: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26d00(0x00000000e4e26000) deq 0x00000000e4e26d00(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.480057: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.480062: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557a40(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.480129: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.480133: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.480135: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26d10(0x00000000e4e26000) deq 0x00000000e4e26d00(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.480137: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3a8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.480139: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26d20(0x00000000e4e26000) deq 0x00000000e4e26d00(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.480140: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.480142: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26d30(0x00000000e4e26000) deq 0x00000000e4e26d00(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.480144: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.480179: xhci_handle_event: EVENT: TRB 00000000e4e26d20 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.480184: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.480187: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26d30(0x00000000e4e26000) deq 0x00000000e4e26d30(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.480190: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.480194: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557a50(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.480255: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.480260: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.480263: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26d40(0x00000000e4e26000) deq 0x00000000e4e26d30(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.480264: xhci_queue_trb: CTRL: Buffer 0000000000000f41 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.480269: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26d50(0x00000000e4e26000) deq 0x00000000e4e26d30(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.480271: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.480272: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26d60(0x00000000e4e26000) deq 0x00000000e4e26d30(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.480274: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.480411: xhci_handle_event: EVENT: TRB 00000000e4e26d50 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.480417: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.480421: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26d60(0x00000000e4e26000) deq 0x00000000e4e26d60(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.480424: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.480428: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557a60(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.480516: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.480521: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.480523: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26d70(0x00000000e4e26000) deq 0x00000000e4e26d60(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.480525: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3a8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.480527: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26d80(0x00000000e4e26000) deq 0x00000000e4e26d60(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.480528: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.480530: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26d90(0x00000000e4e26000) deq 0x00000000e4e26d60(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.480532: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.480569: xhci_handle_event: EVENT: TRB 00000000e4e26d80 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.480574: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.480577: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26d90(0x00000000e4e26000) deq 0x00000000e4e26d90(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.480582: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.480586: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557a70(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.480648: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.480653: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.480655: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26da0(0x00000000e4e26000) deq 0x00000000e4e26d90(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.480657: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3a8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.480659: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26db0(0x00000000e4e26000) deq 0x00000000e4e26d90(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.480660: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.480662: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26dc0(0x00000000e4e26000) deq 0x00000000e4e26d90(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.480664: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.480700: xhci_handle_event: EVENT: TRB 00000000e4e26db0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.480705: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.480708: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26dc0(0x00000000e4e26000) deq 0x00000000e4e26dc0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.480711: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.480714: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557a80(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.480778: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.480783: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.480785: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26dd0(0x00000000e4e26000) deq 0x00000000e4e26dc0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.480787: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3a8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.480789: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26de0(0x00000000e4e26000) deq 0x00000000e4e26dc0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.480790: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.480792: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26df0(0x00000000e4e26000) deq 0x00000000e4e26dc0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.480794: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.480829: xhci_handle_event: EVENT: TRB 00000000e4e26de0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.480834: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.480837: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26df0(0x00000000e4e26000) deq 0x00000000e4e26df0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.480840: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.480843: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557a90(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.480901: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.480905: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.480907: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26e00(0x00000000e4e26000) deq 0x00000000e4e26df0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.480909: xhci_queue_trb: CTRL: Buffer 0000000000000841 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.480911: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26e10(0x00000000e4e26000) deq 0x00000000e4e26df0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.480912: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.480914: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26e20(0x00000000e4e26000) deq 0x00000000e4e26df0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.480916: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.480952: xhci_handle_event: EVENT: TRB 00000000e4e26e10 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.480956: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.480960: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26e20(0x00000000e4e26000) deq 0x00000000e4e26e20(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.480962: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.480966: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557aa0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.481026: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.481030: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.481032: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26e30(0x00000000e4e26000) deq 0x00000000e4e26e20(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.481034: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3a8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.481036: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26e40(0x00000000e4e26000) deq 0x00000000e4e26e20(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.481038: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.481040: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26e50(0x00000000e4e26000) deq 0x00000000e4e26e20(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.481041: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.481077: xhci_handle_event: EVENT: TRB 00000000e4e26e40 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.481082: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.481085: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26e50(0x00000000e4e26000) deq 0x00000000e4e26e50(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.481087: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.481092: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557ab0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.481153: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.481157: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.481159: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26e60(0x00000000e4e26000) deq 0x00000000e4e26e50(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.481161: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3a8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.481163: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26e70(0x00000000e4e26000) deq 0x00000000e4e26e50(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.481164: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.481166: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26e80(0x00000000e4e26000) deq 0x00000000e4e26e50(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.481168: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.481205: xhci_handle_event: EVENT: TRB 00000000e4e26e70 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.481209: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.481213: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26e80(0x00000000e4e26000) deq 0x00000000e4e26e80(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.481216: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.481220: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557ac0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.481287: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.481292: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.481294: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26e90(0x00000000e4e26000) deq 0x00000000e4e26e80(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.481296: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3a8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.481298: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26ea0(0x00000000e4e26000) deq 0x00000000e4e26e80(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.481299: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.481301: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26eb0(0x00000000e4e26000) deq 0x00000000e4e26e80(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.481302: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.481338: xhci_handle_event: EVENT: TRB 00000000e4e26ea0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.481342: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.481346: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26eb0(0x00000000e4e26000) deq 0x00000000e4e26eb0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.481348: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.481352: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557ad0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.481412: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.481416: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.481419: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26ec0(0x00000000e4e26000) deq 0x00000000e4e26eb0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.481420: xhci_queue_trb: CTRL: Buffer 0000000000000003 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.481422: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26ed0(0x00000000e4e26000) deq 0x00000000e4e26eb0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.481424: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.481426: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26ee0(0x00000000e4e26000) deq 0x00000000e4e26eb0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.481427: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.481550: xhci_handle_event: EVENT: TRB 00000000e4e26ed0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.481555: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.481559: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26ee0(0x00000000e4e26000) deq 0x00000000e4e26ee0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.481562: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.481566: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557ae0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.481649: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.481654: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.481656: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26ef0(0x00000000e4e26000) deq 0x00000000e4e26ee0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.481657: xhci_queue_trb: CTRL: Buffer 0000000000000b43 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.481659: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26f00(0x00000000e4e26000) deq 0x00000000e4e26ee0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.481661: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.481663: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26f10(0x00000000e4e26000) deq 0x00000000e4e26ee0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.481664: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.481701: xhci_handle_event: EVENT: TRB 00000000e4e26f00 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.481705: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.481709: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26f10(0x00000000e4e26000) deq 0x00000000e4e26f10(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.481712: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.481716: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557af0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.481778: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.481782: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.481784: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26f20(0x00000000e4e26000) deq 0x00000000e4e26f10(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.481786: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3a8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.481788: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26f30(0x00000000e4e26000) deq 0x00000000e4e26f10(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.481789: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.481791: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26f40(0x00000000e4e26000) deq 0x00000000e4e26f10(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.481793: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.481831: xhci_handle_event: EVENT: TRB 00000000e4e26f30 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.481836: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.481839: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26f40(0x00000000e4e26000) deq 0x00000000e4e26f40(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.481845: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.481850: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557b00(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.482094: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.482099: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.482101: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26f50(0x00000000e4e26000) deq 0x00000000e4e26f40(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.482103: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3a8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.482105: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26f60(0x00000000e4e26000) deq 0x00000000e4e26f40(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.482107: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.482109: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26f70(0x00000000e4e26000) deq 0x00000000e4e26f40(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.482111: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.482155: xhci_handle_event: EVENT: TRB 00000000e4e26f60 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.482160: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.482164: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26f70(0x00000000e4e26000) deq 0x00000000e4e26f70(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.482167: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.482173: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557b10(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.482235: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.482239: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.482242: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26f80(0x00000000e4e26000) deq 0x00000000e4e26f70(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.482243: xhci_queue_trb: CTRL: Buffer 0000000000000014 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.482245: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26f90(0x00000000e4e26000) deq 0x00000000e4e26f70(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.482247: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.482249: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26fa0(0x00000000e4e26000) deq 0x00000000e4e26f70(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.482250: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.482286: xhci_handle_event: EVENT: TRB 00000000e4e26f90 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.482290: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.482294: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26fa0(0x00000000e4e26000) deq 0x00000000e4e26fa0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.482297: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.482301: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557b20(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.482357: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.482361: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.482363: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26fb0(0x00000000e4e26000) deq 0x00000000e4e26fa0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.482365: xhci_queue_trb: CTRL: Buffer 0000000000000b83 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.482367: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26fc0(0x00000000e4e26000) deq 0x00000000e4e26fa0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.482368: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.482371: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26fd0(0x00000000e4e26000) deq 0x00000000e4e26fa0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.482372: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.482410: xhci_handle_event: EVENT: TRB 00000000e4e26fc0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.482414: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.482418: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26fd0(0x00000000e4e26000) deq 0x00000000e4e26fd0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.482421: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.482425: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557b30(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.482484: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.482489: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.482492: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26fe0(0x00000000e4e26000) deq 0x00000000e4e26fd0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.482493: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3a8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.482496: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25000(0x00000000e4e25000) deq 0x00000000e4e26fd0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.482498: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.482499: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25010(0x00000000e4e25000) deq 0x00000000e4e26fd0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.482501: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.483135: xhci_handle_event: EVENT: TRB 00000000e4e25000 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.483141: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.483145: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25010(0x00000000e4e25000) deq 0x00000000e4e25010(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.483149: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.483154: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557b40(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.483255: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.483260: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.483263: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25020(0x00000000e4e25000) deq 0x00000000e4e25010(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.483265: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3a8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.483267: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25030(0x00000000e4e25000) deq 0x00000000e4e25010(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.483269: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.483270: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25040(0x00000000e4e25000) deq 0x00000000e4e25010(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.483272: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.483316: xhci_handle_event: EVENT: TRB 00000000e4e25030 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.483321: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.483325: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25040(0x00000000e4e25000) deq 0x00000000e4e25040(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.483327: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.483331: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557b50(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.483393: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.483397: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.483399: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25050(0x00000000e4e25000) deq 0x00000000e4e25040(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.483400: xhci_queue_trb: CTRL: Buffer 0000000000004003 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.483403: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25060(0x00000000e4e25000) deq 0x00000000e4e25040(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.483404: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.483406: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25070(0x00000000e4e25000) deq 0x00000000e4e25040(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.483407: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.483444: xhci_handle_event: EVENT: TRB 00000000e4e25060 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.483448: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.483452: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25070(0x00000000e4e25000) deq 0x00000000e4e25070(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.483454: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.483458: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557b60(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.483515: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.483520: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.483522: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25080(0x00000000e4e25000) deq 0x00000000e4e25070(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.483524: xhci_queue_trb: CTRL: Buffer 0000000000000b43 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.483526: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25090(0x00000000e4e25000) deq 0x00000000e4e25070(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.483527: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.483529: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e250a0(0x00000000e4e25000) deq 0x00000000e4e25070(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.483530: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.483565: xhci_handle_event: EVENT: TRB 00000000e4e25090 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.483570: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.483574: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e250a0(0x00000000e4e25000) deq 0x00000000e4e250a0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.483576: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.483580: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557b70(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.483638: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.483642: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.483645: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e250b0(0x00000000e4e25000) deq 0x00000000e4e250a0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.483646: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3a8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.483648: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e250c0(0x00000000e4e25000) deq 0x00000000e4e250a0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.483649: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.483651: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e250d0(0x00000000e4e25000) deq 0x00000000e4e250a0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.483653: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.483688: xhci_handle_event: EVENT: TRB 00000000e4e250c0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.483693: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.483696: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e250d0(0x00000000e4e25000) deq 0x00000000e4e250d0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.483699: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.483702: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557b80(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.483764: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.483769: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.483771: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e250e0(0x00000000e4e25000) deq 0x00000000e4e250d0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.483772: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3a8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.483776: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e250f0(0x00000000e4e25000) deq 0x00000000e4e250d0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.483777: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.483779: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25100(0x00000000e4e25000) deq 0x00000000e4e250d0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.483781: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.483817: xhci_handle_event: EVENT: TRB 00000000e4e250f0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.483821: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.483825: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25100(0x00000000e4e25000) deq 0x00000000e4e25100(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.483827: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.483831: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557b90(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.483891: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.483895: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.483898: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25110(0x00000000e4e25000) deq 0x00000000e4e25100(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.483899: xhci_queue_trb: CTRL: Buffer 0000000000000b81 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.483902: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25120(0x00000000e4e25000) deq 0x00000000e4e25100(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.483903: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.483905: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25130(0x00000000e4e25000) deq 0x00000000e4e25100(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.483906: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.483941: xhci_handle_event: EVENT: TRB 00000000e4e25120 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.483945: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.483949: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25130(0x00000000e4e25000) deq 0x00000000e4e25130(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.483952: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.483955: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557ba0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.484014: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.484018: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.484020: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25140(0x00000000e4e25000) deq 0x00000000e4e25130(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.484022: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3a8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.484024: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25150(0x00000000e4e25000) deq 0x00000000e4e25130(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.484025: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.484027: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25160(0x00000000e4e25000) deq 0x00000000e4e25130(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.484028: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.484064: xhci_handle_event: EVENT: TRB 00000000e4e25150 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.484068: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.484072: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25160(0x00000000e4e25000) deq 0x00000000e4e25160(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.484074: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.484078: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557bb0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.484140: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.484145: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.484147: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25170(0x00000000e4e25000) deq 0x00000000e4e25160(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.484149: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3a8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.484151: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25180(0x00000000e4e25000) deq 0x00000000e4e25160(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.484152: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.484154: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25190(0x00000000e4e25000) deq 0x00000000e4e25160(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.484156: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.484277: xhci_handle_event: EVENT: TRB 00000000e4e25180 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.484282: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.484286: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25190(0x00000000e4e25000) deq 0x00000000e4e25190(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.484290: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.484295: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557bc0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] .N... 2.484544: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] dN... 2.484550: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0000 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] dN... 2.484552: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e251a0(0x00000000e4e25000) deq 0x00000000e4e25190(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] dN... 2.484554: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3a8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] dN... 2.484556: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e251b0(0x00000000e4e25000) deq 0x00000000e4e25190(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] dN... 2.484558: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] dN... 2.484560: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e251c0(0x00000000e4e25000) deq 0x00000000e4e25190(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] dN... 2.484561: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] dNh.. 2.484640: xhci_handle_event: EVENT: TRB 00000000e4e251b0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] dNh.. 2.484646: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] dNh.. 2.484650: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e251c0(0x00000000e4e25000) deq 0x00000000e4e251c0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] dNh.. 2.484654: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] dNh.. 2.484658: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557bd0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.485200: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.485209: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.485212: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e251d0(0x00000000e4e25000) deq 0x00000000e4e251c0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.485215: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3a8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.485217: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e251e0(0x00000000e4e25000) deq 0x00000000e4e251c0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.485218: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.485220: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e251f0(0x00000000e4e25000) deq 0x00000000e4e251c0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.485223: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.485278: xhci_handle_event: EVENT: TRB 00000000e4e251e0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.485284: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.485289: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e251f0(0x00000000e4e25000) deq 0x00000000e4e251f0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.485292: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.485301: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557be0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.485401: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.485406: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.485408: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25200(0x00000000e4e25000) deq 0x00000000e4e251f0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.485410: xhci_queue_trb: CTRL: Buffer 0000000000000c81 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.485413: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25210(0x00000000e4e25000) deq 0x00000000e4e251f0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.485414: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.485416: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25220(0x00000000e4e25000) deq 0x00000000e4e251f0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.485418: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.485542: xhci_handle_event: EVENT: TRB 00000000e4e25210 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.485548: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.485552: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25220(0x00000000e4e25000) deq 0x00000000e4e25220(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.485556: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.485560: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557bf0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.485628: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.485633: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.485636: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25230(0x00000000e4e25000) deq 0x00000000e4e25220(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.485637: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3a8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.485639: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25240(0x00000000e4e25000) deq 0x00000000e4e25220(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.485641: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.485643: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25250(0x00000000e4e25000) deq 0x00000000e4e25220(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.485644: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.485684: xhci_handle_event: EVENT: TRB 00000000e4e25240 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.485689: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.485693: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25250(0x00000000e4e25000) deq 0x00000000e4e25250(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.485696: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.485700: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557c00(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.485760: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.485764: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.485767: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25260(0x00000000e4e25000) deq 0x00000000e4e25250(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.485768: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3a8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.485770: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25270(0x00000000e4e25000) deq 0x00000000e4e25250(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.485771: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.485773: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25280(0x00000000e4e25000) deq 0x00000000e4e25250(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.485775: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.485813: xhci_handle_event: EVENT: TRB 00000000e4e25270 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.485818: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.485821: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25280(0x00000000e4e25000) deq 0x00000000e4e25280(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.485824: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.485828: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557c10(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.486238: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.486245: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.486248: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25290(0x00000000e4e25000) deq 0x00000000e4e25280(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.486250: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3a8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.486252: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e252a0(0x00000000e4e25000) deq 0x00000000e4e25280(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.486253: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.486255: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e252b0(0x00000000e4e25000) deq 0x00000000e4e25280(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.486257: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.486308: xhci_handle_event: EVENT: TRB 00000000e4e252a0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.486313: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.486317: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e252b0(0x00000000e4e25000) deq 0x00000000e4e252b0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.486324: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.486330: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557c20(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.486403: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.486407: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.486409: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e252c0(0x00000000e4e25000) deq 0x00000000e4e252b0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.486411: xhci_queue_trb: CTRL: Buffer 0000000000000801 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.486413: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e252d0(0x00000000e4e25000) deq 0x00000000e4e252b0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.486414: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.486416: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e252e0(0x00000000e4e25000) deq 0x00000000e4e252b0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.486418: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.486541: xhci_handle_event: EVENT: TRB 00000000e4e252d0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.486547: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.486551: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e252e0(0x00000000e4e25000) deq 0x00000000e4e252e0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.486554: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.486559: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557c30(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.486649: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.486654: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.486657: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e252f0(0x00000000e4e25000) deq 0x00000000e4e252e0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.486658: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3a8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.486660: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25300(0x00000000e4e25000) deq 0x00000000e4e252e0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.486661: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.486663: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25310(0x00000000e4e25000) deq 0x00000000e4e252e0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.486665: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.486703: xhci_handle_event: EVENT: TRB 00000000e4e25300 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.486708: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.486712: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25310(0x00000000e4e25000) deq 0x00000000e4e25310(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.486714: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.486719: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557c40(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.486781: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.486785: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.486787: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25320(0x00000000e4e25000) deq 0x00000000e4e25310(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.486789: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3a8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.486791: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25330(0x00000000e4e25000) deq 0x00000000e4e25310(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.486793: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.486795: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25340(0x00000000e4e25000) deq 0x00000000e4e25310(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.486797: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.486833: xhci_handle_event: EVENT: TRB 00000000e4e25330 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.486837: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.486840: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25340(0x00000000e4e25000) deq 0x00000000e4e25340(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.486843: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.486847: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557c50(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.486909: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.486913: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.486916: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25350(0x00000000e4e25000) deq 0x00000000e4e25340(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.486917: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3a8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.486919: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25360(0x00000000e4e25000) deq 0x00000000e4e25340(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.486920: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.486922: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25370(0x00000000e4e25000) deq 0x00000000e4e25340(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.486924: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.486960: xhci_handle_event: EVENT: TRB 00000000e4e25360 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.486965: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.486968: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25370(0x00000000e4e25000) deq 0x00000000e4e25370(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.486971: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.486975: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557c60(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.487032: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.487037: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.487039: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25380(0x00000000e4e25000) deq 0x00000000e4e25370(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.487040: xhci_queue_trb: CTRL: Buffer 000000000000b200 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.487043: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25390(0x00000000e4e25000) deq 0x00000000e4e25370(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.487044: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.487046: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e253a0(0x00000000e4e25000) deq 0x00000000e4e25370(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.487048: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.487083: xhci_handle_event: EVENT: TRB 00000000e4e25390 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.487087: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.487090: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e253a0(0x00000000e4e25000) deq 0x00000000e4e253a0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.487093: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.487097: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557c70(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.487151: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.487155: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.487158: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e253b0(0x00000000e4e25000) deq 0x00000000e4e253a0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.487160: xhci_queue_trb: CTRL: Buffer 0000000000000803 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.487162: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e253c0(0x00000000e4e25000) deq 0x00000000e4e253a0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.487163: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.487165: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e253d0(0x00000000e4e25000) deq 0x00000000e4e253a0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.487166: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.487201: xhci_handle_event: EVENT: TRB 00000000e4e253c0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.487206: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.487209: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e253d0(0x00000000e4e25000) deq 0x00000000e4e253d0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.487212: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.487216: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557c80(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.487275: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.487279: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.487281: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e253e0(0x00000000e4e25000) deq 0x00000000e4e253d0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.487283: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3a8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.487285: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e253f0(0x00000000e4e25000) deq 0x00000000e4e253d0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.487286: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.487288: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25400(0x00000000e4e25000) deq 0x00000000e4e253d0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.487290: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.487326: xhci_handle_event: EVENT: TRB 00000000e4e253f0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.487330: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.487334: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25400(0x00000000e4e25000) deq 0x00000000e4e25400(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.487337: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.487340: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557c90(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.501952: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.501972: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.501976: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25410(0x00000000e4e25000) deq 0x00000000e4e25400(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.501979: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3a8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.501981: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25420(0x00000000e4e25000) deq 0x00000000e4e25400(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.501982: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.501984: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25430(0x00000000e4e25000) deq 0x00000000e4e25400(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.501987: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-95 [000] d.h.. 2.502014: xhci_handle_event: EVENT: TRB 00000000e4e25420 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-95 [000] d.h.. 2.502024: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-95 [000] d.h.. 2.502031: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25430(0x00000000e4e25000) deq 0x00000000e4e25430(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-95 [000] d.h.. 2.502037: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-95 [000] d.h.. 2.502047: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557ca0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.502323: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.502333: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.502335: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25440(0x00000000e4e25000) deq 0x00000000e4e25430(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.502337: xhci_queue_trb: CTRL: Buffer 0000000000000801 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.502339: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25450(0x00000000e4e25000) deq 0x00000000e4e25430(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.502340: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.502342: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25460(0x00000000e4e25000) deq 0x00000000e4e25430(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.502345: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.502404: xhci_handle_event: EVENT: TRB 00000000e4e25450 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.502411: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.502415: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25460(0x00000000e4e25000) deq 0x00000000e4e25460(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.502420: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.502426: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557cb0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.502490: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.502497: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.502499: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25470(0x00000000e4e25000) deq 0x00000000e4e25460(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.502501: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3a8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.502506: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25480(0x00000000e4e25000) deq 0x00000000e4e25460(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.502507: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.502510: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25490(0x00000000e4e25000) deq 0x00000000e4e25460(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.502511: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-95 [000] d.h.. 2.502530: xhci_handle_event: EVENT: TRB 00000000e4e25480 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-95 [000] d.h.. 2.502535: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-95 [000] d.h.. 2.502538: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25490(0x00000000e4e25000) deq 0x00000000e4e25490(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-95 [000] d.h.. 2.502541: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-95 [000] d.h.. 2.502545: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557cc0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.502644: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.502648: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.502650: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e254a0(0x00000000e4e25000) deq 0x00000000e4e25490(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.502651: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3a8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.502653: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e254b0(0x00000000e4e25000) deq 0x00000000e4e25490(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.502655: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.502657: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e254c0(0x00000000e4e25000) deq 0x00000000e4e25490(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.502658: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-95 [000] d.h.. 2.502677: xhci_handle_event: EVENT: TRB 00000000e4e254b0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-95 [000] d.h.. 2.502682: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-95 [000] d.h.. 2.502686: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e254c0(0x00000000e4e25000) deq 0x00000000e4e254c0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-95 [000] d.h.. 2.502688: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46540 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-95 [000] d.h.. 2.502692: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557cd0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.510032: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.510051: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.510056: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e254d0(0x00000000e4e25000) deq 0x00000000e4e254c0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] dn... 2.510058: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3c0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] dn... 2.510060: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e254e0(0x00000000e4e25000) deq 0x00000000e4e254c0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] dn... 2.510062: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] dn... 2.510068: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e254f0(0x00000000e4e25000) deq 0x00000000e4e254c0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] dn... 2.510071: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.510238: xhci_handle_event: EVENT: TRB 00000000e4e254e0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.510248: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.510254: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e254f0(0x00000000e4e25000) deq 0x00000000e4e254f0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.510261: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.510275: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557ce0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.510372: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.510380: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.510383: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25500(0x00000000e4e25000) deq 0x00000000e4e254f0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.510384: xhci_queue_trb: CTRL: Buffer 0000000000000c41 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.510386: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25510(0x00000000e4e25000) deq 0x00000000e4e254f0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.510388: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.510393: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25520(0x00000000e4e25000) deq 0x00000000e4e254f0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.510395: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-95 [000] d.h.. 2.510413: xhci_handle_event: EVENT: TRB 00000000e4e25510 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-95 [000] d.h.. 2.510417: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-95 [000] d.h.. 2.510421: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25520(0x00000000e4e25000) deq 0x00000000e4e25520(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-95 [000] d.h.. 2.510424: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-95 [000] d.h.. 2.510428: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557cf0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.510494: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.510498: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.510500: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25530(0x00000000e4e25000) deq 0x00000000e4e25520(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.510502: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3c0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.510504: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25540(0x00000000e4e25000) deq 0x00000000e4e25520(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.510505: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.510507: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25550(0x00000000e4e25000) deq 0x00000000e4e25520(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.510509: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-95 [000] d.h.. 2.510528: xhci_handle_event: EVENT: TRB 00000000e4e25540 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-95 [000] d.h.. 2.510534: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-95 [000] d.h.. 2.510538: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25550(0x00000000e4e25000) deq 0x00000000e4e25550(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-95 [000] d.h.. 2.510540: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-95 [000] d.h.. 2.510544: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557d00(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.510795: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.510802: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.510805: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25560(0x00000000e4e25000) deq 0x00000000e4e25550(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.510807: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3c0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.510809: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25570(0x00000000e4e25000) deq 0x00000000e4e25550(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.510810: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.510812: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25580(0x00000000e4e25000) deq 0x00000000e4e25550(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.510814: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] dNh.. 2.510873: xhci_handle_event: EVENT: TRB 00000000e4e25570 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] dNh.. 2.510878: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] dNh.. 2.510883: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25580(0x00000000e4e25000) deq 0x00000000e4e25580(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] dNh.. 2.510886: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] dNh.. 2.510891: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557d10(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.510948: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.510952: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.510954: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25590(0x00000000e4e25000) deq 0x00000000e4e25580(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.510956: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3c0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.510961: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e255a0(0x00000000e4e25000) deq 0x00000000e4e25580(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.510962: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.510965: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e255b0(0x00000000e4e25000) deq 0x00000000e4e25580(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.510966: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-95 [000] d.h.. 2.510983: xhci_handle_event: EVENT: TRB 00000000e4e255a0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-95 [000] d.h.. 2.510988: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-95 [000] d.h.. 2.510991: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e255b0(0x00000000e4e25000) deq 0x00000000e4e255b0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-95 [000] d.h.. 2.510993: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-95 [000] d.h.. 2.510997: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557d20(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.511041: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.511045: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.511047: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e255c0(0x00000000e4e25000) deq 0x00000000e4e255b0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.511049: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.511051: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e255d0(0x00000000e4e25000) deq 0x00000000e4e255b0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.511052: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.511057: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e255e0(0x00000000e4e25000) deq 0x00000000e4e255b0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.511059: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-95 [000] d.h.. 2.511077: xhci_handle_event: EVENT: TRB 00000000e4e255d0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-95 [000] d.h.. 2.511081: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-95 [000] d.h.. 2.511084: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e255e0(0x00000000e4e25000) deq 0x00000000e4e255e0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-95 [000] d.h.. 2.511089: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-95 [000] d.h.. 2.511093: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557d30(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.511221: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.511225: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.511227: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e255f0(0x00000000e4e25000) deq 0x00000000e4e255e0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.511229: xhci_queue_trb: CTRL: Buffer 0000000000000f83 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.511231: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25600(0x00000000e4e25000) deq 0x00000000e4e255e0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.511232: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.511234: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25610(0x00000000e4e25000) deq 0x00000000e4e255e0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.511236: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-95 [000] d.h.. 2.511255: xhci_handle_event: EVENT: TRB 00000000e4e25600 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-95 [000] d.h.. 2.511260: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-95 [000] d.h.. 2.511264: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25610(0x00000000e4e25000) deq 0x00000000e4e25610(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-95 [000] d.h.. 2.511267: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-95 [000] d.h.. 2.511270: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557d40(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.511619: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.511627: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.511630: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25620(0x00000000e4e25000) deq 0x00000000e4e25610(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.511632: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3c0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.511634: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25630(0x00000000e4e25000) deq 0x00000000e4e25610(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.511635: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.511637: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25640(0x00000000e4e25000) deq 0x00000000e4e25610(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.511639: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] dNh.. 2.511692: xhci_handle_event: EVENT: TRB 00000000e4e25630 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] dNh.. 2.511699: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] dNh.. 2.511703: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25640(0x00000000e4e25000) deq 0x00000000e4e25640(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] dNh.. 2.511707: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] dNh.. 2.511713: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557d50(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.511780: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.511784: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.511786: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25650(0x00000000e4e25000) deq 0x00000000e4e25640(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.511788: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3c0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.511790: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25660(0x00000000e4e25000) deq 0x00000000e4e25640(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.511791: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.511793: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25670(0x00000000e4e25000) deq 0x00000000e4e25640(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.511794: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-95 [000] d.h.. 2.511819: xhci_handle_event: EVENT: TRB 00000000e4e25660 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-95 [000] d.h.. 2.511824: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-95 [000] d.h.. 2.511827: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25670(0x00000000e4e25000) deq 0x00000000e4e25670(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-95 [000] d.h.. 2.511830: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-95 [000] d.h.. 2.511834: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557d60(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.511931: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.511936: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.511938: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25680(0x00000000e4e25000) deq 0x00000000e4e25670(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.511939: xhci_queue_trb: CTRL: Buffer 0000000000000f41 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.511941: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25690(0x00000000e4e25000) deq 0x00000000e4e25670(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.511942: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.511944: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e256a0(0x00000000e4e25000) deq 0x00000000e4e25670(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.511946: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-95 [000] d.h.. 2.511967: xhci_handle_event: EVENT: TRB 00000000e4e25690 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-95 [000] d.h.. 2.511972: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-95 [000] d.h.. 2.511976: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e256a0(0x00000000e4e25000) deq 0x00000000e4e256a0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-95 [000] d.h.. 2.511978: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-95 [000] d.h.. 2.511982: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557d70(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.512222: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.512228: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.512231: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e256b0(0x00000000e4e25000) deq 0x00000000e4e256a0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.512232: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3c0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.512234: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e256c0(0x00000000e4e25000) deq 0x00000000e4e256a0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.512235: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.512238: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e256d0(0x00000000e4e25000) deq 0x00000000e4e256a0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.512239: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.512273: xhci_handle_event: EVENT: TRB 00000000e4e256c0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.512279: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.512283: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e256d0(0x00000000e4e25000) deq 0x00000000e4e256d0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.512286: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.512290: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557d80(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.512439: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.512445: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.512447: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e256e0(0x00000000e4e25000) deq 0x00000000e4e256d0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.512449: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3c0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.512451: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e256f0(0x00000000e4e25000) deq 0x00000000e4e256d0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.512452: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.512457: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25700(0x00000000e4e25000) deq 0x00000000e4e256d0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.512459: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-95 [000] d.h.. 2.512475: xhci_handle_event: EVENT: TRB 00000000e4e256f0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-95 [000] d.h.. 2.512480: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-95 [000] d.h.. 2.512484: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25700(0x00000000e4e25000) deq 0x00000000e4e25700(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-95 [000] d.h.. 2.512487: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-95 [000] d.h.. 2.512492: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557d90(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] .N... 2.512616: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] dN... 2.512623: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] dN... 2.512625: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25710(0x00000000e4e25000) deq 0x00000000e4e25700(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] dN... 2.512627: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3c0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] dN... 2.512629: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25720(0x00000000e4e25000) deq 0x00000000e4e25700(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] dN... 2.512630: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] dN... 2.512632: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25730(0x00000000e4e25000) deq 0x00000000e4e25700(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] dN... 2.512634: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-95 [000] d.h.. 2.512650: xhci_handle_event: EVENT: TRB 00000000e4e25720 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-95 [000] d.h.. 2.512655: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-95 [000] d.h.. 2.512659: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25730(0x00000000e4e25000) deq 0x00000000e4e25730(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-95 [000] d.h.. 2.512661: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-95 [000] d.h.. 2.512665: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557da0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.512710: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.512714: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.512716: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25740(0x00000000e4e25000) deq 0x00000000e4e25730(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.512718: xhci_queue_trb: CTRL: Buffer 0000000000000801 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.512720: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25750(0x00000000e4e25000) deq 0x00000000e4e25730(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.512721: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.512723: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25760(0x00000000e4e25000) deq 0x00000000e4e25730(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.512727: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-95 [000] d.h.. 2.512743: xhci_handle_event: EVENT: TRB 00000000e4e25750 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-95 [000] d.h.. 2.512748: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-95 [000] d.h.. 2.512751: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25760(0x00000000e4e25000) deq 0x00000000e4e25760(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-95 [000] d.h.. 2.512754: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-95 [000] d.h.. 2.512757: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557db0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.512850: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.512856: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.512858: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25770(0x00000000e4e25000) deq 0x00000000e4e25760(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.512860: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3c0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.512862: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25780(0x00000000e4e25000) deq 0x00000000e4e25760(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.512863: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.512865: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25790(0x00000000e4e25000) deq 0x00000000e4e25760(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.512866: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-95 [000] d.h.. 2.512906: xhci_handle_event: EVENT: TRB 00000000e4e25780 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-95 [000] d.h.. 2.512911: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-95 [000] d.h.. 2.512915: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25790(0x00000000e4e25000) deq 0x00000000e4e25790(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-95 [000] d.h.. 2.512918: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-95 [000] d.h.. 2.512922: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557dc0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.513023: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.513028: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.513030: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e257a0(0x00000000e4e25000) deq 0x00000000e4e25790(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.513032: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3c0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.513034: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e257b0(0x00000000e4e25000) deq 0x00000000e4e25790(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.513035: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.513037: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e257c0(0x00000000e4e25000) deq 0x00000000e4e25790(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.513039: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-95 [000] d.h.. 2.513060: xhci_handle_event: EVENT: TRB 00000000e4e257b0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-95 [000] d.h.. 2.513065: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-95 [000] d.h.. 2.513068: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e257c0(0x00000000e4e25000) deq 0x00000000e4e257c0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-95 [000] d.h.. 2.513074: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-95 [000] d.h.. 2.513078: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557dd0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] .N... 2.513800: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] dN... 2.513814: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] dN... 2.513817: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e257d0(0x00000000e4e25000) deq 0x00000000e4e257c0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] dN... 2.513820: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3c8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] dN... 2.513822: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e257e0(0x00000000e4e25000) deq 0x00000000e4e257c0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] dN... 2.513823: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] dN... 2.513825: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e257f0(0x00000000e4e25000) deq 0x00000000e4e257c0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] dN... 2.513827: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-95 [000] d.h.. 2.513862: xhci_handle_event: EVENT: TRB 00000000e4e257e0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-95 [000] d.h.. 2.513871: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-95 [000] d.h.. 2.513877: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e257f0(0x00000000e4e25000) deq 0x00000000e4e257f0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-95 [000] d.h.. 2.513884: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-95 [000] d.h.. 2.513892: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557de0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.514036: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.514041: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.514044: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25800(0x00000000e4e25000) deq 0x00000000e4e257f0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.514045: xhci_queue_trb: CTRL: Buffer 0000000000000f41 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.514050: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25810(0x00000000e4e25000) deq 0x00000000e4e257f0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.514051: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.514053: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25820(0x00000000e4e25000) deq 0x00000000e4e257f0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.514055: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-95 [000] d.h.. 2.514072: xhci_handle_event: EVENT: TRB 00000000e4e25810 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-95 [000] d.h.. 2.514078: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-95 [000] d.h.. 2.514081: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25820(0x00000000e4e25000) deq 0x00000000e4e25820(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-95 [000] d.h.. 2.514084: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-95 [000] d.h.. 2.514089: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557df0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.514218: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.514222: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.514224: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25830(0x00000000e4e25000) deq 0x00000000e4e25820(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.514226: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3c8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.514228: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25840(0x00000000e4e25000) deq 0x00000000e4e25820(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.514229: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.514231: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25850(0x00000000e4e25000) deq 0x00000000e4e25820(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.514233: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.514256: xhci_handle_event: EVENT: TRB 00000000e4e25840 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.514260: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.514263: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25850(0x00000000e4e25000) deq 0x00000000e4e25850(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.514266: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.514269: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557e00(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.515084: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.515098: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.515102: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25860(0x00000000e4e25000) deq 0x00000000e4e25850(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.515104: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3c8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.515106: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25870(0x00000000e4e25000) deq 0x00000000e4e25850(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.515107: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.515109: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25880(0x00000000e4e25000) deq 0x00000000e4e25850(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.515112: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-31 [000] d.h.. 2.515134: xhci_handle_event: EVENT: TRB 00000000e4e25870 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-31 [000] d.h.. 2.515141: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-31 [000] d.h.. 2.515146: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25880(0x00000000e4e25000) deq 0x00000000e4e25880(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-31 [000] d.h.. 2.515151: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-31 [000] d.h.. 2.515159: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557e10(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.516107: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.516126: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.516130: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25890(0x00000000e4e25000) deq 0x00000000e4e25880(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.516133: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3c8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.516135: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e258a0(0x00000000e4e25000) deq 0x00000000e4e25880(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.516136: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.516138: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e258b0(0x00000000e4e25000) deq 0x00000000e4e25880(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.516141: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-31 [000] d.h.. 2.516166: xhci_handle_event: EVENT: TRB 00000000e4e258a0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-31 [000] d.h.. 2.516174: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-31 [000] d.h.. 2.516179: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e258b0(0x00000000e4e25000) deq 0x00000000e4e258b0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-31 [000] d.h.. 2.516185: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-31 [000] d.h.. 2.516194: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557e20(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.516258: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.516262: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.516264: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e258c0(0x00000000e4e25000) deq 0x00000000e4e258b0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.516266: xhci_queue_trb: CTRL: Buffer 00000000000000d0 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.516268: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e258d0(0x00000000e4e25000) deq 0x00000000e4e258b0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.516270: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.516272: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e258e0(0x00000000e4e25000) deq 0x00000000e4e258b0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.516273: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-31 [000] d.h.. 2.516289: xhci_handle_event: EVENT: TRB 00000000e4e258d0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-31 [000] d.h.. 2.516293: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-31 [000] d.h.. 2.516297: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e258e0(0x00000000e4e25000) deq 0x00000000e4e258e0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-31 [000] d.h.. 2.516299: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-31 [000] d.h.. 2.516304: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557e30(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.516361: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.516365: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.516367: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e258f0(0x00000000e4e25000) deq 0x00000000e4e258e0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.516368: xhci_queue_trb: CTRL: Buffer 0000000000000f83 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.516371: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25900(0x00000000e4e25000) deq 0x00000000e4e258e0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.516372: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.516374: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25910(0x00000000e4e25000) deq 0x00000000e4e258e0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.516376: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-31 [000] d.h.. 2.516391: xhci_handle_event: EVENT: TRB 00000000e4e25900 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-31 [000] d.h.. 2.516396: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-31 [000] d.h.. 2.516399: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25910(0x00000000e4e25000) deq 0x00000000e4e25910(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-31 [000] d.h.. 2.516401: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-31 [000] d.h.. 2.516404: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557e40(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.516481: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.516487: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.516490: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25920(0x00000000e4e25000) deq 0x00000000e4e25910(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.516491: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3c8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.516493: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25930(0x00000000e4e25000) deq 0x00000000e4e25910(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.516494: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.516496: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25940(0x00000000e4e25000) deq 0x00000000e4e25910(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.516498: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-31 [000] d.h.. 2.516513: xhci_handle_event: EVENT: TRB 00000000e4e25930 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-31 [000] d.h.. 2.516517: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-31 [000] d.h.. 2.516520: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25940(0x00000000e4e25000) deq 0x00000000e4e25940(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-31 [000] d.h.. 2.516522: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-31 [000] d.h.. 2.516525: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557e50(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.516629: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.516633: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.516636: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25950(0x00000000e4e25000) deq 0x00000000e4e25940(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.516637: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3c8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.516639: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25960(0x00000000e4e25000) deq 0x00000000e4e25940(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.516641: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.516643: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25970(0x00000000e4e25000) deq 0x00000000e4e25940(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.516644: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-31 [000] d.h.. 2.516660: xhci_handle_event: EVENT: TRB 00000000e4e25960 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-31 [000] d.h.. 2.516664: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-31 [000] d.h.. 2.516667: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25970(0x00000000e4e25000) deq 0x00000000e4e25970(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-31 [000] d.h.. 2.516670: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-31 [000] d.h.. 2.516673: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557e60(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.516721: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.516726: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.516728: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25980(0x00000000e4e25000) deq 0x00000000e4e25970(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.516729: xhci_queue_trb: CTRL: Buffer 0000000000000801 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.516731: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25990(0x00000000e4e25000) deq 0x00000000e4e25970(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.516732: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.516734: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e259a0(0x00000000e4e25000) deq 0x00000000e4e25970(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.516736: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-31 [000] d.h.. 2.516751: xhci_handle_event: EVENT: TRB 00000000e4e25990 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-31 [000] d.h.. 2.516755: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-31 [000] d.h.. 2.516758: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e259a0(0x00000000e4e25000) deq 0x00000000e4e259a0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-31 [000] d.h.. 2.516760: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-31 [000] d.h.. 2.516763: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557e70(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.517098: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.517105: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.517107: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e259b0(0x00000000e4e25000) deq 0x00000000e4e259a0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.517109: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3c8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.517111: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e259c0(0x00000000e4e25000) deq 0x00000000e4e259a0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.517112: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.517114: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e259d0(0x00000000e4e25000) deq 0x00000000e4e259a0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.517116: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-31 [000] d.h.. 2.517132: xhci_handle_event: EVENT: TRB 00000000e4e259c0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-31 [000] d.h.. 2.517137: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-31 [000] d.h.. 2.517141: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e259d0(0x00000000e4e25000) deq 0x00000000e4e259d0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-31 [000] d.h.. 2.517143: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-31 [000] d.h.. 2.517147: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557e80(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.517447: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.517452: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.517455: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e259e0(0x00000000e4e25000) deq 0x00000000e4e259d0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.517456: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3c8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.517458: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e259f0(0x00000000e4e25000) deq 0x00000000e4e259d0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.517460: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.517463: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25a00(0x00000000e4e25000) deq 0x00000000e4e259d0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.517465: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-31 [000] d.h.. 2.517484: xhci_handle_event: EVENT: TRB 00000000e4e259f0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-31 [000] d.h.. 2.517488: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-31 [000] d.h.. 2.517492: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25a00(0x00000000e4e25000) deq 0x00000000e4e25a00(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-31 [000] d.h.. 2.517496: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-31 [000] d.h.. 2.517505: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557e90(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.517707: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.517712: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.517715: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25a10(0x00000000e4e25000) deq 0x00000000e4e25a00(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.517716: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3c8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.517719: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25a20(0x00000000e4e25000) deq 0x00000000e4e25a00(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.517720: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.517724: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25a30(0x00000000e4e25000) deq 0x00000000e4e25a00(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.517726: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-31 [000] d.h.. 2.517742: xhci_handle_event: EVENT: TRB 00000000e4e25a20 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-31 [000] d.h.. 2.517747: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-31 [000] d.h.. 2.517750: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25a30(0x00000000e4e25000) deq 0x00000000e4e25a30(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-31 [000] d.h.. 2.517753: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-31 [000] d.h.. 2.517757: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557ea0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.518336: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.518345: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.518347: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25a40(0x00000000e4e25000) deq 0x00000000e4e25a30(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.518349: xhci_queue_trb: CTRL: Buffer 0000000000003800 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.518351: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25a50(0x00000000e4e25000) deq 0x00000000e4e25a30(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.518353: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.518355: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25a60(0x00000000e4e25000) deq 0x00000000e4e25a30(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.518357: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-31 [000] d.h.. 2.518382: xhci_handle_event: EVENT: TRB 00000000e4e25a50 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-31 [000] d.h.. 2.518388: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-31 [000] d.h.. 2.518392: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25a60(0x00000000e4e25000) deq 0x00000000e4e25a60(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-31 [000] d.h.. 2.518396: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-31 [000] d.h.. 2.518402: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557eb0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.518653: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.518657: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.518660: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25a70(0x00000000e4e25000) deq 0x00000000e4e25a60(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.518661: xhci_queue_trb: CTRL: Buffer 0000000000000803 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.518663: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25a80(0x00000000e4e25000) deq 0x00000000e4e25a60(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.518665: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.518668: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25a90(0x00000000e4e25000) deq 0x00000000e4e25a60(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.518670: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-31 [000] d.h.. 2.518686: xhci_handle_event: EVENT: TRB 00000000e4e25a80 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-31 [000] d.h.. 2.518691: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-31 [000] d.h.. 2.518694: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25a90(0x00000000e4e25000) deq 0x00000000e4e25a90(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-31 [000] d.h.. 2.518696: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-31 [000] d.h.. 2.518700: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557ec0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.519841: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.519854: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.519857: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25aa0(0x00000000e4e25000) deq 0x00000000e4e25a90(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.519860: xhci_queue_trb: CTRL: Buffer 00000000e4e1e3c8 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.519862: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25ab0(0x00000000e4e25000) deq 0x00000000e4e25a90(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.519863: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.519865: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25ac0(0x00000000e4e25000) deq 0x00000000e4e25a90(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.519868: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.520185: xhci_handle_event: EVENT: TRB 00000000e4e25ab0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.520195: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.520201: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25ac0(0x00000000e4e25000) deq 0x00000000e4e25ac0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.520208: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d46480 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.520218: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557ed0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.520845: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d463c0 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.520854: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0130 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.520857: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25ad0(0x00000000e4e25000) deq 0x00000000e4e25ac0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.520859: xhci_queue_trb: CTRL: Buffer 00000000e4e1e438 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.520861: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25ae0(0x00000000e4e25000) deq 0x00000000e4e25ac0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.520863: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.520865: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25af0(0x00000000e4e25000) deq 0x00000000e4e25ac0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.520867: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.520900: xhci_handle_event: EVENT: TRB 00000000e4e25ae0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.520905: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.520909: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25af0(0x00000000e4e25000) deq 0x00000000e4e25af0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.520913: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d463c0 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.520918: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557ee0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.523040: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024d463c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.523056: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0130 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.523061: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25b00(0x00000000e4e25000) deq 0x00000000e4e25af0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.523063: xhci_queue_trb: CTRL: Buffer 0000000000010001 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-132 [001] d.... 2.523065: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25b10(0x00000000e4e25000) deq 0x00000000e4e25af0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.523066: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.523068: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25b20(0x00000000e4e25000) deq 0x00000000e4e25af0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.523071: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.523114: xhci_handle_event: EVENT: TRB 00000000e4e25b10 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.523123: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.523129: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25b20(0x00000000e4e25000) deq 0x00000000e4e25b20(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.523135: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024d463c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.523142: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557ef0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.523936: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024d46e40 pipe 2147484544 slot 2 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.523949: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0002 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.523953: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a03e0(0x00000000e54a0000) deq 0x00000000e54a03d0(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.523955: xhci_queue_trb: CTRL: Buffer 00000000e4c8cf78 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.523957: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a03f0(0x00000000e54a0000) deq 0x00000000e54a03d0(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.523958: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.523960: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0400(0x00000000e54a0000) deq 0x00000000e54a03d0(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.523963: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-133 [000] d.h.. 2.523985: xhci_handle_event: EVENT: TRB 00000000e54a03f0 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-133 [000] d.h.. 2.523992: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-133 [000] d.h.. 2.523996: xhci_inc_deq: CTRL ffffff8022d63600: enq 0x00000000e54a0400(0x00000000e54a0000) deq 0x00000000e54a0400(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-133 [000] d.h.. 2.524000: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024d46e40 pipe 2147484544 slot 2 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-133 [000] d.h.. 2.524018: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557f00(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.524632: xhci_queue_trb: CMD: Enable Slot Command: flags C
<task>-132 [001] d.... 2.524637: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e4558230(0x00000000e4558000) deq 0x00000000e4558220(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.524640: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-133 [000] d.h.. 2.524662: xhci_handle_event: EVENT: TRB 00000000e4558220 status 'Success' len 0 slot 4 ep 0 type 'Command Completion Event' flags e:C
<task>-133 [000] d.h.. 2.524667: xhci_handle_command: CMD: Enable Slot Command: flags C
<task>-133 [000] d.h.. 2.524679: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e4558230(0x00000000e4558000) deq 0x00000000e4558230(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-133 [000] d.h.. 2.524681: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557f10(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.524765: xhci_ring_alloc: CTRL ffffff8024e47300: enq 0x00000000e4d6c000(0x00000000e4d6c000) deq 0x00000000e4d6c000(0x00000000e4d6c000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.524769: xhci_alloc_virt_device: vdev ffffff8025734000 ctx e4d9f000 | e5582000 num 0 state 0 speed 0 port 0 level 0 slot 0
<task>-132 [001] ..... 2.524773: xhci_alloc_dev: RS 00000 UNKNOWN speed Ctx Entries 0 MEL 0 us Port# 0/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-132 [001] ..... 2.524812: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024d46e40 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.524820: xhci_queue_trb: CTRL: bRequestType 23 bRequest 03 wValue 0004 wIndex 0002 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.524822: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0410(0x00000000e54a0000) deq 0x00000000e54a0400(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.524823: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.524825: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0420(0x00000000e54a0000) deq 0x00000000e54a0400(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.524828: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-133 [000] d.h.. 2.524846: xhci_handle_event: EVENT: TRB 00000000e54a0410 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-133 [000] d.h.. 2.524853: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-133 [000] d.h.. 2.524857: xhci_inc_deq: CTRL ffffff8022d63600: enq 0x00000000e54a0420(0x00000000e54a0000) deq 0x00000000e54a0420(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-133 [000] d.h.. 2.524861: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024d46e40 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-133 [000] d.h.. 2.524866: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557f20(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.538949: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024d46e40 pipe 2147484544 slot 2 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.538968: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0002 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.538973: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0430(0x00000000e54a0000) deq 0x00000000e54a0420(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.538975: xhci_queue_trb: CTRL: Buffer 00000000e4c8cf78 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.538977: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0440(0x00000000e54a0000) deq 0x00000000e54a0420(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.538979: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.538981: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0450(0x00000000e54a0000) deq 0x00000000e54a0420(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.538984: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-133 [000] d.h.. 2.539016: xhci_handle_event: EVENT: TRB 00000000e54a0440 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-133 [000] d.h.. 2.539026: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-133 [000] d.h.. 2.539032: xhci_inc_deq: CTRL ffffff8022d63600: enq 0x00000000e54a0450(0x00000000e54a0000) deq 0x00000000e54a0450(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-133 [000] d.h.. 2.539038: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024d46e40 pipe 2147484544 slot 2 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-133 [000] d.h.. 2.539049: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557f30(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.554056: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024d46f00 pipe 2147484544 slot 2 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.554076: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0002 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.554081: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0460(0x00000000e54a0000) deq 0x00000000e54a0450(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.554084: xhci_queue_trb: CTRL: Buffer 00000000e4c8cf78 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.554086: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0470(0x00000000e54a0000) deq 0x00000000e54a0450(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.554087: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.554089: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0480(0x00000000e54a0000) deq 0x00000000e54a0450(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.554092: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<idle>-0 [000] d.h.. 2.554127: xhci_handle_event: EVENT: TRB 00000000e54a0470 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.554137: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.554143: xhci_inc_deq: CTRL ffffff8022d63600: enq 0x00000000e54a0480(0x00000000e54a0000) deq 0x00000000e54a0480(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.554149: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024d46f00 pipe 2147484544 slot 2 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.554159: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557f40(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.554210: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024d46f00 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.554214: xhci_queue_trb: CTRL: bRequestType 23 bRequest 01 wValue 0014 wIndex 0002 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.554217: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0490(0x00000000e54a0000) deq 0x00000000e54a0480(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.554218: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.554220: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a04a0(0x00000000e54a0000) deq 0x00000000e54a0480(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.554222: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<idle>-0 [000] d.h.. 2.554242: xhci_handle_event: EVENT: TRB 00000000e54a0490 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.554246: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.554249: xhci_inc_deq: CTRL ffffff8022d63600: enq 0x00000000e54a04a0(0x00000000e54a0000) deq 0x00000000e54a04a0(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.554252: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024d46f00 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.554255: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557f50(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.614003: xhci_setup_device_slot: RS 00000 UNKNOWN speed Ctx Entries 0 MEL 0 us Port# 0/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-132 [001] ..... 2.614024: xhci_setup_addressable_virt_device: vdev ffffff8025734000 ctx e4d9f000 | e5582000 num 0 state 5 speed 3 port 2 level 3 slot 4
<task>-132 [001] ..... 2.614028: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e4d9f000, ctx_va=@ffffffc080ff1000
<task>-132 [001] ..... 2.614032: xhci_address_ctrl_ctx: Add: slot ep0
<task>-132 [001] d.... 2.614035: xhci_setup_device: vdev ffffff8025734000 ctx e4d9f000 | e5582000 num 0 state 5 speed 3 port 2 level 3 slot 4
<task>-132 [001] d.... 2.614046: xhci_queue_trb: CMD: Address Device Command: ctx 00000000e4d9f000 slot 4 flags B:C
<task>-132 [001] d.... 2.614050: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e4558240(0x00000000e4558000) deq 0x00000000e4558230(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.614053: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.H.. 2.614076: xhci_handle_event: EVENT: TRB 00000000e4558230 status 'Success' len 0 slot 4 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.H.. 2.614082: xhci_handle_command: CMD: Address Device Command: ctx 00000000e4d9f000 slot 4 flags B:C
<idle>-0 [000] d.H.. 2.614088: xhci_handle_cmd_addr_dev: RS 00022 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<idle>-0 [000] d.H.. 2.614116: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e4558240(0x00000000e4558000) deq 0x00000000e4558240(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.H.. 2.614119: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557f60(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.614156: xhci_dbg_address: Successful setup context command
<task>-132 [001] ..... 2.614162: xhci_dbg_address: Op regs DCBAA ptr = 0x000000e456f000
<task>-132 [001] ..... 2.614169: xhci_dbg_address: Slot ID 4 dcbaa entry @ffffffc080c1d020 = 0x000000e5582000
<task>-132 [001] ..... 2.614173: xhci_dbg_address: Output Context DMA address = 0xe5582000
<task>-132 [001] ..... 2.614176: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e4d9f000, ctx_va=@ffffffc080ff1000
<task>-132 [001] ..... 2.614179: xhci_address_ctx: ctx_64=0, ctx_type=1, ctx_dma=@e5582000, ctx_va=@ffffffc081b7f000
<task>-132 [001] ..... 2.614182: xhci_dbg_address: Internal device address = 0
<task>-132 [001] .N... 2.614228: xhci_urb_enqueue: 1-1.2.2 ep0out-control: urb ffffff8024e17d80 pipe 2147483776 slot 4 length 0/64 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] dN... 2.614237: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0100 wIndex 0000 wLength 64 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] dN... 2.614239: xhci_inc_enq: CTRL ffffff8024e47300: enq 0x00000000e4d6c010(0x00000000e4d6c000) deq 0x00000000e4d6c000(0x00000000e4d6c000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] dN... 2.614242: xhci_queue_trb: CTRL: Buffer 00000000e4e22700 length 64 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] dN... 2.614244: xhci_inc_enq: CTRL ffffff8024e47300: enq 0x00000000e4d6c020(0x00000000e4d6c000) deq 0x00000000e4d6c000(0x00000000e4d6c000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] dN... 2.614245: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] dN... 2.614247: xhci_inc_enq: CTRL ffffff8024e47300: enq 0x00000000e4d6c030(0x00000000e4d6c000) deq 0x00000000e4d6c000(0x00000000e4d6c000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] dN... 2.614250: xhci_ring_ep_doorbell: Ring doorbell for Slot 4 ep0in
<idle>-0 [000] d.h.. 2.614295: xhci_handle_event: EVENT: TRB 00000000e4d6c010 status 'Short Packet' len 46 slot 4 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.614303: xhci_handle_transfer: CTRL: Buffer 00000000e4e22700 length 64 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<idle>-0 [000] d.h.. 2.614306: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557f70(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.614308: xhci_handle_event: EVENT: TRB 00000000e4d6c020 status 'Success' len 0 slot 4 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.614311: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.614314: xhci_inc_deq: CTRL ffffff8024e47300: enq 0x00000000e4d6c030(0x00000000e4d6c000) deq 0x00000000e4d6c030(0x00000000e4d6c000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.614319: xhci_urb_giveback: 1-1.2.2 ep0out-control: urb ffffff8024e17d80 pipe 2147483776 slot 4 length 18/64 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.614326: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557f80(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] .N... 2.614440: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024e17d80 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] dN... 2.614448: xhci_queue_trb: CTRL: bRequestType 23 bRequest 03 wValue 0004 wIndex 0002 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] dN... 2.614451: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a04b0(0x00000000e54a0000) deq 0x00000000e54a04a0(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] dN... 2.614452: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] dN... 2.614454: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a04c0(0x00000000e54a0000) deq 0x00000000e54a04a0(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] dN... 2.614456: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<idle>-0 [000] d.h.. 2.614567: xhci_handle_event: EVENT: TRB 00000000e54a04b0 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.614573: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.614577: xhci_inc_deq: CTRL ffffff8022d63600: enq 0x00000000e54a04c0(0x00000000e54a0000) deq 0x00000000e54a04c0(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.614586: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024e17d80 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.614591: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557f90(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.630886: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024e17d80 pipe 2147484544 slot 2 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.630906: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0002 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.630910: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a04d0(0x00000000e54a0000) deq 0x00000000e54a04c0(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.630913: xhci_queue_trb: CTRL: Buffer 00000000e4c8cf78 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.630915: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a04e0(0x00000000e54a0000) deq 0x00000000e54a04c0(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.630917: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.630919: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a04f0(0x00000000e54a0000) deq 0x00000000e54a04c0(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.630922: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<idle>-0 [000] d.h.. 2.630953: xhci_handle_event: EVENT: TRB 00000000e54a04e0 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.630964: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.630970: xhci_inc_deq: CTRL ffffff8022d63600: enq 0x00000000e54a04f0(0x00000000e54a0000) deq 0x00000000e54a04f0(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.630976: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024e17d80 pipe 2147484544 slot 2 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.630988: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557fa0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.631053: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024e17d80 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.631057: xhci_queue_trb: CTRL: bRequestType 23 bRequest 01 wValue 0014 wIndex 0002 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.631059: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0500(0x00000000e54a0000) deq 0x00000000e54a04f0(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.631061: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.631063: xhci_inc_enq: CTRL ffffff8022d63600: enq 0x00000000e54a0510(0x00000000e54a0000) deq 0x00000000e54a04f0(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.631064: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<idle>-0 [000] d.h.. 2.631083: xhci_handle_event: EVENT: TRB 00000000e54a0500 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.631087: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.631090: xhci_inc_deq: CTRL ffffff8022d63600: enq 0x00000000e54a0510(0x00000000e54a0000) deq 0x00000000e54a0510(0x00000000e54a0000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.631093: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024e17d80 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.631098: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557fb0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.690205: xhci_discover_or_reset_device: RS 00022 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<task>-132 [001] d.... 2.690227: xhci_queue_trb: CMD: Reset Device Command: slot 4 flags C
<task>-132 [001] d.... 2.690231: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e4558250(0x00000000e4558000) deq 0x00000000e4558240(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.690234: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 2.690264: xhci_handle_event: EVENT: TRB 00000000e4558240 status 'Context State Error' len 0 slot 4 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 2.690269: xhci_handle_command: CMD: Reset Device Command: slot 4 flags C
<idle>-0 [000] d.h.. 2.690279: xhci_handle_cmd_reset_dev: RS 00022 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<idle>-0 [000] d.h.. 2.690294: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e4558250(0x00000000e4558000) deq 0x00000000e4558250(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.690296: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557fc0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.690379: xhci_setup_device_slot: RS 00022 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<task>-132 [001] ..... 2.690388: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e4d9f000, ctx_va=@ffffffc080ff1000
<task>-132 [001] ..... 2.690391: xhci_address_ctrl_ctx: Add: slot ep0
<task>-132 [001] d.... 2.690395: xhci_setup_device: vdev ffffff8025734000 ctx e4d9f000 | e5582000 num 0 state 5 speed 3 port 2 level 3 slot 4
<task>-132 [001] d.... 2.690402: xhci_queue_trb: CMD: Address Device Command: ctx 00000000e4d9f000 slot 4 flags b:C
<task>-132 [001] d.... 2.690404: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e4558260(0x00000000e4558000) deq 0x00000000e4558250(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.690406: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 2.690528: xhci_handle_event: EVENT: TRB 00000000e4558250 status 'Success' len 0 slot 4 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 2.690531: xhci_handle_command: CMD: Address Device Command: ctx 00000000e4d9f000 slot 4 flags b:C
<idle>-0 [000] d.h.. 2.690536: xhci_handle_cmd_addr_dev: RS 00022 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 4 State addressed
<idle>-0 [000] d.h.. 2.690547: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e4558260(0x00000000e4558000) deq 0x00000000e4558260(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.690549: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557fd0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.690573: xhci_dbg_address: Successful setup address command
<task>-132 [001] ..... 2.690581: xhci_dbg_address: Op regs DCBAA ptr = 0x000000e456f000
<task>-132 [001] ..... 2.690589: xhci_dbg_address: Slot ID 4 dcbaa entry @ffffffc080c1d020 = 0x000000e5582000
<task>-132 [001] ..... 2.690594: xhci_dbg_address: Output Context DMA address = 0xe5582000
<task>-132 [001] ..... 2.690596: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e4d9f000, ctx_va=@ffffffc080ff1000
<task>-132 [001] ..... 2.690599: xhci_address_ctx: ctx_64=0, ctx_type=1, ctx_dma=@e5582000, ctx_va=@ffffffc081b7f000
<task>-132 [001] ..... 2.690602: xhci_dbg_address: Internal device address = 4
<task>-132 [001] ..... 2.705925: xhci_urb_enqueue: 1-1.2.2 ep0out-control: urb ffffff8024e17d80 pipe 2147485056 slot 4 length 0/18 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.705933: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0100 wIndex 0000 wLength 18 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.705936: xhci_inc_enq: CTRL ffffff8024e47300: enq 0x00000000e4d6c040(0x00000000e4d6c000) deq 0x00000000e4d6c030(0x00000000e4d6c000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.705938: xhci_queue_trb: CTRL: Buffer 00000000e4cfba80 length 18 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.705940: xhci_inc_enq: CTRL ffffff8024e47300: enq 0x00000000e4d6c050(0x00000000e4d6c000) deq 0x00000000e4d6c030(0x00000000e4d6c000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.705942: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.705944: xhci_inc_enq: CTRL ffffff8024e47300: enq 0x00000000e4d6c060(0x00000000e4d6c000) deq 0x00000000e4d6c030(0x00000000e4d6c000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.705947: xhci_ring_ep_doorbell: Ring doorbell for Slot 4 ep0in
<idle>-0 [000] d.h.. 2.705982: xhci_handle_event: EVENT: TRB 00000000e4d6c050 status 'Success' len 0 slot 4 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.705990: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.705994: xhci_inc_deq: CTRL ffffff8024e47300: enq 0x00000000e4d6c060(0x00000000e4d6c000) deq 0x00000000e4d6c060(0x00000000e4d6c000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.706000: xhci_urb_giveback: 1-1.2.2 ep0out-control: urb ffffff8024e17d80 pipe 2147485056 slot 4 length 18/18 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.706005: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557fe0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.706082: xhci_urb_enqueue: 1-1.2.2 ep0out-control: urb ffffff8024e17d80 pipe 2147485056 slot 4 length 0/9 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.706086: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0200 wIndex 0000 wLength 9 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.706088: xhci_inc_enq: CTRL ffffff8024e47300: enq 0x00000000e4d6c070(0x00000000e4d6c000) deq 0x00000000e4d6c060(0x00000000e4d6c000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.706090: xhci_queue_trb: CTRL: Buffer 00000000e4fc4db0 length 9 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.706092: xhci_inc_enq: CTRL ffffff8024e47300: enq 0x00000000e4d6c080(0x00000000e4d6c000) deq 0x00000000e4d6c060(0x00000000e4d6c000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.706093: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.706095: xhci_inc_enq: CTRL ffffff8024e47300: enq 0x00000000e4d6c090(0x00000000e4d6c000) deq 0x00000000e4d6c060(0x00000000e4d6c000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.706097: xhci_ring_ep_doorbell: Ring doorbell for Slot 4 ep0in
<idle>-0 [000] d.h.. 2.706144: xhci_handle_event: EVENT: TRB 00000000e4d6c080 status 'Success' len 0 slot 4 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.706148: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.706151: xhci_inc_deq: CTRL ffffff8024e47300: enq 0x00000000e4d6c090(0x00000000e4d6c000) deq 0x00000000e4d6c090(0x00000000e4d6c000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.706154: xhci_urb_giveback: 1-1.2.2 ep0out-control: urb ffffff8024e17d80 pipe 2147485056 slot 4 length 9/9 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.706157: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4557ff0(0x00000000e4557000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.706200: xhci_urb_enqueue: 1-1.2.2 ep0out-control: urb ffffff8024e17d80 pipe 2147485056 slot 4 length 0/55 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.706204: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0200 wIndex 0000 wLength 55 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.706206: xhci_inc_enq: CTRL ffffff8024e47300: enq 0x00000000e4d6c0a0(0x00000000e4d6c000) deq 0x00000000e4d6c090(0x00000000e4d6c000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.706207: xhci_queue_trb: CTRL: Buffer 00000000e4f76c40 length 55 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.706210: xhci_inc_enq: CTRL ffffff8024e47300: enq 0x00000000e4d6c0b0(0x00000000e4d6c000) deq 0x00000000e4d6c090(0x00000000e4d6c000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.706211: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.706213: xhci_inc_enq: CTRL ffffff8024e47300: enq 0x00000000e4d6c0c0(0x00000000e4d6c000) deq 0x00000000e4d6c090(0x00000000e4d6c000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.706214: xhci_ring_ep_doorbell: Ring doorbell for Slot 4 ep0in
<idle>-0 [000] d.h.. 2.706263: xhci_handle_event: EVENT: TRB 00000000e4d6c0b0 status 'Success' len 0 slot 4 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.706266: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.706270: xhci_inc_deq: CTRL ffffff8024e47300: enq 0x00000000e4d6c0c0(0x00000000e4d6c000) deq 0x00000000e4d6c0c0(0x00000000e4d6c000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.706272: xhci_urb_giveback: 1-1.2.2 ep0out-control: urb ffffff8024e17d80 pipe 2147485056 slot 4 length 55/55 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.706276: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556000(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.706332: xhci_urb_enqueue: 1-1.2.2 ep0out-control: urb ffffff8024e17c00 pipe 2147485056 slot 4 length 0/255 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.706335: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0300 wIndex 0000 wLength 255 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.706337: xhci_inc_enq: CTRL ffffff8024e47300: enq 0x00000000e4d6c0d0(0x00000000e4d6c000) deq 0x00000000e4d6c0c0(0x00000000e4d6c000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.706339: xhci_queue_trb: CTRL: Buffer 00000000e26bc300 length 255 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.706341: xhci_inc_enq: CTRL ffffff8024e47300: enq 0x00000000e4d6c0e0(0x00000000e4d6c000) deq 0x00000000e4d6c0c0(0x00000000e4d6c000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.706342: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.706344: xhci_inc_enq: CTRL ffffff8024e47300: enq 0x00000000e4d6c0f0(0x00000000e4d6c000) deq 0x00000000e4d6c0c0(0x00000000e4d6c000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.706346: xhci_ring_ep_doorbell: Ring doorbell for Slot 4 ep0in
<idle>-0 [000] d.h.. 2.706369: xhci_handle_event: EVENT: TRB 00000000e4d6c0d0 status 'Short Packet' len 251 slot 4 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.706372: xhci_handle_transfer: CTRL: Buffer 00000000e26bc300 length 255 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<idle>-0 [000] d.h.. 2.706375: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556010(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.706376: xhci_handle_event: EVENT: TRB 00000000e4d6c0e0 status 'Success' len 0 slot 4 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.706379: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.706382: xhci_inc_deq: CTRL ffffff8024e47300: enq 0x00000000e4d6c0f0(0x00000000e4d6c000) deq 0x00000000e4d6c0f0(0x00000000e4d6c000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.706385: xhci_urb_giveback: 1-1.2.2 ep0out-control: urb ffffff8024e17c00 pipe 2147485056 slot 4 length 4/255 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.706388: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556020(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.706432: xhci_urb_enqueue: 1-1.2.2 ep0out-control: urb ffffff8024e17c00 pipe 2147485056 slot 4 length 0/255 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.706436: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0302 wIndex 0409 wLength 255 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.706438: xhci_inc_enq: CTRL ffffff8024e47300: enq 0x00000000e4d6c100(0x00000000e4d6c000) deq 0x00000000e4d6c0f0(0x00000000e4d6c000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.706440: xhci_queue_trb: CTRL: Buffer 00000000e26bc300 length 255 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.706442: xhci_inc_enq: CTRL ffffff8024e47300: enq 0x00000000e4d6c110(0x00000000e4d6c000) deq 0x00000000e4d6c0f0(0x00000000e4d6c000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.706443: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.706445: xhci_inc_enq: CTRL ffffff8024e47300: enq 0x00000000e4d6c120(0x00000000e4d6c000) deq 0x00000000e4d6c0f0(0x00000000e4d6c000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.706446: xhci_ring_ep_doorbell: Ring doorbell for Slot 4 ep0in
<idle>-0 [000] d.h.. 2.706476: xhci_handle_event: EVENT: TRB 00000000e4d6c100 status 'Short Packet' len 227 slot 4 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.706479: xhci_handle_transfer: CTRL: Buffer 00000000e26bc300 length 255 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<idle>-0 [000] d.h.. 2.706482: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556030(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.706484: xhci_handle_event: EVENT: TRB 00000000e4d6c110 status 'Success' len 0 slot 4 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.706487: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.706489: xhci_inc_deq: CTRL ffffff8024e47300: enq 0x00000000e4d6c120(0x00000000e4d6c000) deq 0x00000000e4d6c120(0x00000000e4d6c000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.706492: xhci_urb_giveback: 1-1.2.2 ep0out-control: urb ffffff8024e17c00 pipe 2147485056 slot 4 length 28/255 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.706495: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556040(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.706538: xhci_urb_enqueue: 1-1.2.2 ep0out-control: urb ffffff8024e17c00 pipe 2147485056 slot 4 length 0/255 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.706542: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0301 wIndex 0409 wLength 255 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.706544: xhci_inc_enq: CTRL ffffff8024e47300: enq 0x00000000e4d6c130(0x00000000e4d6c000) deq 0x00000000e4d6c120(0x00000000e4d6c000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.706546: xhci_queue_trb: CTRL: Buffer 00000000e26bc300 length 255 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.706548: xhci_inc_enq: CTRL ffffff8024e47300: enq 0x00000000e4d6c140(0x00000000e4d6c000) deq 0x00000000e4d6c120(0x00000000e4d6c000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.706549: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.706551: xhci_inc_enq: CTRL ffffff8024e47300: enq 0x00000000e4d6c150(0x00000000e4d6c000) deq 0x00000000e4d6c120(0x00000000e4d6c000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.706552: xhci_ring_ep_doorbell: Ring doorbell for Slot 4 ep0in
<idle>-0 [000] d.h.. 2.706600: xhci_handle_event: EVENT: TRB 00000000e4d6c130 status 'Short Packet' len 245 slot 4 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.706604: xhci_handle_transfer: CTRL: Buffer 00000000e26bc300 length 255 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<idle>-0 [000] d.h.. 2.706606: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556050(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.706608: xhci_handle_event: EVENT: TRB 00000000e4d6c140 status 'Success' len 0 slot 4 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.706611: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.706613: xhci_inc_deq: CTRL ffffff8024e47300: enq 0x00000000e4d6c150(0x00000000e4d6c000) deq 0x00000000e4d6c150(0x00000000e4d6c000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.706616: xhci_urb_giveback: 1-1.2.2 ep0out-control: urb ffffff8024e17c00 pipe 2147485056 slot 4 length 10/255 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.706619: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556060(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.707204: xhci_ring_alloc: BULK ffffff8024ca1900: enq 0x00000000e4d2d000(0x00000000e4d2d000) deq 0x00000000e4d2d000(0x00000000e4d2d000) segs 2 stream 0 bounce 512 cycle 1
<task>-132 [001] ..... 2.707208: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 125 us max ESIT payload 0 CErr 3 Type Bulk IN burst 0 maxp 512 deq 00000000e4d2d001 avg trb len 0
<task>-132 [001] ..... 2.707216: xhci_ring_alloc: BULK ffffff8024ca1980: enq 0x00000000e4e0d000(0x00000000e4e0d000) deq 0x00000000e4e0d000(0x00000000e4e0d000) segs 2 stream 0 bounce 512 cycle 1
<task>-132 [001] ..... 2.707218: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 125 us max ESIT payload 0 CErr 3 Type Bulk OUT burst 0 maxp 512 deq 00000000e4e0d001 avg trb len 0
<task>-132 [001] ..... 2.707283: xhci_ring_alloc: BULK ffffff8024ca1a00: enq 0x00000000e4cac000(0x00000000e4cac000) deq 0x00000000e4cac000(0x00000000e4cac000) segs 2 stream 0 bounce 512 cycle 1
<task>-132 [001] ..... 2.707285: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 125 us max ESIT payload 0 CErr 3 Type Bulk IN burst 0 maxp 512 deq 00000000e4cac001 avg trb len 0
<task>-132 [001] ..... 2.707306: xhci_ring_alloc: BULK ffffff8024ca1a80: enq 0x00000000e4cc5000(0x00000000e4cc5000) deq 0x00000000e4cc5000(0x00000000e4cc5000) segs 2 stream 0 bounce 512 cycle 1
<task>-132 [001] ..... 2.707308: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 125 us max ESIT payload 0 CErr 3 Type Bulk OUT burst 0 maxp 512 deq 00000000e4cc5001 avg trb len 0
<task>-132 [001] d.... 2.707322: xhci_configure_endpoint_ctrl_ctx: Add: slot 1in 2out 3in 4out
<task>-132 [001] d.... 2.707325: xhci_configure_endpoint: RS 00022 high-speed Ctx Entries 8 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-132 [001] d.... 2.707333: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e4d9f000 slot 4 flags d:C
<task>-132 [001] d.... 2.707335: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e4558270(0x00000000e4558000) deq 0x00000000e4558260(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.707338: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-133 [000] d.h.. 2.707454: xhci_handle_event: EVENT: TRB 00000000e4558260 status 'Success' len 0 slot 4 ep 0 type 'Command Completion Event' flags e:C
<task>-133 [000] d.h.. 2.707458: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e4d9f000 slot 4 flags d:C
<task>-133 [000] d.h.. 2.707473: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e4558270(0x00000000e4558000) deq 0x00000000e4558270(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-133 [000] d.h.. 2.707475: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556070(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.707497: xhci_dbg_context_change: Successful Endpoint Configure command
<task>-132 [001] d.... 2.707529: xhci_queue_trb: CMD: Stop Ring Command: slot 4 sp 0 ep 3 flags C
<task>-132 [001] d.... 2.707532: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e4558280(0x00000000e4558000) deq 0x00000000e4558270(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.707533: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-133 [000] d.h.. 2.707545: xhci_handle_event: EVENT: TRB 00000000e4d2d000 status 'Stopped - Length Invalid' len 0 slot 4 ep 3 type 'Transfer Event' flags e:C
<task>-133 [000] d.h.. 2.707550: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556080(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-133 [000] d.h.. 2.707552: xhci_handle_event: EVENT: TRB 00000000e4558270 status 'Success' len 0 slot 4 ep 0 type 'Command Completion Event' flags e:C
<task>-133 [000] d.h.. 2.707554: xhci_handle_command: CMD: Stop Ring Command: slot 4 sp 0 ep 3 flags C
<task>-133 [000] d.h.. 2.707565: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e4558280(0x00000000e4558000) deq 0x00000000e4558280(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-133 [000] d.h.. 2.707567: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556090(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.707588: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e5583000 slot 4 flags d:C
<task>-132 [001] d.... 2.707594: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e4558290(0x00000000e4558000) deq 0x00000000e4558280(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.707595: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-113 [000] d.h.. 2.707707: xhci_handle_event: EVENT: TRB 00000000e4558280 status 'Success' len 0 slot 4 ep 0 type 'Command Completion Event' flags e:C
<task>-113 [000] d.h.. 2.707710: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e5583000 slot 4 flags d:C
<task>-113 [000] d.h.. 2.707723: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e4558290(0x00000000e4558000) deq 0x00000000e4558290(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-113 [000] d.h.. 2.707725: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45560a0(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.707747: xhci_queue_trb: CMD: Stop Ring Command: slot 4 sp 0 ep 4 flags C
<task>-132 [001] d.... 2.707750: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e45582a0(0x00000000e4558000) deq 0x00000000e4558290(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.707751: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-113 [000] d.h.. 2.707762: xhci_handle_event: EVENT: TRB 00000000e4e0d000 status 'Stopped - Length Invalid' len 0 slot 4 ep 4 type 'Transfer Event' flags e:C
<task>-113 [000] d.h.. 2.707766: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45560b0(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-113 [000] d.h.. 2.707767: xhci_handle_event: EVENT: TRB 00000000e4558290 status 'Success' len 0 slot 4 ep 0 type 'Command Completion Event' flags e:C
<task>-113 [000] d.h.. 2.707770: xhci_handle_command: CMD: Stop Ring Command: slot 4 sp 0 ep 4 flags C
<task>-113 [000] d.h.. 2.707780: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e45582a0(0x00000000e4558000) deq 0x00000000e45582a0(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-113 [000] d.h.. 2.707781: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45560c0(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.707802: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e5583000 slot 4 flags d:C
<task>-132 [001] d.... 2.707805: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e45582b0(0x00000000e4558000) deq 0x00000000e45582a0(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.707807: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 2.707928: xhci_handle_event: EVENT: TRB 00000000e45582a0 status 'Success' len 0 slot 4 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 2.707931: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e5583000 slot 4 flags d:C
<idle>-0 [000] d.h.. 2.707944: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e45582b0(0x00000000e4558000) deq 0x00000000e45582b0(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.707946: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45560d0(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.707984: xhci_queue_trb: CMD: Stop Ring Command: slot 4 sp 0 ep 7 flags C
<task>-132 [001] d.... 2.707987: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e45582c0(0x00000000e4558000) deq 0x00000000e45582b0(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.707988: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 2.708014: xhci_handle_event: EVENT: TRB 00000000e4cac000 status 'Stopped - Length Invalid' len 0 slot 4 ep 7 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.708018: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45560e0(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.708019: xhci_handle_event: EVENT: TRB 00000000e45582b0 status 'Success' len 0 slot 4 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 2.708022: xhci_handle_command: CMD: Stop Ring Command: slot 4 sp 0 ep 7 flags C
<idle>-0 [000] d.h.. 2.708032: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e45582c0(0x00000000e4558000) deq 0x00000000e45582c0(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.708034: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45560f0(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.708096: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e5583000 slot 4 flags d:C
<task>-132 [001] d.... 2.708099: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e45582d0(0x00000000e4558000) deq 0x00000000e45582c0(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.708100: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 2.708225: xhci_handle_event: EVENT: TRB 00000000e45582c0 status 'Success' len 0 slot 4 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 2.708228: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e5583000 slot 4 flags d:C
<idle>-0 [000] d.h.. 2.708239: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e45582d0(0x00000000e4558000) deq 0x00000000e45582d0(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.708240: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556100(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.708289: xhci_queue_trb: CMD: Stop Ring Command: slot 4 sp 0 ep 8 flags C
<task>-132 [001] d.... 2.708292: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e45582e0(0x00000000e4558000) deq 0x00000000e45582d0(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.708294: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 2.708311: xhci_handle_event: EVENT: TRB 00000000e4cc5000 status 'Stopped - Length Invalid' len 0 slot 4 ep 8 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.708315: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556110(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.708317: xhci_handle_event: EVENT: TRB 00000000e45582d0 status 'Success' len 0 slot 4 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 2.708319: xhci_handle_command: CMD: Stop Ring Command: slot 4 sp 0 ep 8 flags C
<idle>-0 [000] d.h.. 2.708330: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e45582e0(0x00000000e4558000) deq 0x00000000e45582e0(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.708331: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556120(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.708353: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e5583000 slot 4 flags d:C
<task>-132 [001] d.... 2.708355: xhci_inc_enq: CMD ffffff8022542780: enq 0x00000000e45582f0(0x00000000e4558000) deq 0x00000000e45582e0(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.708357: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 2.708474: xhci_handle_event: EVENT: TRB 00000000e45582e0 status 'Success' len 0 slot 4 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 2.708477: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e5583000 slot 4 flags d:C
<idle>-0 [000] d.h.. 2.708488: xhci_inc_deq: CMD ffffff8022542780: enq 0x00000000e45582f0(0x00000000e4558000) deq 0x00000000e45582f0(0x00000000e4558000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.708489: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556130(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.708523: xhci_urb_enqueue: 1-1.2.2 ep0out-control: urb ffffff8024e17c00 pipe 2147484928 slot 4 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-132 [001] d.... 2.708529: xhci_queue_trb: CTRL: bRequestType 00 bRequest 09 wValue 0001 wIndex 0000 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.708531: xhci_inc_enq: CTRL ffffff8024e47300: enq 0x00000000e4d6c160(0x00000000e4d6c000) deq 0x00000000e4d6c150(0x00000000e4d6c000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.708532: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.708535: xhci_inc_enq: CTRL ffffff8024e47300: enq 0x00000000e4d6c170(0x00000000e4d6c000) deq 0x00000000e4d6c150(0x00000000e4d6c000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.708537: xhci_ring_ep_doorbell: Ring doorbell for Slot 4 ep0in
<idle>-0 [000] d.h.. 2.708559: xhci_handle_event: EVENT: TRB 00000000e4d6c160 status 'Success' len 0 slot 4 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.708564: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.708568: xhci_inc_deq: CTRL ffffff8024e47300: enq 0x00000000e4d6c170(0x00000000e4d6c000) deq 0x00000000e4d6c170(0x00000000e4d6c000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.708573: xhci_urb_giveback: 1-1.2.2 ep0out-control: urb ffffff8024e17c00 pipe 2147484928 slot 4 length 0/0 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.708579: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556140(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.708735: xhci_urb_enqueue: 1-1.2.2 ep0out-control: urb ffffff8024e17c00 pipe 2147485056 slot 4 length 0/255 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.708739: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0302 wIndex 0409 wLength 255 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.708741: xhci_inc_enq: CTRL ffffff8024e47300: enq 0x00000000e4d6c180(0x00000000e4d6c000) deq 0x00000000e4d6c170(0x00000000e4d6c000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.708743: xhci_queue_trb: CTRL: Buffer 00000000e26bc500 length 255 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.708745: xhci_inc_enq: CTRL ffffff8024e47300: enq 0x00000000e4d6c190(0x00000000e4d6c000) deq 0x00000000e4d6c170(0x00000000e4d6c000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.708746: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.708748: xhci_inc_enq: CTRL ffffff8024e47300: enq 0x00000000e4d6c1a0(0x00000000e4d6c000) deq 0x00000000e4d6c170(0x00000000e4d6c000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.708750: xhci_ring_ep_doorbell: Ring doorbell for Slot 4 ep0in
<idle>-0 [000] d.h.. 2.708794: xhci_handle_event: EVENT: TRB 00000000e4d6c180 status 'Short Packet' len 227 slot 4 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.708797: xhci_handle_transfer: CTRL: Buffer 00000000e26bc500 length 255 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<idle>-0 [000] d.h.. 2.708800: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556150(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.708802: xhci_handle_event: EVENT: TRB 00000000e4d6c190 status 'Success' len 0 slot 4 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.708804: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.708807: xhci_inc_deq: CTRL ffffff8024e47300: enq 0x00000000e4d6c1a0(0x00000000e4d6c000) deq 0x00000000e4d6c1a0(0x00000000e4d6c000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.708810: xhci_urb_giveback: 1-1.2.2 ep0out-control: urb ffffff8024e17c00 pipe 2147485056 slot 4 length 28/255 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.708813: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556160(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] ..... 2.709156: xhci_urb_enqueue: 1-1.2.2 ep0out-control: urb ffffff8024e17c00 pipe 2147485056 slot 4 length 0/255 sgs 0/0 stream 0 flags 00110200
<task>-132 [001] d.... 2.709161: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0302 wIndex 0409 wLength 255 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-132 [001] d.... 2.709163: xhci_inc_enq: CTRL ffffff8024e47300: enq 0x00000000e4d6c1b0(0x00000000e4d6c000) deq 0x00000000e4d6c1a0(0x00000000e4d6c000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.709165: xhci_queue_trb: CTRL: Buffer 00000000e26bc800 length 255 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-132 [001] d.... 2.709167: xhci_inc_enq: CTRL ffffff8024e47300: enq 0x00000000e4d6c1c0(0x00000000e4d6c000) deq 0x00000000e4d6c1a0(0x00000000e4d6c000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.709168: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-132 [001] d.... 2.709170: xhci_inc_enq: CTRL ffffff8024e47300: enq 0x00000000e4d6c1d0(0x00000000e4d6c000) deq 0x00000000e4d6c1a0(0x00000000e4d6c000) segs 2 stream 0 bounce 0 cycle 1
<task>-132 [001] d.... 2.709172: xhci_ring_ep_doorbell: Ring doorbell for Slot 4 ep0in
<idle>-0 [000] d.h.. 2.709222: xhci_handle_event: EVENT: TRB 00000000e4d6c1b0 status 'Short Packet' len 227 slot 4 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.709228: xhci_handle_transfer: CTRL: Buffer 00000000e26bc800 length 255 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<idle>-0 [000] d.h.. 2.709232: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556170(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.709233: xhci_handle_event: EVENT: TRB 00000000e4d6c1c0 status 'Success' len 0 slot 4 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.709236: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.709240: xhci_inc_deq: CTRL ffffff8024e47300: enq 0x00000000e4d6c1d0(0x00000000e4d6c000) deq 0x00000000e4d6c1d0(0x00000000e4d6c000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.709243: xhci_urb_giveback: 1-1.2.2 ep0out-control: urb ffffff8024e17c00 pipe 2147485056 slot 4 length 28/255 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.709248: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556180(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] ..... 2.946547: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-190 [000] d.... 2.946567: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-190 [000] d.... 2.946572: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25b30(0x00000000e4e25000) deq 0x00000000e4e25b20(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.946575: xhci_queue_trb: CTRL: Buffer 0000000000000008 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-190 [000] d.... 2.946577: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25b40(0x00000000e4e25000) deq 0x00000000e4e25b20(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.946578: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-190 [000] d.... 2.946580: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25b50(0x00000000e4e25000) deq 0x00000000e4e25b20(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.946584: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-66 [000] d.h.. 2.946630: xhci_handle_event: EVENT: TRB 00000000e4e25b40 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-66 [000] d.h.. 2.946637: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-66 [000] d.h.. 2.946643: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25b50(0x00000000e4e25000) deq 0x00000000e4e25b50(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-66 [000] d.h.. 2.946649: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-66 [000] d.h.. 2.946657: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556190(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] ..... 2.962256: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-190 [000] d.... 2.962275: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-190 [000] d.... 2.962280: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25b60(0x00000000e4e25000) deq 0x00000000e4e25b50(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.962282: xhci_queue_trb: CTRL: Buffer 00000000e45d35b0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-190 [000] d.... 2.962284: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25b70(0x00000000e4e25000) deq 0x00000000e4e25b50(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.962286: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-190 [000] d.... 2.962291: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25b80(0x00000000e4e25000) deq 0x00000000e4e25b50(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.962294: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.962342: xhci_handle_event: EVENT: TRB 00000000e4e25b70 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.962350: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.962355: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25b80(0x00000000e4e25000) deq 0x00000000e4e25b80(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.962361: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.962370: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45561a0(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] ..... 2.962421: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-190 [000] d.... 2.962424: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0108 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-190 [000] d.... 2.962426: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25b90(0x00000000e4e25000) deq 0x00000000e4e25b80(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.962428: xhci_queue_trb: CTRL: Buffer 00000000a839dbaa length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-190 [000] d.... 2.962430: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25ba0(0x00000000e4e25000) deq 0x00000000e4e25b80(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.962431: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-190 [000] d.... 2.962433: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25bb0(0x00000000e4e25000) deq 0x00000000e4e25b80(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.962435: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.962457: xhci_handle_event: EVENT: TRB 00000000e4e25ba0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.962461: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.962464: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25bb0(0x00000000e4e25000) deq 0x00000000e4e25bb0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.962466: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.962469: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45561b0(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] ..... 2.962493: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-190 [000] d.... 2.962497: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0104 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-190 [000] d.... 2.962499: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25bc0(0x00000000e4e25000) deq 0x00000000e4e25bb0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.962501: xhci_queue_trb: CTRL: Buffer 000000000000bb80 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-190 [000] d.... 2.962503: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25bd0(0x00000000e4e25000) deq 0x00000000e4e25bb0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.962504: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-190 [000] d.... 2.962506: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25be0(0x00000000e4e25000) deq 0x00000000e4e25bb0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.962507: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.962531: xhci_handle_event: EVENT: TRB 00000000e4e25bd0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.962535: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.962538: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25be0(0x00000000e4e25000) deq 0x00000000e4e25be0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.962540: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.962543: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45561c0(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] ..... 2.962571: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-190 [000] d.... 2.962575: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-190 [000] d.... 2.962577: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25bf0(0x00000000e4e25000) deq 0x00000000e4e25be0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.962579: xhci_queue_trb: CTRL: Buffer 00000000e45d35b0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-190 [000] d.... 2.962581: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25c00(0x00000000e4e25000) deq 0x00000000e4e25be0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.962582: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-190 [000] d.... 2.962584: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25c10(0x00000000e4e25000) deq 0x00000000e4e25be0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.962585: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.962606: xhci_handle_event: EVENT: TRB 00000000e4e25c00 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.962610: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.962613: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25c10(0x00000000e4e25000) deq 0x00000000e4e25c10(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.962615: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.962618: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45561d0(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] ..... 2.962646: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-190 [000] d.... 2.962649: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-190 [000] d.... 2.962652: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25c20(0x00000000e4e25000) deq 0x00000000e4e25c10(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.962653: xhci_queue_trb: CTRL: Buffer 0000000000001000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-190 [000] d.... 2.962655: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25c30(0x00000000e4e25000) deq 0x00000000e4e25c10(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.962657: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-190 [000] d.... 2.962658: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25c40(0x00000000e4e25000) deq 0x00000000e4e25c10(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.962660: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.962685: xhci_handle_event: EVENT: TRB 00000000e4e25c30 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.962688: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.962691: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25c40(0x00000000e4e25000) deq 0x00000000e4e25c40(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.962694: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.962696: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45561e0(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] ..... 2.962723: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-190 [000] d.... 2.962726: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-190 [000] d.... 2.962729: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25c50(0x00000000e4e25000) deq 0x00000000e4e25c40(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.962730: xhci_queue_trb: CTRL: Buffer 00000000e45d35b0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-190 [000] d.... 2.962732: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25c60(0x00000000e4e25000) deq 0x00000000e4e25c40(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.962733: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-190 [000] d.... 2.962735: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25c70(0x00000000e4e25000) deq 0x00000000e4e25c40(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.962737: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.962758: xhci_handle_event: EVENT: TRB 00000000e4e25c60 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.962761: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.962765: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25c70(0x00000000e4e25000) deq 0x00000000e4e25c70(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.962767: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.962770: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45561f0(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] ..... 2.962802: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-190 [000] d.... 2.962806: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0038 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-190 [000] d.... 2.962808: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25c80(0x00000000e4e25000) deq 0x00000000e4e25c70(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.962810: xhci_queue_trb: CTRL: Buffer 0000000000000025 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-190 [000] d.... 2.962812: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25c90(0x00000000e4e25000) deq 0x00000000e4e25c70(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.962813: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-190 [000] d.... 2.962815: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25ca0(0x00000000e4e25000) deq 0x00000000e4e25c70(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.962817: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.962839: xhci_handle_event: EVENT: TRB 00000000e4e25c90 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.962843: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.962847: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25ca0(0x00000000e4e25000) deq 0x00000000e4e25ca0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.962849: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.962852: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556200(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] ..... 2.962879: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-190 [000] d.... 2.962883: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0038 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-190 [000] d.... 2.962885: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25cb0(0x00000000e4e25000) deq 0x00000000e4e25ca0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.962886: xhci_queue_trb: CTRL: Buffer 00000000e45d35b0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-190 [000] d.... 2.962889: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25cc0(0x00000000e4e25000) deq 0x00000000e4e25ca0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.962890: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-190 [000] d.... 2.962892: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25cd0(0x00000000e4e25000) deq 0x00000000e4e25ca0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.962893: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.962916: xhci_handle_event: EVENT: TRB 00000000e4e25cc0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.962920: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.962923: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25cd0(0x00000000e4e25000) deq 0x00000000e4e25cd0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.962925: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.962928: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556210(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] ..... 2.962957: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-190 [000] d.... 2.962962: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 006c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-190 [000] d.... 2.962964: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25ce0(0x00000000e4e25000) deq 0x00000000e4e25cd0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.962966: xhci_queue_trb: CTRL: Buffer 0000000000002000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-190 [000] d.... 2.962968: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25cf0(0x00000000e4e25000) deq 0x00000000e4e25cd0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.962969: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-190 [000] d.... 2.962971: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25d00(0x00000000e4e25000) deq 0x00000000e4e25cd0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.962972: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.962995: xhci_handle_event: EVENT: TRB 00000000e4e25cf0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.962999: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.963002: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25d00(0x00000000e4e25000) deq 0x00000000e4e25d00(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.963004: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.963007: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556220(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] ..... 2.963034: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-190 [000] d.... 2.963037: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 006c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-190 [000] d.... 2.963040: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25d10(0x00000000e4e25000) deq 0x00000000e4e25d00(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.963041: xhci_queue_trb: CTRL: Buffer 00000000e45d35b0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-190 [000] d.... 2.963043: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25d20(0x00000000e4e25000) deq 0x00000000e4e25d00(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.963044: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-190 [000] d.... 2.963046: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25d30(0x00000000e4e25000) deq 0x00000000e4e25d00(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.963048: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.963068: xhci_handle_event: EVENT: TRB 00000000e4e25d20 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.963072: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.963075: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25d30(0x00000000e4e25000) deq 0x00000000e4e25d30(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.963077: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.963080: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556230(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] ..... 2.963107: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-190 [000] d.... 2.963111: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-190 [000] d.... 2.963113: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25d40(0x00000000e4e25000) deq 0x00000000e4e25d30(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.963115: xhci_queue_trb: CTRL: Buffer 00000000e45d35b0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-190 [000] d.... 2.963117: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25d50(0x00000000e4e25000) deq 0x00000000e4e25d30(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.963118: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-190 [000] d.... 2.963120: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25d60(0x00000000e4e25000) deq 0x00000000e4e25d30(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.963122: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.963138: xhci_handle_event: EVENT: TRB 00000000e4e25d50 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.963142: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.963145: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25d60(0x00000000e4e25000) deq 0x00000000e4e25d60(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.963147: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.963150: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556240(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] ..... 2.963178: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-190 [000] d.... 2.963183: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-190 [000] d.... 2.963185: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25d70(0x00000000e4e25000) deq 0x00000000e4e25d60(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.963187: xhci_queue_trb: CTRL: Buffer 0000000000001022 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-190 [000] d.... 2.963189: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25d80(0x00000000e4e25000) deq 0x00000000e4e25d60(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.963190: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-190 [000] d.... 2.963192: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25d90(0x00000000e4e25000) deq 0x00000000e4e25d60(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.963193: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.963211: xhci_handle_event: EVENT: TRB 00000000e4e25d80 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.963215: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.963218: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25d90(0x00000000e4e25000) deq 0x00000000e4e25d90(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.963220: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.963223: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556250(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] ..... 2.963249: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-190 [000] d.... 2.963253: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-190 [000] d.... 2.963255: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25da0(0x00000000e4e25000) deq 0x00000000e4e25d90(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.963256: xhci_queue_trb: CTRL: Buffer 00000000e45d35b0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-190 [000] d.... 2.963259: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25db0(0x00000000e4e25000) deq 0x00000000e4e25d90(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.963260: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-190 [000] d.... 2.963262: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25dc0(0x00000000e4e25000) deq 0x00000000e4e25d90(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.963263: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.963281: xhci_handle_event: EVENT: TRB 00000000e4e25db0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.963285: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.963288: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25dc0(0x00000000e4e25000) deq 0x00000000e4e25dc0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.963290: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.963293: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556260(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] ..... 2.963322: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-190 [000] d.... 2.963325: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0008 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-190 [000] d.... 2.963327: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25dd0(0x00000000e4e25000) deq 0x00000000e4e25dc0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.963329: xhci_queue_trb: CTRL: Buffer 00000000ffffffff length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-190 [000] d.... 2.963331: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25de0(0x00000000e4e25000) deq 0x00000000e4e25dc0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.963332: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-190 [000] d.... 2.963334: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25df0(0x00000000e4e25000) deq 0x00000000e4e25dc0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.963336: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.963353: xhci_handle_event: EVENT: TRB 00000000e4e25de0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.963357: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.963360: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25df0(0x00000000e4e25000) deq 0x00000000e4e25df0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.963363: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.963366: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556270(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] ..... 2.963391: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-190 [000] d.... 2.963395: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0000 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-190 [000] d.... 2.963397: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25e00(0x00000000e4e25000) deq 0x00000000e4e25df0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.963399: xhci_queue_trb: CTRL: Buffer 00000000e45d35b0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-190 [000] d.... 2.963401: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25e10(0x00000000e4e25000) deq 0x00000000e4e25df0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.963402: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-190 [000] d.... 2.963404: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25e20(0x00000000e4e25000) deq 0x00000000e4e25df0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.963405: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.963423: xhci_handle_event: EVENT: TRB 00000000e4e25e10 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.963427: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.963430: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25e20(0x00000000e4e25000) deq 0x00000000e4e25e20(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.963432: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.963435: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556280(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] ..... 2.963462: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-190 [000] d.... 2.963466: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0024 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-190 [000] d.... 2.963468: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25e30(0x00000000e4e25000) deq 0x00000000e4e25e20(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.963470: xhci_queue_trb: CTRL: Buffer 00000000e45d35b0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-190 [000] d.... 2.963472: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25e40(0x00000000e4e25000) deq 0x00000000e4e25e20(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.963473: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-190 [000] d.... 2.963475: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25e50(0x00000000e4e25000) deq 0x00000000e4e25e20(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.963476: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.963494: xhci_handle_event: EVENT: TRB 00000000e4e25e40 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.963498: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.963501: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25e50(0x00000000e4e25000) deq 0x00000000e4e25e50(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.963503: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.963506: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556290(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] ..... 2.963531: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-190 [000] d.... 2.963536: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0024 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-190 [000] d.... 2.963539: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25e60(0x00000000e4e25000) deq 0x00000000e4e25e50(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.963540: xhci_queue_trb: CTRL: Buffer 0000000001110007 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-190 [000] d.... 2.963542: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25e70(0x00000000e4e25000) deq 0x00000000e4e25e50(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.963543: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-190 [000] d.... 2.963545: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25e80(0x00000000e4e25000) deq 0x00000000e4e25e50(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.963547: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.963566: xhci_handle_event: EVENT: TRB 00000000e4e25e70 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.963570: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.963573: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25e80(0x00000000e4e25000) deq 0x00000000e4e25e80(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.963575: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.963578: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45562a0(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] ..... 2.963601: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-190 [000] d.... 2.963604: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 011c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-190 [000] d.... 2.963608: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25e90(0x00000000e4e25000) deq 0x00000000e4e25e80(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.963609: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-190 [000] d.... 2.963611: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25ea0(0x00000000e4e25000) deq 0x00000000e4e25e80(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.963613: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-190 [000] d.... 2.963615: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25eb0(0x00000000e4e25000) deq 0x00000000e4e25e80(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.963616: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.963634: xhci_handle_event: EVENT: TRB 00000000e4e25ea0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.963638: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.963641: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25eb0(0x00000000e4e25000) deq 0x00000000e4e25eb0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.963643: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.963646: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45562b0(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] ..... 2.963669: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-190 [000] d.... 2.963675: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 002c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-190 [000] d.... 2.963677: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25ec0(0x00000000e4e25000) deq 0x00000000e4e25eb0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.963679: xhci_queue_trb: CTRL: Buffer 0000000000f830a1 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-190 [000] d.... 2.963681: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25ed0(0x00000000e4e25000) deq 0x00000000e4e25eb0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.963682: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-190 [000] d.... 2.963684: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25ee0(0x00000000e4e25000) deq 0x00000000e4e25eb0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.963686: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.963704: xhci_handle_event: EVENT: TRB 00000000e4e25ed0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.963708: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.963711: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25ee0(0x00000000e4e25000) deq 0x00000000e4e25ee0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.963713: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.963716: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45562c0(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] ..... 2.963741: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-190 [000] d.... 2.963745: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-190 [000] d.... 2.963747: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25ef0(0x00000000e4e25000) deq 0x00000000e4e25ee0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.963749: xhci_queue_trb: CTRL: Buffer 00000000e45d35b0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-190 [000] d.... 2.963751: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25f00(0x00000000e4e25000) deq 0x00000000e4e25ee0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.963752: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-190 [000] d.... 2.963755: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25f10(0x00000000e4e25000) deq 0x00000000e4e25ee0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.963756: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.963774: xhci_handle_event: EVENT: TRB 00000000e4e25f00 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.963778: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.963781: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25f10(0x00000000e4e25000) deq 0x00000000e4e25f10(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.963783: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.963786: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45562d0(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] ..... 2.963811: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-190 [000] d.... 2.963817: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0120 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-190 [000] d.... 2.963819: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25f20(0x00000000e4e25000) deq 0x00000000e4e25f10(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.963821: xhci_queue_trb: CTRL: Buffer 0000000000008100 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-190 [000] d.... 2.963823: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25f30(0x00000000e4e25000) deq 0x00000000e4e25f10(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.963824: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-190 [000] d.... 2.963826: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25f40(0x00000000e4e25000) deq 0x00000000e4e25f10(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.963827: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.963870: xhci_handle_event: EVENT: TRB 00000000e4e25f30 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.963874: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.963878: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25f40(0x00000000e4e25000) deq 0x00000000e4e25f40(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.963880: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.963883: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45562e0(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] ..... 2.963913: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-190 [000] d.... 2.963916: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0130 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-190 [000] d.... 2.963918: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25f50(0x00000000e4e25000) deq 0x00000000e4e25f40(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.963920: xhci_queue_trb: CTRL: Buffer 00000000e45d35b0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-190 [000] d.... 2.963922: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25f60(0x00000000e4e25000) deq 0x00000000e4e25f40(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.963923: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-190 [000] d.... 2.963925: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25f70(0x00000000e4e25000) deq 0x00000000e4e25f40(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.963927: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.963945: xhci_handle_event: EVENT: TRB 00000000e4e25f60 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.963949: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.963952: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25f70(0x00000000e4e25000) deq 0x00000000e4e25f70(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.963954: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.963957: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45562f0(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] ..... 2.963986: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-190 [000] d.... 2.963991: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0130 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-190 [000] d.... 2.963994: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25f80(0x00000000e4e25000) deq 0x00000000e4e25f70(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.963995: xhci_queue_trb: CTRL: Buffer 0000000000010001 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-190 [000] d.... 2.963997: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25f90(0x00000000e4e25000) deq 0x00000000e4e25f70(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.963998: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-190 [000] d.... 2.964000: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25fa0(0x00000000e4e25000) deq 0x00000000e4e25f70(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.964011: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.964028: xhci_handle_event: EVENT: TRB 00000000e4e25f90 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.964031: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 2.964036: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e25fa0(0x00000000e4e25000) deq 0x00000000e4e25fa0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.964039: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.964042: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556300(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] ..... 2.964070: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-190 [000] d.... 2.964073: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 010c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-190 [000] d.... 2.964075: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25fb0(0x00000000e4e25000) deq 0x00000000e4e25fa0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.964077: xhci_queue_trb: CTRL: Buffer 0000000040000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-190 [000] d.... 2.964079: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25fc0(0x00000000e4e25000) deq 0x00000000e4e25fa0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.964080: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-190 [000] d.... 2.964082: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25fd0(0x00000000e4e25000) deq 0x00000000e4e25fa0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.964084: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-190 [000] ..... 2.964088: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662780 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-190 [000] d.... 2.964091: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0110 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-190 [000] d.... 2.964096: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e25fe0(0x00000000e4e25000) deq 0x00000000e4e25fa0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.... 2.964098: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-190 [000] d.... 2.964100: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26000(0x00000000e4e26000) deq 0x00000000e4e25fa0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.964102: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-190 [000] d.... 2.964104: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26010(0x00000000e4e26000) deq 0x00000000e4e25fa0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.964105: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-190 [000] d.h.. 2.964110: xhci_handle_event: EVENT: TRB 00000000e4e25fc0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-190 [000] d.h.. 2.964114: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-190 [000] d.h.. 2.964117: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26010(0x00000000e4e26000) deq 0x00000000e4e25fd0(0x00000000e4e25000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.h.. 2.964119: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<task>-190 [000] d.h.. 2.964121: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556310(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.h.. 2.964123: xhci_handle_event: EVENT: TRB 00000000e4e26000 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-190 [000] d.h.. 2.964126: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-190 [000] d.h.. 2.964129: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26010(0x00000000e4e26000) deq 0x00000000e4e26010(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.h.. 2.964131: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662780 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<task>-190 [000] d.h.. 2.964132: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556320(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] ..... 2.964146: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662780 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-190 [000] d.... 2.964151: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-190 [000] d.... 2.964153: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26020(0x00000000e4e26000) deq 0x00000000e4e26010(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.964155: xhci_queue_trb: CTRL: Buffer 0000000000002000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-190 [000] d.... 2.964157: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26030(0x00000000e4e26000) deq 0x00000000e4e26010(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.964158: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-190 [000] d.... 2.964160: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26040(0x00000000e4e26000) deq 0x00000000e4e26010(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.964161: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-190 [000] ..... 2.964169: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-190 [000] d.... 2.964175: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0068 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-190 [000] d.... 2.964178: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26050(0x00000000e4e26000) deq 0x00000000e4e26010(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.964179: xhci_queue_trb: CTRL: Buffer 00000000e45d35b0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-190 [000] d.... 2.964181: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26060(0x00000000e4e26000) deq 0x00000000e4e26010(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.964182: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-190 [000] d.... 2.964185: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26070(0x00000000e4e26000) deq 0x00000000e4e26010(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.964186: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-190 [000] d.h.. 2.964191: xhci_handle_event: EVENT: TRB 00000000e4e26030 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-190 [000] d.h.. 2.964194: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-190 [000] d.h.. 2.964197: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26070(0x00000000e4e26000) deq 0x00000000e4e26040(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.h.. 2.964199: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662780 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<task>-190 [000] d.h.. 2.964202: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556330(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] d.h.. 2.964203: xhci_handle_event: EVENT: TRB 00000000e4e26060 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-190 [000] d.h.. 2.964206: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-190 [000] d.h.. 2.964209: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26070(0x00000000e4e26000) deq 0x00000000e4e26070(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.h.. 2.964210: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-190 [000] d.h.. 2.964212: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556340(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] ..... 2.964286: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-190 [000] d.... 2.964289: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0068 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-190 [000] d.... 2.964291: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26080(0x00000000e4e26000) deq 0x00000000e4e26070(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.964293: xhci_queue_trb: CTRL: Buffer 00000000245db5d0 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-190 [000] d.... 2.964295: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26090(0x00000000e4e26000) deq 0x00000000e4e26070(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.964296: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-190 [000] d.... 2.964298: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e260a0(0x00000000e4e26000) deq 0x00000000e4e26070(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.964299: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.964317: xhci_handle_event: EVENT: TRB 00000000e4e26090 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.964321: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 2.964324: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e260a0(0x00000000e4e26000) deq 0x00000000e4e260a0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 2.964326: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.964329: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556350(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] ..... 2.964354: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-190 [000] d.... 2.964359: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-190 [000] d.... 2.964361: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e260b0(0x00000000e4e26000) deq 0x00000000e4e260a0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.964364: xhci_queue_trb: CTRL: Buffer 0000000000002008 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-190 [000] d.... 2.964366: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e260c0(0x00000000e4e26000) deq 0x00000000e4e260a0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.964367: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-190 [000] d.... 2.964369: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e260d0(0x00000000e4e26000) deq 0x00000000e4e260a0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.964371: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.964387: xhci_handle_event: EVENT: TRB 00000000e4e260c0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.964391: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 2.964394: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e260d0(0x00000000e4e26000) deq 0x00000000e4e260d0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 2.964396: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.964399: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556360(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] ..... 2.964423: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-190 [000] d.... 2.964427: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0010 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-190 [000] d.... 2.964429: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e260e0(0x00000000e4e26000) deq 0x00000000e4e260d0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.964430: xhci_queue_trb: CTRL: Buffer 0000000000000004 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-190 [000] d.... 2.964432: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e260f0(0x00000000e4e26000) deq 0x00000000e4e260d0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.964433: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-190 [000] d.... 2.964436: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26100(0x00000000e4e26000) deq 0x00000000e4e260d0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.964437: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.964455: xhci_handle_event: EVENT: TRB 00000000e4e260f0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.964459: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 2.964462: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26100(0x00000000e4e26000) deq 0x00000000e4e26100(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 2.964464: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.964467: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556370(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] ..... 2.964493: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-190 [000] d.... 2.964496: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-190 [000] d.... 2.964498: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26110(0x00000000e4e26000) deq 0x00000000e4e26100(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.964500: xhci_queue_trb: CTRL: Buffer 000000000000200c length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-190 [000] d.... 2.964502: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26120(0x00000000e4e26000) deq 0x00000000e4e26100(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.964503: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-190 [000] d.... 2.964505: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26130(0x00000000e4e26000) deq 0x00000000e4e26100(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.964507: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.964525: xhci_handle_event: EVENT: TRB 00000000e4e26120 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.964529: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 2.964532: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26130(0x00000000e4e26000) deq 0x00000000e4e26130(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 2.964534: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.964537: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556380(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] ..... 2.964570: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-190 [000] d.... 2.964574: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-190 [000] d.... 2.964576: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26140(0x00000000e4e26000) deq 0x00000000e4e26130(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.964578: xhci_queue_trb: CTRL: Buffer 00000000e45d35b0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-190 [000] d.... 2.964580: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26150(0x00000000e4e26000) deq 0x00000000e4e26130(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.964581: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-190 [000] d.... 2.964583: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26160(0x00000000e4e26000) deq 0x00000000e4e26130(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.964584: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.964601: xhci_handle_event: EVENT: TRB 00000000e4e26150 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.964605: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 2.964608: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26160(0x00000000e4e26000) deq 0x00000000e4e26160(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 2.964610: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.964613: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556390(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] ..... 2.964641: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-190 [000] d.... 2.964644: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-190 [000] d.... 2.964647: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26170(0x00000000e4e26000) deq 0x00000000e4e26160(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.964648: xhci_queue_trb: CTRL: Buffer 0000000000000801 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-190 [000] d.... 2.964650: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26180(0x00000000e4e26000) deq 0x00000000e4e26160(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.964651: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-190 [000] d.... 2.964653: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26190(0x00000000e4e26000) deq 0x00000000e4e26160(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.964654: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.964672: xhci_handle_event: EVENT: TRB 00000000e4e26180 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.964676: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 2.964679: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26190(0x00000000e4e26000) deq 0x00000000e4e26190(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 2.964681: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.964684: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45563a0(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] ..... 2.964712: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-190 [000] d.... 2.964716: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-190 [000] d.... 2.964718: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e261a0(0x00000000e4e26000) deq 0x00000000e4e26190(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.964719: xhci_queue_trb: CTRL: Buffer 00000000e45d35b0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-190 [000] d.... 2.964721: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e261b0(0x00000000e4e26000) deq 0x00000000e4e26190(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.964723: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-190 [000] d.... 2.964725: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e261c0(0x00000000e4e26000) deq 0x00000000e4e26190(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.964726: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.964742: xhci_handle_event: EVENT: TRB 00000000e4e261b0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.964746: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 2.964749: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e261c0(0x00000000e4e26000) deq 0x00000000e4e261c0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 2.964753: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.964756: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45563b0(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] ..... 2.964783: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-190 [000] d.... 2.964787: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-190 [000] d.... 2.964789: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e261d0(0x00000000e4e26000) deq 0x00000000e4e261c0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.964791: xhci_queue_trb: CTRL: Buffer 00000000e45d35b0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-190 [000] d.... 2.964793: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e261e0(0x00000000e4e26000) deq 0x00000000e4e261c0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.964794: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-190 [000] d.... 2.964796: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e261f0(0x00000000e4e26000) deq 0x00000000e4e261c0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.964797: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.964815: xhci_handle_event: EVENT: TRB 00000000e4e261e0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.964819: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 2.964822: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e261f0(0x00000000e4e26000) deq 0x00000000e4e261f0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 2.964824: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.964827: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45563c0(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] ..... 2.964859: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-190 [000] d.... 2.964862: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-190 [000] d.... 2.964865: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26200(0x00000000e4e26000) deq 0x00000000e4e261f0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.964866: xhci_queue_trb: CTRL: Buffer 00000000e45d35b0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-190 [000] d.... 2.964868: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26210(0x00000000e4e26000) deq 0x00000000e4e261f0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.964869: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-190 [000] d.... 2.964871: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26220(0x00000000e4e26000) deq 0x00000000e4e261f0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.964873: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.964891: xhci_handle_event: EVENT: TRB 00000000e4e26210 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.964895: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 2.964898: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26220(0x00000000e4e26000) deq 0x00000000e4e26220(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 2.964900: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.964904: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45563d0(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] ..... 2.964932: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-190 [000] d.... 2.964937: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-190 [000] d.... 2.964939: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26230(0x00000000e4e26000) deq 0x00000000e4e26220(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.964941: xhci_queue_trb: CTRL: Buffer 0000000000003000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-190 [000] d.... 2.964943: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26240(0x00000000e4e26000) deq 0x00000000e4e26220(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.964944: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-190 [000] d.... 2.964946: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26250(0x00000000e4e26000) deq 0x00000000e4e26220(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.964948: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.965029: xhci_handle_event: EVENT: TRB 00000000e4e26240 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.965033: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 2.965036: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26250(0x00000000e4e26000) deq 0x00000000e4e26250(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 2.965039: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.965042: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45563e0(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] ..... 2.965069: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-190 [000] d.... 2.965072: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-190 [000] d.... 2.965075: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26260(0x00000000e4e26000) deq 0x00000000e4e26250(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.965076: xhci_queue_trb: CTRL: Buffer 0000000000000803 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-190 [000] d.... 2.965078: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26270(0x00000000e4e26000) deq 0x00000000e4e26250(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.965080: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-190 [000] d.... 2.965082: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26280(0x00000000e4e26000) deq 0x00000000e4e26250(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.965083: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.965101: xhci_handle_event: EVENT: TRB 00000000e4e26270 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.965104: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 2.965108: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26280(0x00000000e4e26000) deq 0x00000000e4e26280(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 2.965110: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.965113: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45563f0(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] ..... 2.965139: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-190 [000] d.... 2.965142: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-190 [000] d.... 2.965144: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26290(0x00000000e4e26000) deq 0x00000000e4e26280(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.965146: xhci_queue_trb: CTRL: Buffer 00000000e45d35b0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-190 [000] d.... 2.965148: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e262a0(0x00000000e4e26000) deq 0x00000000e4e26280(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.965149: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-190 [000] d.... 2.965151: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e262b0(0x00000000e4e26000) deq 0x00000000e4e26280(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] d.... 2.965152: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.965169: xhci_handle_event: EVENT: TRB 00000000e4e262a0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.965172: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 2.965176: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e262b0(0x00000000e4e26000) deq 0x00000000e4e262b0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 2.965178: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.965181: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556400(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] .N... 2.965221: xhci_urb_enqueue: 1-1.2.1 ep3in-intr: urb ffffff8024d46480 pipe 1073841280 slot 3 length 0/16 sgs 0/0 stream 0 flags 00010300
<task>-190 [000] dN... 2.965228: xhci_queue_trb: INTR: Buffer 00000000e4fc4d50 length 16 TD size 0 intr 0 type 'Normal' flags b:i:I:c:s:I:e:c
<task>-190 [000] dN... 2.965230: xhci_inc_enq: INTR ffffff8024e47200: enq 0x00000000e4d2b010(0x00000000e4d2b000) deq 0x00000000e4d2b000(0x00000000e4d2b000) segs 2 stream 0 bounce 16 cycle 1
<task>-190 [000] dN... 2.965232: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep3in
<task>-190 [000] bN... 2.965273: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-190 [000] DN... 2.965276: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 010c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-190 [000] DN... 2.965278: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e262c0(0x00000000e4e26000) deq 0x00000000e4e262b0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] DN... 2.965279: xhci_queue_trb: CTRL: Buffer 0000000040000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-190 [000] DN... 2.965281: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e262d0(0x00000000e4e26000) deq 0x00000000e4e262b0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] DN... 2.965283: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-190 [000] DN... 2.965285: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e262e0(0x00000000e4e26000) deq 0x00000000e4e262b0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] DN... 2.965286: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-190 [000] bN... 2.965290: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662780 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-190 [000] DN... 2.965293: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0110 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-190 [000] DN... 2.965299: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e262f0(0x00000000e4e26000) deq 0x00000000e4e262b0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] DN... 2.965300: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-190 [000] DN... 2.965302: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26300(0x00000000e4e26000) deq 0x00000000e4e262b0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] DN... 2.965304: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-190 [000] DN... 2.965306: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26310(0x00000000e4e26000) deq 0x00000000e4e262b0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] DN... 2.965307: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-190 [000] DNh.. 2.965312: xhci_handle_event: EVENT: TRB 00000000e4e262d0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-190 [000] DNh.. 2.965316: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-190 [000] DNh.. 2.965319: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26310(0x00000000e4e26000) deq 0x00000000e4e262e0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] DNh.. 2.965321: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<task>-190 [000] DNh.. 2.965324: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556410(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] DNh.. 2.965325: xhci_handle_event: EVENT: TRB 00000000e4e26300 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-190 [000] DNh.. 2.965328: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-190 [000] DNh.. 2.965331: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26310(0x00000000e4e26000) deq 0x00000000e4e26310(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] DNh.. 2.965333: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662780 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<task>-190 [000] DNh.. 2.965334: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556420(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] bN... 2.965342: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80256626c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-190 [000] DN... 2.965345: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-190 [000] DN... 2.965347: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26320(0x00000000e4e26000) deq 0x00000000e4e26310(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] DN... 2.965348: xhci_queue_trb: CTRL: Buffer 000000000000200c length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-190 [000] DN... 2.965351: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26330(0x00000000e4e26000) deq 0x00000000e4e26310(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] DN... 2.965352: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-190 [000] DN... 2.965354: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26340(0x00000000e4e26000) deq 0x00000000e4e26310(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] DN... 2.965355: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-190 [000] dNH1. 2.965372: xhci_handle_event: EVENT: TRB 00000000e4e26330 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-190 [000] dNH1. 2.965376: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-190 [000] dNH1. 2.965379: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26340(0x00000000e4e26000) deq 0x00000000e4e26340(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] dNH1. 2.965381: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80256626c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<task>-190 [000] dNH1. 2.965383: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556430(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] bN... 2.965538: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662780 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-190 [000] DN... 2.965541: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 010c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-190 [000] DN... 2.965544: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26350(0x00000000e4e26000) deq 0x00000000e4e26340(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] DN... 2.965545: xhci_queue_trb: CTRL: Buffer 0000000040000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-190 [000] DN... 2.965547: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26360(0x00000000e4e26000) deq 0x00000000e4e26340(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] DN... 2.965549: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-190 [000] DN... 2.965550: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26370(0x00000000e4e26000) deq 0x00000000e4e26340(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] DN... 2.965552: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-190 [000] bN... 2.965556: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-190 [000] DN... 2.965559: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0110 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-190 [000] DN... 2.965561: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26380(0x00000000e4e26000) deq 0x00000000e4e26340(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] DN... 2.965567: xhci_queue_trb: CTRL: Buffer 0000000080000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-190 [000] DN... 2.965569: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26390(0x00000000e4e26000) deq 0x00000000e4e26340(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] DN... 2.965570: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-190 [000] DN... 2.965572: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e263a0(0x00000000e4e26000) deq 0x00000000e4e26340(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] DN... 2.965573: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-190 [000] DNh.. 2.965579: xhci_handle_event: EVENT: TRB 00000000e4e26360 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-190 [000] DNh.. 2.965582: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-190 [000] DNh.. 2.965585: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e263a0(0x00000000e4e26000) deq 0x00000000e4e26370(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] DNh.. 2.965587: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662780 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<task>-190 [000] DNh.. 2.965590: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556440(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] DNh.. 2.965592: xhci_handle_event: EVENT: TRB 00000000e4e26390 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-190 [000] DNh.. 2.965595: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-190 [000] DNh.. 2.965597: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e263a0(0x00000000e4e26000) deq 0x00000000e4e263a0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] DNh.. 2.965599: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662840 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<task>-190 [000] DNh.. 2.965600: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556450(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [000] bN... 2.965608: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-190 [000] DN... 2.965611: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-190 [000] DN... 2.965613: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e263b0(0x00000000e4e26000) deq 0x00000000e4e263a0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] DN... 2.965614: xhci_queue_trb: CTRL: Buffer 000000000000200c length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-190 [000] DN... 2.965616: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e263c0(0x00000000e4e26000) deq 0x00000000e4e263a0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] DN... 2.965617: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-190 [000] DN... 2.965619: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e263d0(0x00000000e4e26000) deq 0x00000000e4e263a0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] DN... 2.965620: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-190 [000] dNh.. 2.965638: xhci_handle_event: EVENT: TRB 00000000e4e263c0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-190 [000] dNh.. 2.965641: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-190 [000] dNh.. 2.965644: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e263d0(0x00000000e4e26000) deq 0x00000000e4e263d0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [000] dNh.. 2.965650: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<task>-190 [000] dNh.. 2.965652: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556460(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-66 [000] ..... 2.965724: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-66 [000] d.... 2.965728: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-66 [000] d.... 2.965730: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e263e0(0x00000000e4e26000) deq 0x00000000e4e263d0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.965732: xhci_queue_trb: CTRL: Buffer 00000000e45d35b0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-66 [000] d.... 2.965734: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e263f0(0x00000000e4e26000) deq 0x00000000e4e263d0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.965736: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-66 [000] d.... 2.965738: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26400(0x00000000e4e26000) deq 0x00000000e4e263d0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.965739: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-14 [000] d.h.. 2.965760: xhci_handle_event: EVENT: TRB 00000000e4e263f0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-14 [000] d.h.. 2.965764: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-14 [000] d.h.. 2.965767: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26400(0x00000000e4e26000) deq 0x00000000e4e26400(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-14 [000] d.h.. 2.965770: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-14 [000] d.h.. 2.965772: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556470(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-66 [000] ..... 2.965801: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-66 [000] d.... 2.965805: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-66 [000] d.... 2.965807: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26410(0x00000000e4e26000) deq 0x00000000e4e26400(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.965809: xhci_queue_trb: CTRL: Buffer 0000000000000901 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-66 [000] d.... 2.965811: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26420(0x00000000e4e26000) deq 0x00000000e4e26400(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.965812: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-66 [000] d.... 2.965814: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26430(0x00000000e4e26000) deq 0x00000000e4e26400(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.965815: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.965834: xhci_handle_event: EVENT: TRB 00000000e4e26420 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.965838: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 2.965846: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26430(0x00000000e4e26000) deq 0x00000000e4e26430(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 2.965848: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.965851: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556480(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-66 [000] ..... 2.966190: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-66 [000] d.... 2.966197: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-66 [000] d.... 2.966200: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26440(0x00000000e4e26000) deq 0x00000000e4e26430(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.966201: xhci_queue_trb: CTRL: Buffer 00000000e45d35b0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-66 [000] d.... 2.966203: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26450(0x00000000e4e26000) deq 0x00000000e4e26430(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.966204: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-66 [000] d.... 2.966206: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26460(0x00000000e4e26000) deq 0x00000000e4e26430(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.966208: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-164 [000] d.h.. 2.966233: xhci_handle_event: EVENT: TRB 00000000e4e26450 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-164 [000] d.h.. 2.966238: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-164 [000] d.h.. 2.966241: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26460(0x00000000e4e26000) deq 0x00000000e4e26460(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-164 [000] d.h.. 2.966244: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-164 [000] d.h.. 2.966247: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556490(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-66 [000] ..... 2.971462: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-66 [000] d.... 2.971479: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-66 [000] d.... 2.971482: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26470(0x00000000e4e26000) deq 0x00000000e4e26460(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.971484: xhci_queue_trb: CTRL: Buffer 00000000e45d35b0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-66 [000] d.... 2.971486: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26480(0x00000000e4e26000) deq 0x00000000e4e26460(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.971487: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-66 [000] d.... 2.971489: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26490(0x00000000e4e26000) deq 0x00000000e4e26460(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.971492: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-52 [000] d.h.. 2.971526: xhci_handle_event: EVENT: TRB 00000000e4e26480 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-52 [000] d.h.. 2.971533: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-52 [000] d.h.. 2.971538: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26490(0x00000000e4e26000) deq 0x00000000e4e26490(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-52 [000] d.h.. 2.971543: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-52 [000] d.h.. 2.971550: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45564a0(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-66 [000] ..... 2.972782: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-66 [000] d.... 2.972797: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-66 [000] d.... 2.972801: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e264a0(0x00000000e4e26000) deq 0x00000000e4e26490(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.972804: xhci_queue_trb: CTRL: Buffer 00000000e45d35b0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-66 [000] d.... 2.972806: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e264b0(0x00000000e4e26000) deq 0x00000000e4e26490(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.972807: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-66 [000] d.... 2.972809: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e264c0(0x00000000e4e26000) deq 0x00000000e4e26490(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.972812: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.972850: xhci_handle_event: EVENT: TRB 00000000e4e264b0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.972857: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 2.972862: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e264c0(0x00000000e4e26000) deq 0x00000000e4e264c0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 2.972866: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.972877: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45564b0(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-66 [000] ..... 2.972924: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-66 [000] d.... 2.972928: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-66 [000] d.... 2.972933: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e264d0(0x00000000e4e26000) deq 0x00000000e4e264c0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.972935: xhci_queue_trb: CTRL: Buffer 0000000000000841 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-66 [000] d.... 2.972937: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e264e0(0x00000000e4e26000) deq 0x00000000e4e264c0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.972938: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-66 [000] d.... 2.972940: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e264f0(0x00000000e4e26000) deq 0x00000000e4e264c0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.972941: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.972958: xhci_handle_event: EVENT: TRB 00000000e4e264e0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.972962: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 2.972965: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e264f0(0x00000000e4e26000) deq 0x00000000e4e264f0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 2.972967: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.972970: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45564c0(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-66 [000] ..... 2.972999: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-66 [000] d.... 2.973002: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-66 [000] d.... 2.973004: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26500(0x00000000e4e26000) deq 0x00000000e4e264f0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.973006: xhci_queue_trb: CTRL: Buffer 00000000e45d35b0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-66 [000] d.... 2.973008: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26510(0x00000000e4e26000) deq 0x00000000e4e264f0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.973009: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-66 [000] d.... 2.973011: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26520(0x00000000e4e26000) deq 0x00000000e4e264f0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.973013: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.973029: xhci_handle_event: EVENT: TRB 00000000e4e26510 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.973033: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 2.973036: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26520(0x00000000e4e26000) deq 0x00000000e4e26520(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 2.973038: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.973041: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45564d0(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-66 [000] ..... 2.973068: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-66 [000] d.... 2.973071: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-66 [000] d.... 2.973073: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26530(0x00000000e4e26000) deq 0x00000000e4e26520(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.973075: xhci_queue_trb: CTRL: Buffer 00000000e45d35b0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-66 [000] d.... 2.973077: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26540(0x00000000e4e26000) deq 0x00000000e4e26520(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.973078: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-66 [000] d.... 2.973081: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26550(0x00000000e4e26000) deq 0x00000000e4e26520(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.973082: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.973099: xhci_handle_event: EVENT: TRB 00000000e4e26540 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.973102: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 2.973105: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26550(0x00000000e4e26000) deq 0x00000000e4e26550(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 2.973107: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.973110: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45564e0(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-66 [000] ..... 2.973139: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-66 [000] d.... 2.973142: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-66 [000] d.... 2.973145: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26560(0x00000000e4e26000) deq 0x00000000e4e26550(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.973146: xhci_queue_trb: CTRL: Buffer 00000000e45d35b0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-66 [000] d.... 2.973148: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26570(0x00000000e4e26000) deq 0x00000000e4e26550(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.973150: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-66 [000] d.... 2.973152: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26580(0x00000000e4e26000) deq 0x00000000e4e26550(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.973153: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.973169: xhci_handle_event: EVENT: TRB 00000000e4e26570 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.973173: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 2.973176: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26580(0x00000000e4e26000) deq 0x00000000e4e26580(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 2.973178: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.973181: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45564f0(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-66 [000] ..... 2.973207: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-66 [000] d.... 2.973211: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-66 [000] d.... 2.973213: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26590(0x00000000e4e26000) deq 0x00000000e4e26580(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.973214: xhci_queue_trb: CTRL: Buffer 0000000000000801 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-66 [000] d.... 2.973216: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e265a0(0x00000000e4e26000) deq 0x00000000e4e26580(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.973218: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-66 [000] d.... 2.973220: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e265b0(0x00000000e4e26000) deq 0x00000000e4e26580(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.973221: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.973237: xhci_handle_event: EVENT: TRB 00000000e4e265a0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.973241: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 2.973244: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e265b0(0x00000000e4e26000) deq 0x00000000e4e265b0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 2.973246: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.973249: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556500(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-66 [000] ..... 2.973274: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-66 [000] d.... 2.973278: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-66 [000] d.... 2.973280: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e265c0(0x00000000e4e26000) deq 0x00000000e4e265b0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.973281: xhci_queue_trb: CTRL: Buffer 00000000e45d35b0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-66 [000] d.... 2.973283: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e265d0(0x00000000e4e26000) deq 0x00000000e4e265b0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.973284: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-66 [000] d.... 2.973286: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e265e0(0x00000000e4e26000) deq 0x00000000e4e265b0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.973288: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.973306: xhci_handle_event: EVENT: TRB 00000000e4e265d0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.973310: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 2.973315: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e265e0(0x00000000e4e26000) deq 0x00000000e4e265e0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 2.973317: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.973320: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556510(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-66 [000] ..... 2.973346: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-66 [000] d.... 2.973350: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-66 [000] d.... 2.973352: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e265f0(0x00000000e4e26000) deq 0x00000000e4e265e0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.973353: xhci_queue_trb: CTRL: Buffer 00000000e45d35b0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-66 [000] d.... 2.973355: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26600(0x00000000e4e26000) deq 0x00000000e4e265e0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.973357: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-66 [000] d.... 2.973359: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26610(0x00000000e4e26000) deq 0x00000000e4e265e0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.973360: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.973377: xhci_handle_event: EVENT: TRB 00000000e4e26600 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.973380: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 2.973383: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26610(0x00000000e4e26000) deq 0x00000000e4e26610(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 2.973385: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.973388: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556520(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-66 [000] ..... 2.973419: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-66 [000] d.... 2.973423: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-66 [000] d.... 2.973425: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26620(0x00000000e4e26000) deq 0x00000000e4e26610(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.973426: xhci_queue_trb: CTRL: Buffer 00000000e45d35b0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-66 [000] d.... 2.973428: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26630(0x00000000e4e26000) deq 0x00000000e4e26610(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.973429: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-66 [000] d.... 2.973432: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26640(0x00000000e4e26000) deq 0x00000000e4e26610(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.973433: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.973450: xhci_handle_event: EVENT: TRB 00000000e4e26630 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.973454: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 2.973457: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26640(0x00000000e4e26000) deq 0x00000000e4e26640(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 2.973459: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.973462: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556530(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-66 [000] ..... 2.973488: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-66 [000] d.... 2.973491: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-66 [000] d.... 2.973494: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26650(0x00000000e4e26000) deq 0x00000000e4e26640(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.973495: xhci_queue_trb: CTRL: Buffer 0000000000000801 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-66 [000] d.... 2.973497: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26660(0x00000000e4e26000) deq 0x00000000e4e26640(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.973499: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-66 [000] d.... 2.973501: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26670(0x00000000e4e26000) deq 0x00000000e4e26640(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.973502: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.973518: xhci_handle_event: EVENT: TRB 00000000e4e26660 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.973522: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 2.973525: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26670(0x00000000e4e26000) deq 0x00000000e4e26670(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 2.973527: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.973530: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556540(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-66 [000] ..... 2.973555: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-66 [000] d.... 2.973559: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-66 [000] d.... 2.973561: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26680(0x00000000e4e26000) deq 0x00000000e4e26670(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.973563: xhci_queue_trb: CTRL: Buffer 00000000e45d35b0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-66 [000] d.... 2.973565: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26690(0x00000000e4e26000) deq 0x00000000e4e26670(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.973566: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-66 [000] d.... 2.973568: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e266a0(0x00000000e4e26000) deq 0x00000000e4e26670(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.973569: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.973585: xhci_handle_event: EVENT: TRB 00000000e4e26690 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.973589: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 2.973592: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e266a0(0x00000000e4e26000) deq 0x00000000e4e266a0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 2.973594: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.973597: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556550(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-66 [000] ..... 2.973624: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-66 [000] d.... 2.973628: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-66 [000] d.... 2.973630: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e266b0(0x00000000e4e26000) deq 0x00000000e4e266a0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.973631: xhci_queue_trb: CTRL: Buffer 00000000e45d35b0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-66 [000] d.... 2.973633: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e266c0(0x00000000e4e26000) deq 0x00000000e4e266a0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.973634: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-66 [000] d.... 2.973636: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e266d0(0x00000000e4e26000) deq 0x00000000e4e266a0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.973638: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.973656: xhci_handle_event: EVENT: TRB 00000000e4e266c0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.973659: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 2.973662: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e266d0(0x00000000e4e26000) deq 0x00000000e4e266d0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 2.973664: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.973667: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556560(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-66 [000] ..... 2.973697: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-66 [000] d.... 2.973700: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-66 [000] d.... 2.973702: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e266e0(0x00000000e4e26000) deq 0x00000000e4e266d0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.973705: xhci_queue_trb: CTRL: Buffer 00000000e45d35b0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-66 [000] d.... 2.973707: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e266f0(0x00000000e4e26000) deq 0x00000000e4e266d0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.973708: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-66 [000] d.... 2.973710: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26700(0x00000000e4e26000) deq 0x00000000e4e266d0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.973711: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.973728: xhci_handle_event: EVENT: TRB 00000000e4e266f0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.973731: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 2.973735: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26700(0x00000000e4e26000) deq 0x00000000e4e26700(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 2.973737: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.973740: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556570(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-66 [000] ..... 2.973764: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-66 [000] d.... 2.973767: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-66 [000] d.... 2.973769: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26710(0x00000000e4e26000) deq 0x00000000e4e26700(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.973771: xhci_queue_trb: CTRL: Buffer 0000000000000841 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-66 [000] d.... 2.973773: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26720(0x00000000e4e26000) deq 0x00000000e4e26700(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.973774: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-66 [000] d.... 2.973776: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26730(0x00000000e4e26000) deq 0x00000000e4e26700(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.973777: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.973795: xhci_handle_event: EVENT: TRB 00000000e4e26720 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.973798: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 2.973802: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26730(0x00000000e4e26000) deq 0x00000000e4e26730(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 2.973804: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.973807: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556580(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-66 [000] ..... 2.973832: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-66 [000] d.... 2.973836: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-66 [000] d.... 2.973838: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26740(0x00000000e4e26000) deq 0x00000000e4e26730(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.973839: xhci_queue_trb: CTRL: Buffer 00000000e45d35b0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-66 [000] d.... 2.973936: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26750(0x00000000e4e26000) deq 0x00000000e4e26730(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.973938: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-66 [000] d.... 2.973940: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26760(0x00000000e4e26000) deq 0x00000000e4e26730(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.973942: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-66 [000] d.H.. 2.973976: xhci_handle_event: EVENT: TRB 00000000e4e26750 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-66 [000] d.H.. 2.973980: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-66 [000] d.H.. 2.973984: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26760(0x00000000e4e26000) deq 0x00000000e4e26760(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.H.. 2.973987: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-66 [000] d.H.. 2.973990: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556590(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-66 [000] ..... 2.974015: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-66 [000] d.... 2.974018: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-66 [000] d.... 2.974020: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26770(0x00000000e4e26000) deq 0x00000000e4e26760(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.974022: xhci_queue_trb: CTRL: Buffer 00000000e45d35b0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-66 [000] d.... 2.974024: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26780(0x00000000e4e26000) deq 0x00000000e4e26760(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.974025: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-66 [000] d.... 2.974027: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26790(0x00000000e4e26000) deq 0x00000000e4e26760(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.974028: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.974048: xhci_handle_event: EVENT: TRB 00000000e4e26780 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.974052: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 2.974055: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26790(0x00000000e4e26000) deq 0x00000000e4e26790(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 2.974057: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.974060: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45565a0(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-66 [000] ..... 2.974089: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-66 [000] d.... 2.974093: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-66 [000] d.... 2.974095: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e267a0(0x00000000e4e26000) deq 0x00000000e4e26790(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.974097: xhci_queue_trb: CTRL: Buffer 00000000e45d35b0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-66 [000] d.... 2.974099: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e267b0(0x00000000e4e26000) deq 0x00000000e4e26790(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.974100: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-66 [000] d.... 2.974102: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e267c0(0x00000000e4e26000) deq 0x00000000e4e26790(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.974103: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.974120: xhci_handle_event: EVENT: TRB 00000000e4e267b0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.974123: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 2.974127: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e267c0(0x00000000e4e26000) deq 0x00000000e4e267c0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 2.974129: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.974132: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45565b0(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-66 [000] ..... 2.974156: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-66 [000] d.... 2.974159: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-66 [000] d.... 2.974161: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e267d0(0x00000000e4e26000) deq 0x00000000e4e267c0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.974163: xhci_queue_trb: CTRL: Buffer 0000000000000841 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-66 [000] d.... 2.974165: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e267e0(0x00000000e4e26000) deq 0x00000000e4e267c0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.974166: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-66 [000] d.... 2.974168: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e267f0(0x00000000e4e26000) deq 0x00000000e4e267c0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.974170: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.974188: xhci_handle_event: EVENT: TRB 00000000e4e267e0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.974192: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 2.974195: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e267f0(0x00000000e4e26000) deq 0x00000000e4e267f0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 2.974199: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.974202: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45565c0(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-66 [000] ..... 2.974227: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-66 [000] d.... 2.974231: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-66 [000] d.... 2.974233: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26800(0x00000000e4e26000) deq 0x00000000e4e267f0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.974234: xhci_queue_trb: CTRL: Buffer 00000000e45d35b0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-66 [000] d.... 2.974237: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26810(0x00000000e4e26000) deq 0x00000000e4e267f0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.974238: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-66 [000] d.... 2.974240: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26820(0x00000000e4e26000) deq 0x00000000e4e267f0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.974241: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.974259: xhci_handle_event: EVENT: TRB 00000000e4e26810 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.974263: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 2.974266: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26820(0x00000000e4e26000) deq 0x00000000e4e26820(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 2.974268: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.974271: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45565d0(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-66 [000] ..... 2.974297: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-66 [000] d.... 2.974301: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-66 [000] d.... 2.974303: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26830(0x00000000e4e26000) deq 0x00000000e4e26820(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.974305: xhci_queue_trb: CTRL: Buffer 00000000e45d35b0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-66 [000] d.... 2.974307: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26840(0x00000000e4e26000) deq 0x00000000e4e26820(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.974308: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-66 [000] d.... 2.974310: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26850(0x00000000e4e26000) deq 0x00000000e4e26820(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.974311: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.974328: xhci_handle_event: EVENT: TRB 00000000e4e26840 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.974332: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 2.974335: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26850(0x00000000e4e26000) deq 0x00000000e4e26850(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 2.974337: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.974340: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45565e0(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-66 [000] ..... 2.974421: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-66 [000] d.... 2.974424: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-66 [000] d.... 2.974427: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26860(0x00000000e4e26000) deq 0x00000000e4e26850(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.974428: xhci_queue_trb: CTRL: Buffer 000000000080200c length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-66 [000] d.... 2.974430: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26870(0x00000000e4e26000) deq 0x00000000e4e26850(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.974431: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-66 [000] d.... 2.974434: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26880(0x00000000e4e26000) deq 0x00000000e4e26850(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.974435: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.974452: xhci_handle_event: EVENT: TRB 00000000e4e26870 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.974456: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 2.974459: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26880(0x00000000e4e26000) deq 0x00000000e4e26880(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 2.974461: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.974464: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e45565f0(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-66 [000] ..... 2.974489: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-66 [000] d.... 2.974493: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 002c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-66 [000] d.... 2.974495: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26890(0x00000000e4e26000) deq 0x00000000e4e26880(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.974496: xhci_queue_trb: CTRL: Buffer 00000000e45d35b0 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-66 [000] d.... 2.974498: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e268a0(0x00000000e4e26000) deq 0x00000000e4e26880(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.974500: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-66 [000] d.... 2.974502: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e268b0(0x00000000e4e26000) deq 0x00000000e4e26880(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.974503: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.974520: xhci_handle_event: EVENT: TRB 00000000e4e268a0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.974523: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 2.974526: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e268b0(0x00000000e4e26000) deq 0x00000000e4e268b0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 2.974528: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 2.974531: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556600(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-66 [000] ..... 2.974555: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-66 [000] d.... 2.974559: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 011c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-66 [000] d.... 2.974561: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e268c0(0x00000000e4e26000) deq 0x00000000e4e268b0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.974562: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-66 [000] d.... 2.974564: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e268d0(0x00000000e4e26000) deq 0x00000000e4e268b0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.974566: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-66 [000] d.... 2.974567: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e268e0(0x00000000e4e26000) deq 0x00000000e4e268b0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.974569: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.974585: xhci_handle_event: EVENT: TRB 00000000e4e268d0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.974589: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 2.974591: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e268e0(0x00000000e4e26000) deq 0x00000000e4e268e0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 2.974594: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.974596: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556610(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-66 [000] ..... 2.974619: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-66 [000] d.... 2.974623: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 002c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-66 [000] d.... 2.974625: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e268f0(0x00000000e4e26000) deq 0x00000000e4e268e0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.974626: xhci_queue_trb: CTRL: Buffer 0000000000f830af length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-66 [000] d.... 2.974630: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26900(0x00000000e4e26000) deq 0x00000000e4e268e0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.974631: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-66 [000] d.... 2.974633: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26910(0x00000000e4e26000) deq 0x00000000e4e268e0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-66 [000] d.... 2.974634: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.974650: xhci_handle_event: EVENT: TRB 00000000e4e26900 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.974654: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 2.974657: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26910(0x00000000e4e26000) deq 0x00000000e4e26910(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 2.974659: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025662600 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 2.974662: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556620(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<task>-190 [001] b.... 2.974866: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e17c00 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-190 [001] D.... 2.974872: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 010c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-190 [001] D.... 2.974874: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26920(0x00000000e4e26000) deq 0x00000000e4e26910(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [001] D.... 2.974876: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-190 [001] D.... 2.974878: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26930(0x00000000e4e26000) deq 0x00000000e4e26910(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [001] D.... 2.974879: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-190 [001] D.... 2.974881: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26940(0x00000000e4e26000) deq 0x00000000e4e26910(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [001] D.... 2.974883: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-190 [001] b.... 2.974889: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e17b40 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-190 [001] D.... 2.974898: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0110 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-190 [001] D.... 2.974900: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26950(0x00000000e4e26000) deq 0x00000000e4e26910(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [001] D.... 2.974902: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-190 [001] D.... 2.974904: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26960(0x00000000e4e26000) deq 0x00000000e4e26910(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [001] D.... 2.974905: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-190 [001] D.... 2.974907: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26970(0x00000000e4e26000) deq 0x00000000e4e26910(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [001] D.... 2.974908: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-190 [001] b.... 2.974913: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e17a80 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-190 [001] D.... 2.974916: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-190 [001] D.... 2.974918: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26980(0x00000000e4e26000) deq 0x00000000e4e26910(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [001] D.... 2.974919: xhci_queue_trb: CTRL: Buffer 000000000088000c length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-190 [001] D.... 2.974921: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26990(0x00000000e4e26000) deq 0x00000000e4e26910(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [001] D.... 2.974922: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-190 [001] D.... 2.974924: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e269a0(0x00000000e4e26000) deq 0x00000000e4e26910(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [001] D.... 2.974925: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-190 [001] b.... 2.975218: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e179c0 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-190 [001] D.... 2.975222: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 010c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-190 [001] D.... 2.975224: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e269b0(0x00000000e4e26000) deq 0x00000000e4e26910(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [001] D.... 2.975226: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-190 [001] D.... 2.975228: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e269c0(0x00000000e4e26000) deq 0x00000000e4e26910(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [001] D.... 2.975229: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-190 [001] D.... 2.975231: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e269d0(0x00000000e4e26000) deq 0x00000000e4e26910(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [001] D.... 2.975233: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-190 [001] b.... 2.975237: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e17900 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-190 [001] D.... 2.975240: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0110 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-190 [001] D.... 2.975242: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e269e0(0x00000000e4e26000) deq 0x00000000e4e26910(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [001] D.... 2.975243: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-190 [001] D.... 2.975246: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e269f0(0x00000000e4e26000) deq 0x00000000e4e26910(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [001] D.... 2.975249: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-190 [001] D.... 2.975251: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26a00(0x00000000e4e26000) deq 0x00000000e4e26910(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [001] D.... 2.975252: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-190 [001] b.... 2.975256: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024e17840 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-190 [001] D.... 2.975259: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-190 [001] D.... 2.975261: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26a10(0x00000000e4e26000) deq 0x00000000e4e26910(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [001] D.... 2.975263: xhci_queue_trb: CTRL: Buffer 000000000084000c length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-190 [001] D.... 2.975265: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26a20(0x00000000e4e26000) deq 0x00000000e4e26910(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [001] D.... 2.975266: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-190 [001] D.... 2.975268: xhci_inc_enq: CTRL ffffff8024e47080: enq 0x00000000e4e26a30(0x00000000e4e26000) deq 0x00000000e4e26910(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<task>-190 [001] D.... 2.975269: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 2.975635: xhci_handle_event: EVENT: TRB 00000000e4e26930 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.975643: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 2.975648: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26a30(0x00000000e4e26000) deq 0x00000000e4e26940(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 2.975652: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e17c00 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<idle>-0 [000] d.h.. 2.975659: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556630(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.975660: xhci_handle_event: EVENT: TRB 00000000e4e26960 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.975663: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 2.975666: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26a30(0x00000000e4e26000) deq 0x00000000e4e26970(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 2.975668: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e17b40 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<idle>-0 [000] d.h.. 2.975669: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556640(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.975671: xhci_handle_event: EVENT: TRB 00000000e4e26990 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.975674: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 2.975677: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26a30(0x00000000e4e26000) deq 0x00000000e4e269a0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 2.975678: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e17a80 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<idle>-0 [000] d.h.. 2.975680: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556650(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.975681: xhci_handle_event: EVENT: TRB 00000000e4e269c0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.975684: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 2.975687: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26a30(0x00000000e4e26000) deq 0x00000000e4e269d0(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 2.975689: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e179c0 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<idle>-0 [000] d.h.. 2.975690: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556660(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.975691: xhci_handle_event: EVENT: TRB 00000000e4e269f0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.975694: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 2.975697: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26a30(0x00000000e4e26000) deq 0x00000000e4e26a00(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 2.975699: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e17900 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<idle>-0 [000] d.h.. 2.975700: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556670(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 2.975701: xhci_handle_event: EVENT: TRB 00000000e4e26a20 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 2.975704: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 2.975707: xhci_inc_deq: CTRL ffffff8024e47080: enq 0x00000000e4e26a30(0x00000000e4e26000) deq 0x00000000e4e26a30(0x00000000e4e26000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 2.975709: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024e17840 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<idle>-0 [000] d.h.. 2.975710: xhci_inc_deq: EVENT ffffff8022542800: enq 0x00000000e4557000(0x00000000e4557000) deq 0x00000000e4556680(0x00000000e4556000) segs 2 stream 0 bounce 0 cycle 1
[-- Attachment #4: xhci-trace-hackfix --]
[-- Type: text/plain, Size: 771015 bytes --]
# tracer: nop
#
# entries-in-buffer/entries-written: 4335/4335 #P:2
#
# _-----=> irqs-off/BH-disabled
# / _----=> need-resched
# | / _---=> hardirq/softirq
# || / _--=> preempt-depth
# ||| / _-=> migrate-disable
# |||| / delay
# TASK-PID CPU# ||||| TIMESTAMP FUNCTION
# | | | ||||| | |
<task>-72 [001] d.... 2.750171: xhci_get_port_status: port 2-0: 0x000002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake:
<task>-76 [001] d.... 2.750235: xhci_get_port_status: port 1-0: 0x000006e1 Powered Connected Disabled Link:Polling PortSpeed:1 Change: Wake:
<task>-76 [001] d.... 2.750326: xhci_queue_trb: CMD: Enable Slot Command: flags C
<task>-76 [001] d.... 2.750330: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e4759010(0x00000000e4759000) deq 0x00000000e4759000(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 2.750334: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-74 [000] d.h.. 2.750384: xhci_handle_event: EVENT: TRB 00000000e4759000 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
<task>-74 [000] d.h.. 2.750389: xhci_handle_command: CMD: Enable Slot Command: flags C
<task>-74 [000] d.h.. 2.750411: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e4759010(0x00000000e4759000) deq 0x00000000e4759010(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-74 [000] d.h.. 2.750413: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758020(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] ..... 2.750539: xhci_ring_alloc: CTRL ffffff8024780880: enq 0x00000000e2bf6000(0x00000000e2bf6000) deq 0x00000000e2bf6000(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] ..... 2.750542: xhci_alloc_virt_device: vdev ffffff8024f88000 ctx e2bc8000 | e4664000 num 0 state 0 speed 0 port 0 level 0 slot 0
<task>-76 [001] ..... 2.750546: xhci_alloc_dev: RS 00000 UNKNOWN speed Ctx Entries 0 MEL 0 us Port# 0/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-72 [001] d.... 2.750689: xhci_hub_status_data: port 2-0: 0x0a0002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake: WCE WOE
<task>-162 [001] dNs.. 2.754113: xhci_hub_status_data: port 1-0: 0x00000f91 Powered Connected Disabled Link:Unknown PortSpeed:3 In-Reset Change: Wake:
<task>-72 [001] d.... 2.786201: xhci_get_port_status: port 2-0: 0x000002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake:
<task>-72 [001] d.... 2.786387: xhci_hub_status_data: port 2-0: 0x0a0002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake: WCE WOE
<task>-27 [000] d.h.. 2.806172: xhci_handle_event: EVENT: TRB 0000000001000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
<task>-27 [000] d.h.. 2.806365: xhci_handle_port_status: port 1-0: 0x00200e03 Powered Connected Enabled Link:U0 PortSpeed:3 Change: PRC Wake:
<task>-27 [000] d.h.. 2.806552: xhci_hub_status_data: port 1-0: 0x00200e03 Powered Connected Enabled Link:U0 PortSpeed:3 Change: PRC Wake:
<task>-27 [000] d.h.. 2.806842: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758030(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 2.814439: xhci_get_port_status: port 1-0: 0x00200e03 Powered Connected Enabled Link:U0 PortSpeed:3 Change: PRC Wake:
<task>-72 [001] d.... 2.838200: xhci_get_port_status: port 2-0: 0x000002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake:
<task>-72 [001] d.... 2.838397: xhci_hub_status_data: port 2-0: 0x0a0002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake: WCE WOE
<task>-76 [001] .N... 2.877904: xhci_setup_device_slot: RS 00000 UNKNOWN speed Ctx Entries 0 MEL 0 us Port# 0/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-76 [001] .N... 2.877923: xhci_setup_addressable_virt_device: vdev ffffff8024f88000 ctx e2bc8000 | e4664000 num 0 state 5 speed 3 port 1 level 1 slot 1
<task>-76 [001] .N... 2.877927: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e2bc8000, ctx_va=@ffffffc080ec5000
<task>-76 [001] .N... 2.877931: xhci_address_ctrl_ctx: Add: slot ep0
<task>-76 [001] dN... 2.877934: xhci_setup_device: vdev ffffff8024f88000 ctx e2bc8000 | e4664000 num 0 state 5 speed 3 port 1 level 1 slot 1
<task>-76 [001] dN... 2.877945: xhci_queue_trb: CMD: Address Device Command: ctx 00000000e2bc8000 slot 1 flags B:C
<task>-76 [001] dN... 2.877949: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e4759020(0x00000000e4759000) deq 0x00000000e4759010(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-76 [001] dN... 2.877952: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-141 [000] d.h.. 2.877978: xhci_handle_event: EVENT: TRB 00000000e4759010 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
<task>-141 [000] d.h.. 2.877983: xhci_handle_command: CMD: Address Device Command: ctx 00000000e2bc8000 slot 1 flags B:C
<task>-141 [000] d.h.. 2.877990: xhci_handle_cmd_addr_dev: RS 00000 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<task>-141 [000] d.h.. 2.878001: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e4759020(0x00000000e4759000) deq 0x00000000e4759020(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-141 [000] d.h.. 2.878003: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758040(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 2.878011: xhci_get_port_status: port 2-0: 0x000002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake:
<task>-72 [001] d.... 2.878254: xhci_hub_status_data: port 2-0: 0x0a0002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake: WCE WOE
<task>-76 [001] ..... 2.905569: xhci_dbg_address: Successful setup context command
<task>-76 [001] ..... 2.905581: xhci_dbg_address: Op regs DCBAA ptr = 0x000000e475a000
<task>-76 [001] ..... 2.905588: xhci_dbg_address: Slot ID 1 dcbaa entry @ffffffc080c1d008 = 0x000000e4664000
<task>-76 [001] ..... 2.905593: xhci_dbg_address: Output Context DMA address = 0xe4664000
<task>-76 [001] ..... 2.905598: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e2bc8000, ctx_va=@ffffffc080ec5000
<task>-76 [001] ..... 2.905601: xhci_address_ctx: ctx_64=0, ctx_type=1, ctx_dma=@e4664000, ctx_va=@ffffffc080ebd000
<task>-76 [001] ..... 2.905605: xhci_dbg_address: Internal device address = 0
<task>-76 [001] ..... 2.905644: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8024122000 pipe 2147483776 slot 1 length 0/64 sgs 0/0 stream 0 flags 00110200
<task>-76 [001] d.... 2.905656: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0100 wIndex 0000 wLength 64 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-76 [001] d.... 2.905661: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf6010(0x00000000e2bf6000) deq 0x00000000e2bf6000(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 2.905664: xhci_queue_trb: CTRL: Buffer 00000000e4799300 length 64 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-76 [001] d.... 2.905666: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf6020(0x00000000e2bf6000) deq 0x00000000e2bf6000(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 2.905667: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-76 [001] d.... 2.905669: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf6030(0x00000000e2bf6000) deq 0x00000000e2bf6000(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 2.905672: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-127 [000] d.h.. 2.905712: xhci_handle_event: EVENT: TRB 00000000e2bf6010 status 'Short Packet' len 46 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-127 [000] d.h.. 2.905720: xhci_handle_transfer: CTRL: Buffer 00000000e4799300 length 64 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-127 [000] d.h.. 2.905726: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758050(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-127 [000] d.h.. 2.905727: xhci_handle_event: EVENT: TRB 00000000e2bf6020 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-127 [000] d.h.. 2.905731: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-127 [000] d.h.. 2.905735: xhci_inc_deq: CTRL ffffff8024780880: enq 0x00000000e2bf6030(0x00000000e2bf6000) deq 0x00000000e2bf6030(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-127 [000] d.h.. 2.905740: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8024122000 pipe 2147483776 slot 1 length 18/64 sgs 0/0 stream 0 flags 00110200
<task>-127 [000] d.h.. 2.905751: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758060(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 2.931119: xhci_get_port_status: port 2-0: 0x000002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake:
<task>-72 [001] d.... 2.931293: xhci_hub_status_data: port 2-0: 0x0a0002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake: WCE WOE
<task>-91 [001] dNs.. 2.934098: xhci_hub_status_data: port 1-0: 0x00000f91 Powered Connected Disabled Link:Unknown PortSpeed:3 In-Reset Change: Wake:
<idle>-0 [000] d.h.. 2.961863: xhci_handle_event: EVENT: TRB 0000000001000000 status 'Success' len 0 slot 0 ep 0 type 'Port Status Change Event' flags e:C
<idle>-0 [000] d.h.. 2.961875: xhci_handle_port_status: port 1-0: 0x00200e03 Powered Connected Enabled Link:U0 PortSpeed:3 Change: PRC Wake:
<idle>-0 [000] d.h.. 2.961883: xhci_hub_status_data: port 1-0: 0x00200e03 Powered Connected Enabled Link:U0 PortSpeed:3 Change: PRC Wake:
<idle>-0 [000] d.h.. 2.961900: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758070(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 2.966106: xhci_get_port_status: port 2-0: 0x000002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake:
<task>-72 [001] d.... 2.966286: xhci_hub_status_data: port 2-0: 0x0a0002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake: WCE WOE
<task>-76 [001] d.... 2.972476: xhci_get_port_status: port 1-0: 0x00200e03 Powered Connected Enabled Link:U0 PortSpeed:3 Change: PRC Wake:
<task>-72 [001] d.... 3.002144: xhci_get_port_status: port 2-0: 0x000002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake:
<task>-72 [001] d.... 3.002336: xhci_hub_status_data: port 2-0: 0x0a0002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake: WCE WOE
<task>-76 [001] ..... 3.026087: xhci_discover_or_reset_device: RS 00000 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<task>-76 [001] d.... 3.026112: xhci_queue_trb: CMD: Reset Device Command: slot 1 flags C
<task>-76 [001] d.... 3.026119: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e4759030(0x00000000e4759000) deq 0x00000000e4759020(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 3.026122: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-167 [000] d.h.. 3.026142: xhci_handle_event: EVENT: TRB 00000000e4759020 status 'Context State Error' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
<task>-167 [000] d.h.. 3.026148: xhci_handle_command: CMD: Reset Device Command: slot 1 flags C
<task>-167 [000] d.h.. 3.026154: xhci_handle_cmd_reset_dev: RS 00000 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<task>-167 [000] d.h.. 3.026164: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e4759030(0x00000000e4759000) deq 0x00000000e4759030(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-167 [000] d.h.. 3.026166: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758080(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] ..... 3.026208: xhci_setup_device_slot: RS 00000 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<task>-76 [001] ..... 3.026216: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e2bc8000, ctx_va=@ffffffc080ec5000
<task>-76 [001] ..... 3.026220: xhci_address_ctrl_ctx: Add: slot ep0
<task>-76 [001] d.... 3.026234: xhci_setup_device: vdev ffffff8024f88000 ctx e2bc8000 | e4664000 num 0 state 5 speed 3 port 1 level 1 slot 1
<task>-76 [001] d.... 3.026237: xhci_queue_trb: CMD: Address Device Command: ctx 00000000e2bc8000 slot 1 flags b:C
<task>-76 [001] d.... 3.026240: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e4759040(0x00000000e4759000) deq 0x00000000e4759030(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 3.026242: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-30 [000] d.h.. 3.026263: xhci_handle_event: EVENT: TRB 00000000e4759030 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
<task>-30 [000] d.h.. 3.026266: xhci_handle_command: CMD: Address Device Command: ctx 00000000e2bc8000 slot 1 flags b:C
<task>-30 [000] d.h.. 3.026270: xhci_handle_cmd_addr_dev: RS 00000 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 1 State addressed
<task>-30 [000] d.h.. 3.026278: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e4759040(0x00000000e4759000) deq 0x00000000e4759040(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-30 [000] d.h.. 3.026279: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758090(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] ..... 3.026383: xhci_dbg_address: Successful setup address command
<task>-76 [001] ..... 3.026392: xhci_dbg_address: Op regs DCBAA ptr = 0x000000e475a000
<task>-76 [001] ..... 3.026416: xhci_dbg_address: Slot ID 1 dcbaa entry @ffffffc080c1d008 = 0x000000e4664000
<task>-76 [001] ..... 3.026422: xhci_dbg_address: Output Context DMA address = 0xe4664000
<task>-76 [001] ..... 3.026424: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e2bc8000, ctx_va=@ffffffc080ec5000
<task>-76 [001] ..... 3.026437: xhci_address_ctx: ctx_64=0, ctx_type=1, ctx_dma=@e4664000, ctx_va=@ffffffc080ebd000
<task>-76 [001] ..... 3.026441: xhci_dbg_address: Internal device address = 1
<task>-72 [001] d.... 3.038182: xhci_get_port_status: port 2-0: 0x000002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake:
<task>-72 [001] d.... 3.038364: xhci_hub_status_data: port 2-0: 0x0a0002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake: WCE WOE
<task>-76 [001] ..... 3.042238: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8024060600 pipe 2147484288 slot 1 length 0/18 sgs 0/0 stream 0 flags 00110200
<task>-76 [001] d.... 3.042257: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0100 wIndex 0000 wLength 18 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-76 [001] d.... 3.042261: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf6040(0x00000000e2bf6000) deq 0x00000000e2bf6030(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 3.042264: xhci_queue_trb: CTRL: Buffer 00000000e40d9600 length 18 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-76 [001] d.... 3.042266: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf6050(0x00000000e2bf6000) deq 0x00000000e2bf6030(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 3.042267: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-76 [001] d.... 3.042269: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf6060(0x00000000e2bf6000) deq 0x00000000e2bf6030(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 3.042272: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-15 [000] d.h.. 3.042309: xhci_handle_event: EVENT: TRB 00000000e2bf6050 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-15 [000] d.h.. 3.042318: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-15 [000] d.h.. 3.042325: xhci_inc_deq: CTRL ffffff8024780880: enq 0x00000000e2bf6060(0x00000000e2bf6000) deq 0x00000000e2bf6060(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-15 [000] d.h.. 3.042330: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8024060600 pipe 2147484288 slot 1 length 18/18 sgs 0/0 stream 0 flags 00110200
<task>-15 [000] d.h.. 3.042338: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47580a0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] ..... 3.042418: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8024060600 pipe 2147484288 slot 1 length 0/9 sgs 0/0 stream 0 flags 00110200
<task>-76 [001] d.... 3.042422: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0200 wIndex 0000 wLength 9 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-76 [001] d.... 3.042424: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf6070(0x00000000e2bf6000) deq 0x00000000e2bf6060(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 3.042426: xhci_queue_trb: CTRL: Buffer 00000000e40a2900 length 9 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-76 [001] d.... 3.042428: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf6080(0x00000000e2bf6000) deq 0x00000000e2bf6060(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 3.042429: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-76 [001] d.... 3.042435: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf6090(0x00000000e2bf6000) deq 0x00000000e2bf6060(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 3.042436: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-167 [000] d.h.. 3.042453: xhci_handle_event: EVENT: TRB 00000000e2bf6080 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-167 [000] d.h.. 3.042458: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-167 [000] d.h.. 3.042461: xhci_inc_deq: CTRL ffffff8024780880: enq 0x00000000e2bf6090(0x00000000e2bf6000) deq 0x00000000e2bf6090(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-167 [000] d.h.. 3.042464: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8024060600 pipe 2147484288 slot 1 length 9/9 sgs 0/0 stream 0 flags 00110200
<task>-167 [000] d.h.. 3.042467: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47580b0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] ..... 3.042510: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8024060600 pipe 2147484288 slot 1 length 0/41 sgs 0/0 stream 0 flags 00110200
<task>-76 [001] d.... 3.042513: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0200 wIndex 0000 wLength 41 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-76 [001] d.... 3.042516: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf60a0(0x00000000e2bf6000) deq 0x00000000e2bf6090(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 3.042518: xhci_queue_trb: CTRL: Buffer 00000000e40a2780 length 41 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-76 [001] d.... 3.042520: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf60b0(0x00000000e2bf6000) deq 0x00000000e2bf6090(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 3.042521: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-76 [001] d.... 3.042523: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf60c0(0x00000000e2bf6000) deq 0x00000000e2bf6090(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 3.042524: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-167 [000] d.h.. 3.042544: xhci_handle_event: EVENT: TRB 00000000e2bf60b0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-167 [000] d.h.. 3.042549: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-167 [000] d.h.. 3.042552: xhci_inc_deq: CTRL ffffff8024780880: enq 0x00000000e2bf60c0(0x00000000e2bf6000) deq 0x00000000e2bf60c0(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-167 [000] d.h.. 3.042555: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8024060600 pipe 2147484288 slot 1 length 41/41 sgs 0/0 stream 0 flags 00110200
<task>-167 [000] d.h.. 3.042557: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47580c0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] ..... 3.043240: xhci_ring_alloc: INTR ffffff8024ee3980: enq 0x00000000e4056000(0x00000000e4056000) deq 0x00000000e4056000(0x00000000e4056000) segs 2 stream 0 bounce 1 cycle 1
<task>-76 [001] ..... 3.043247: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 256000 us max ESIT payload 1 CErr 3 Type Int IN burst 0 maxp 1 deq 00000000e4056001 avg trb len 1
<task>-76 [001] d.... 3.043263: xhci_configure_endpoint_ctrl_ctx: Add: slot 1in
<task>-76 [001] d.... 3.043267: xhci_configure_endpoint: RS 00000 high-speed Ctx Entries 3 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-76 [001] d.... 3.043278: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e2bc8000 slot 1 flags d:C
<task>-76 [001] d.... 3.043281: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e4759050(0x00000000e4759000) deq 0x00000000e4759040(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 3.043284: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-102 [000] d.h.. 3.043353: xhci_handle_event: EVENT: TRB 00000000e4759040 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
<task>-102 [000] d.h.. 3.043357: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e2bc8000 slot 1 flags d:C
<task>-102 [000] d.h.. 3.043371: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e4759050(0x00000000e4759000) deq 0x00000000e4759050(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-102 [000] d.h.. 3.043373: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47580d0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] ..... 3.043755: xhci_dbg_context_change: Successful Endpoint Configure command
<task>-76 [001] d.... 3.043806: xhci_queue_trb: CMD: Stop Ring Command: slot 1 sp 0 ep 3 flags C
<task>-76 [001] d.... 3.043808: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e4759060(0x00000000e4759000) deq 0x00000000e4759050(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 3.043810: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-102 [000] d.h.. 3.043824: xhci_handle_event: EVENT: TRB 00000000e4056000 status 'Stopped - Length Invalid' len 0 slot 1 ep 3 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 3.043832: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47580e0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-102 [000] d.h.. 3.043833: xhci_handle_event: EVENT: TRB 00000000e4759050 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
<task>-102 [000] d.h.. 3.043836: xhci_handle_command: CMD: Stop Ring Command: slot 1 sp 0 ep 3 flags C
<task>-102 [000] d.h.. 3.043846: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e4759060(0x00000000e4759000) deq 0x00000000e4759060(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-102 [000] d.h.. 3.043848: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47580f0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 3.043903: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e0fa0000 slot 1 flags d:C
<task>-76 [001] d.... 3.043906: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e4759070(0x00000000e4759000) deq 0x00000000e4759060(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 3.043907: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-102 [000] d.h.. 3.043970: xhci_handle_event: EVENT: TRB 00000000e4759060 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
<task>-102 [000] d.h.. 3.043973: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e0fa0000 slot 1 flags d:C
<task>-102 [000] d.h.. 3.043984: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e4759070(0x00000000e4759000) deq 0x00000000e4759070(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-102 [000] d.h.. 3.043985: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758100(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] ..... 3.044029: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8024060700 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-76 [001] d.... 3.044037: xhci_queue_trb: CTRL: bRequestType 00 bRequest 09 wValue 0001 wIndex 0000 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-76 [001] d.... 3.044039: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf60d0(0x00000000e2bf6000) deq 0x00000000e2bf60c0(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 3.044041: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-76 [001] d.... 3.044043: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf60e0(0x00000000e2bf6000) deq 0x00000000e2bf60c0(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 3.044045: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-102 [000] d.h.. 3.044058: xhci_handle_event: EVENT: TRB 00000000e2bf60d0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 3.044065: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-102 [000] d.h.. 3.044069: xhci_inc_deq: CTRL ffffff8024780880: enq 0x00000000e2bf60e0(0x00000000e2bf6000) deq 0x00000000e2bf60e0(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-102 [000] d.h.. 3.044073: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8024060700 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-102 [000] d.h.. 3.044079: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758110(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] .N... 3.048715: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8024060800 pipe 2147484288 slot 1 length 0/15 sgs 0/0 stream 0 flags 00110200
<task>-76 [001] dN... 3.048725: xhci_queue_trb: CTRL: bRequestType a0 bRequest 06 wValue 2900 wIndex 0000 wLength 15 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-76 [001] dN... 3.048728: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf60f0(0x00000000e2bf6000) deq 0x00000000e2bf60e0(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] dN... 3.048731: xhci_queue_trb: CTRL: Buffer 00000000e4079a00 length 15 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-76 [001] dN... 3.048733: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf6100(0x00000000e2bf6000) deq 0x00000000e2bf60e0(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] dN... 3.048734: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-76 [001] dN... 3.048736: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf6110(0x00000000e2bf6000) deq 0x00000000e2bf60e0(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] dN... 3.048738: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-102 [000] d.h.. 3.048756: xhci_handle_event: EVENT: TRB 00000000e2bf60f0 status 'Short Packet' len 6 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 3.048763: xhci_handle_transfer: CTRL: Buffer 00000000e4079a00 length 15 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-102 [000] d.h.. 3.048767: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758120(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-102 [000] d.h.. 3.048769: xhci_handle_event: EVENT: TRB 00000000e2bf6100 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 3.048772: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-102 [000] d.h.. 3.048775: xhci_inc_deq: CTRL ffffff8024780880: enq 0x00000000e2bf6110(0x00000000e2bf6000) deq 0x00000000e2bf6110(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-102 [000] d.h.. 3.048779: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8024060800 pipe 2147484288 slot 1 length 9/15 sgs 0/0 stream 0 flags 00110200
<task>-102 [000] d.h.. 3.048785: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758130(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] .N... 3.054295: xhci_ring_alloc: INTR ffffff8024079d00: enq 0x00000000e2232000(0x00000000e2232000) deq 0x00000000e2232000(0x00000000e2232000) segs 2 stream 0 bounce 1 cycle 1
<task>-76 [001] .N... 3.054306: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 256000 us max ESIT payload 1 CErr 3 Type Int IN burst 0 maxp 1 deq 00000000e2232001 avg trb len 1
<task>-76 [001] dN... 3.054324: xhci_configure_endpoint_ctrl_ctx: Drop: 1in, Add: slot 1in
<task>-76 [001] dN... 3.054327: xhci_configure_endpoint: RS 00000 high-speed Ctx Entries 3 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-76 [001] dN... 3.054338: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e2bc8000 slot 1 flags d:C
<task>-76 [001] dN... 3.054342: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e4759080(0x00000000e4759000) deq 0x00000000e4759070(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-76 [001] dN... 3.054345: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-102 [000] d.h.. 3.054420: xhci_handle_event: EVENT: TRB 00000000e4759070 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
<task>-102 [000] d.h.. 3.054425: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e2bc8000 slot 1 flags d:C
<task>-102 [000] d.h.. 3.054438: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e4759080(0x00000000e4759000) deq 0x00000000e4759080(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-102 [000] d.h.. 3.054440: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758140(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] ..... 3.083547: xhci_dbg_context_change: Successful Endpoint Configure command
<task>-76 [001] ..... 3.083568: xhci_ring_free: INTR ffffff8024ee3980: enq 0x00000000e4056000(0x00000000e4056000) deq 0x00000000e4056000(0x00000000e4056000) segs 2 stream 0 bounce 1 cycle 1
<task>-76 [001] ..... 3.083598: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff802408b600 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-76 [001] d.... 3.083610: xhci_queue_trb: CTRL: bRequestType 01 bRequest 0b wValue 0001 wIndex 0000 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-76 [001] d.... 3.083614: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf6120(0x00000000e2bf6000) deq 0x00000000e2bf6110(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 3.083616: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-76 [001] d.... 3.083618: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf6130(0x00000000e2bf6000) deq 0x00000000e2bf6110(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 3.083621: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-141 [000] d.h.. 3.083652: xhci_handle_event: EVENT: TRB 00000000e2bf6120 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-141 [000] d.h.. 3.083661: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-141 [000] d.h.. 3.083667: xhci_inc_deq: CTRL ffffff8024780880: enq 0x00000000e2bf6130(0x00000000e2bf6000) deq 0x00000000e2bf6130(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-141 [000] d.h.. 3.083672: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff802408b600 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-141 [000] d.h.. 3.083680: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758150(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.083733: xhci_get_port_status: port 2-0: 0x000002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake:
<task>-76 [001] d.... 3.083782: xhci_queue_trb: CMD: Stop Ring Command: slot 1 sp 0 ep 3 flags C
<task>-76 [001] d.... 3.083785: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e4759090(0x00000000e4759000) deq 0x00000000e4759080(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 3.083787: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-141 [000] d.h.. 3.083799: xhci_handle_event: EVENT: TRB 00000000e2232000 status 'Stopped - Length Invalid' len 0 slot 1 ep 3 type 'Transfer Event' flags e:C
<task>-141 [000] d.h.. 3.083804: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758160(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-141 [000] d.h.. 3.083805: xhci_handle_event: EVENT: TRB 00000000e4759080 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
<task>-141 [000] d.h.. 3.083808: xhci_handle_command: CMD: Stop Ring Command: slot 1 sp 0 ep 3 flags C
<task>-141 [000] d.h.. 3.083820: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e4759090(0x00000000e4759000) deq 0x00000000e4759090(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-141 [000] d.h.. 3.083821: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758170(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.083941: xhci_hub_status_data: port 2-0: 0x0a0002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake: WCE WOE
<task>-76 [001] d.... 3.083956: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e0fa0000 slot 1 flags d:C
<task>-76 [001] d.... 3.083958: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e47590a0(0x00000000e4759000) deq 0x00000000e4759090(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 3.083959: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-141 [000] d.h.. 3.084023: xhci_handle_event: EVENT: TRB 00000000e4759090 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
<task>-141 [000] d.h.. 3.084026: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e0fa0000 slot 1 flags d:C
<task>-141 [000] d.h.. 3.084036: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e47590a0(0x00000000e4759000) deq 0x00000000e47590a0(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-141 [000] d.h.. 3.084037: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758180(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] ..... 3.131369: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff802408b900 pipe 2147484288 slot 1 length 0/2 sgs 0/0 stream 0 flags 00110200
<task>-76 [001] d.... 3.131387: xhci_queue_trb: CTRL: bRequestType 80 bRequest 00 wValue 0000 wIndex 0000 wLength 2 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-76 [001] d.... 3.131392: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf6140(0x00000000e2bf6000) deq 0x00000000e2bf6130(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 3.131395: xhci_queue_trb: CTRL: Buffer 00000000e4096480 length 2 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-76 [001] d.... 3.131397: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf6150(0x00000000e2bf6000) deq 0x00000000e2bf6130(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 3.131398: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-76 [001] d.... 3.131400: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf6160(0x00000000e2bf6000) deq 0x00000000e2bf6130(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 3.131403: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-131 [000] d.h.. 3.131438: xhci_handle_event: EVENT: TRB 00000000e2bf6150 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-131 [000] d.h.. 3.131448: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-131 [000] d.h.. 3.131454: xhci_inc_deq: CTRL ffffff8024780880: enq 0x00000000e2bf6160(0x00000000e2bf6000) deq 0x00000000e2bf6160(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-131 [000] d.h.. 3.131460: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff802408b900 pipe 2147484288 slot 1 length 2/2 sgs 0/0 stream 0 flags 00110200
<task>-131 [000] d.h.. 3.131470: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758190(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] ..... 3.131543: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff802408b900 pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-76 [001] d.... 3.131548: xhci_queue_trb: CTRL: bRequestType a0 bRequest 00 wValue 0000 wIndex 0000 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-76 [001] d.... 3.131550: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf6170(0x00000000e2bf6000) deq 0x00000000e2bf6160(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 3.131552: xhci_queue_trb: CTRL: Buffer 00000000e4079980 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-76 [001] d.... 3.131554: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf6180(0x00000000e2bf6000) deq 0x00000000e2bf6160(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 3.131555: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-76 [001] d.... 3.131557: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf6190(0x00000000e2bf6000) deq 0x00000000e2bf6160(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 3.131559: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-131 [000] d.h.. 3.131578: xhci_handle_event: EVENT: TRB 00000000e2bf6180 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-131 [000] d.h.. 3.131584: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-131 [000] d.h.. 3.131587: xhci_inc_deq: CTRL ffffff8024780880: enq 0x00000000e2bf6190(0x00000000e2bf6000) deq 0x00000000e2bf6190(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-131 [000] d.h.. 3.131589: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff802408b900 pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-131 [000] d.h.. 3.131594: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47581a0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 3.131914: xhci_configure_endpoint_ctrl_ctx: Add: slot
<task>-76 [001] d.... 3.131918: xhci_configure_endpoint: RS 00000 high-speed multi-TT Hub Ctx Entries 3 MEL 0 us Port# 1/2 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-76 [001] d.... 3.131926: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e0fa0000 slot 1 flags d:C
<task>-76 [001] d.... 3.131929: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e47590b0(0x00000000e4759000) deq 0x00000000e47590a0(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 3.131931: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-126 [000] d.h.. 3.131994: xhci_handle_event: EVENT: TRB 00000000e47590a0 status 'Success' len 0 slot 1 ep 0 type 'Command Completion Event' flags e:C
<task>-126 [000] d.h.. 3.131998: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e0fa0000 slot 1 flags d:C
<task>-126 [000] d.h.. 3.132011: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e47590b0(0x00000000e4759000) deq 0x00000000e47590b0(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-126 [000] d.h.. 3.132013: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47581b0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.139512: xhci_get_port_status: port 2-0: 0x000002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake:
<task>-72 [001] d.... 3.139683: xhci_hub_status_data: port 2-0: 0x0a0002a0 Powered Not-connected Disabled Link:RxDetect PortSpeed:0 Change: Wake: WCE WOE
<task>-76 [001] ..... 3.139702: xhci_dbg_context_change: Successful Endpoint Configure command
<task>-76 [001] ..... 3.139721: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff802408be00 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-76 [001] d.... 3.139731: xhci_queue_trb: CTRL: bRequestType 23 bRequest 03 wValue 0008 wIndex 0001 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-76 [001] d.... 3.139734: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf61a0(0x00000000e2bf6000) deq 0x00000000e2bf6190(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 3.139736: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-76 [001] d.... 3.139738: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf61b0(0x00000000e2bf6000) deq 0x00000000e2bf6190(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 3.139740: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-165 [000] d.h.. 3.139764: xhci_handle_event: EVENT: TRB 00000000e2bf61a0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-165 [000] d.h.. 3.139772: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-165 [000] d.h.. 3.139777: xhci_inc_deq: CTRL ffffff8024780880: enq 0x00000000e2bf61b0(0x00000000e2bf6000) deq 0x00000000e2bf61b0(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-165 [000] d.h.. 3.139781: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff802408be00 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-165 [000] d.h.. 3.139786: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47581c0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] ..... 3.139855: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff802408be00 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-76 [001] d.... 3.139859: xhci_queue_trb: CTRL: bRequestType 23 bRequest 03 wValue 0008 wIndex 0002 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-76 [001] d.... 3.139861: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf61c0(0x00000000e2bf6000) deq 0x00000000e2bf61b0(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 3.139863: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-76 [001] d.... 3.139865: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf61d0(0x00000000e2bf6000) deq 0x00000000e2bf61b0(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 3.139866: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-165 [000] d.h.. 3.139880: xhci_handle_event: EVENT: TRB 00000000e2bf61c0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-165 [000] d.h.. 3.139884: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-165 [000] d.h.. 3.139888: xhci_inc_deq: CTRL ffffff8024780880: enq 0x00000000e2bf61d0(0x00000000e2bf6000) deq 0x00000000e2bf61d0(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-165 [000] d.h.. 3.139890: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff802408be00 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-165 [000] d.h.. 3.139894: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47581d0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-183 [001] d.s.. 3.178067: xhci_hub_status_data: port 1-0: 0x00000e03 Powered Connected Enabled Link:U0 PortSpeed:3 Change: Wake:
<task>-76 [001] ..... 3.246139: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8024086200 pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-76 [001] d.... 3.246159: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0001 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-76 [001] d.... 3.246164: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf61e0(0x00000000e2bf6000) deq 0x00000000e2bf61d0(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 3.246166: xhci_queue_trb: CTRL: Buffer 00000000e4079980 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-76 [001] d.... 3.246168: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf61f0(0x00000000e2bf6000) deq 0x00000000e2bf61d0(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 3.246170: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-76 [001] d.... 3.246172: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf6200(0x00000000e2bf6000) deq 0x00000000e2bf61d0(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 3.246175: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-126 [000] d.h.. 3.246208: xhci_handle_event: EVENT: TRB 00000000e2bf61f0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-126 [000] d.h.. 3.246217: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-126 [000] d.h.. 3.246225: xhci_inc_deq: CTRL ffffff8024780880: enq 0x00000000e2bf6200(0x00000000e2bf6000) deq 0x00000000e2bf6200(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-126 [000] d.h.. 3.246234: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8024086200 pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-126 [000] d.h.. 3.246249: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47581e0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] ..... 3.246638: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8024086200 pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-76 [001] d.... 3.246649: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0002 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-76 [001] d.... 3.246652: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf6210(0x00000000e2bf6000) deq 0x00000000e2bf6200(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 3.246655: xhci_queue_trb: CTRL: Buffer 00000000e4079980 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-76 [001] d.... 3.246657: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf6220(0x00000000e2bf6000) deq 0x00000000e2bf6200(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 3.246658: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-76 [001] d.... 3.246663: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf6230(0x00000000e2bf6000) deq 0x00000000e2bf6200(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 3.246665: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-102 [000] d.h.. 3.246688: xhci_handle_event: EVENT: TRB 00000000e2bf6220 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 3.246695: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-102 [000] d.h.. 3.246701: xhci_inc_deq: CTRL ffffff8024780880: enq 0x00000000e2bf6230(0x00000000e2bf6000) deq 0x00000000e2bf6230(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-102 [000] d.h.. 3.246705: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8024086200 pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-102 [000] d.h.. 3.246713: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47581f0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] ..... 3.250115: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff802406bc00 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-76 [001] d.... 3.250135: xhci_queue_trb: CTRL: bRequestType 23 bRequest 01 wValue 0010 wIndex 0002 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-76 [001] d.... 3.250140: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf6240(0x00000000e2bf6000) deq 0x00000000e2bf6230(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 3.250142: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-76 [001] d.... 3.250144: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf6250(0x00000000e2bf6000) deq 0x00000000e2bf6230(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] d.... 3.250147: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-191 [000] d.h.. 3.250173: xhci_handle_event: EVENT: TRB 00000000e2bf6240 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-191 [000] d.h.. 3.250182: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-191 [000] d.h.. 3.250189: xhci_inc_deq: CTRL ffffff8024780880: enq 0x00000000e2bf6250(0x00000000e2bf6000) deq 0x00000000e2bf6250(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-191 [000] d.h.. 3.250194: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff802406bc00 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-191 [000] d.h.. 3.250203: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758200(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-76 [001] ..... 3.370756: xhci_urb_enqueue: 1-1 ep1in-intr: urb ffffff802408b900 pipe 1077969536 slot 1 length 0/1 sgs 0/0 stream 0 flags 00010200
<task>-76 [001] d.... 3.370780: xhci_queue_trb: INTR: Buffer 00000000e4079900 length 1 TD size 0 intr 0 type 'Normal' flags b:i:I:c:s:I:e:c
<task>-76 [001] d.... 3.370785: xhci_inc_enq: INTR ffffff8024079d00: enq 0x00000000e2232010(0x00000000e2232000) deq 0x00000000e2232000(0x00000000e2232000) segs 2 stream 0 bounce 1 cycle 1
<task>-76 [001] d.... 3.370790: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep1in
<task>-72 [001] ..... 3.370889: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8024f49c00 pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 3.370894: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0002 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 3.370897: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf6260(0x00000000e2bf6000) deq 0x00000000e2bf6250(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.370898: xhci_queue_trb: CTRL: Buffer 00000000e4079980 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 3.370900: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf6270(0x00000000e2bf6000) deq 0x00000000e2bf6250(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.370902: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 3.370904: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf6280(0x00000000e2bf6000) deq 0x00000000e2bf6250(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.370906: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-210 [000] d.h.. 3.370930: xhci_handle_event: EVENT: TRB 00000000e2bf6270 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-210 [000] d.h.. 3.370939: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-210 [000] d.h.. 3.370945: xhci_inc_deq: CTRL ffffff8024780880: enq 0x00000000e2bf6280(0x00000000e2bf6000) deq 0x00000000e2bf6280(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-210 [000] d.h.. 3.370956: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8024f49c00 pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-210 [000] d.h.. 3.370963: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758210(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.374163: xhci_queue_trb: CMD: Enable Slot Command: flags C
<task>-72 [001] d.... 3.374174: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e47590c0(0x00000000e4759000) deq 0x00000000e47590b0(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.374177: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-196 [000] d.h.. 3.374208: xhci_handle_event: EVENT: TRB 00000000e47590b0 status 'Success' len 0 slot 2 ep 0 type 'Command Completion Event' flags e:C
<task>-196 [000] d.h.. 3.374213: xhci_handle_command: CMD: Enable Slot Command: flags C
<task>-196 [000] d.h.. 3.374247: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e47590c0(0x00000000e4759000) deq 0x00000000e47590c0(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-196 [000] d.h.. 3.374249: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758220(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 3.375563: xhci_ring_alloc: CTRL ffffff8023781780: enq 0x00000000e4056000(0x00000000e4056000) deq 0x00000000e4056000(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 3.375572: xhci_alloc_virt_device: vdev ffffff8025cb0000 ctx e36e9000 | e0fa0000 num 0 state 0 speed 0 port 0 level 0 slot 0
<task>-72 [001] ..... 3.375576: xhci_alloc_dev: RS 00000 UNKNOWN speed Ctx Entries 0 MEL 0 us Port# 0/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-72 [001] ..... 3.375626: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8024f49e00 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 3.375639: xhci_queue_trb: CTRL: bRequestType 23 bRequest 03 wValue 0004 wIndex 0002 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 3.375642: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf6290(0x00000000e2bf6000) deq 0x00000000e2bf6280(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.375644: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 3.375646: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf62a0(0x00000000e2bf6000) deq 0x00000000e2bf6280(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.375649: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-196 [000] d.h.. 3.375672: xhci_handle_event: EVENT: TRB 00000000e2bf6290 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-196 [000] d.h.. 3.375680: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-196 [000] d.h.. 3.375686: xhci_inc_deq: CTRL ffffff8024780880: enq 0x00000000e2bf62a0(0x00000000e2bf6000) deq 0x00000000e2bf62a0(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-196 [000] d.h.. 3.375691: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8024f49e00 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-196 [000] d.h.. 3.375702: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758230(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 3.390141: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff8024112800 pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 3.390161: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0002 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 3.390166: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf62b0(0x00000000e2bf6000) deq 0x00000000e2bf62a0(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.390169: xhci_queue_trb: CTRL: Buffer 00000000e4079980 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 3.390171: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf62c0(0x00000000e2bf6000) deq 0x00000000e2bf62a0(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.390172: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 3.390174: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf62d0(0x00000000e2bf6000) deq 0x00000000e2bf62a0(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.390177: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-196 [000] d.h.. 3.390209: xhci_handle_event: EVENT: TRB 00000000e2bf62c0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-196 [000] d.h.. 3.390219: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-196 [000] d.h.. 3.390226: xhci_inc_deq: CTRL ffffff8024780880: enq 0x00000000e2bf62d0(0x00000000e2bf6000) deq 0x00000000e2bf62d0(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-196 [000] d.h.. 3.390235: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff8024112800 pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-196 [000] d.h.. 3.390246: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758240(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 3.406229: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff80237fd100 pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 3.406248: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0002 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 3.406253: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf62e0(0x00000000e2bf6000) deq 0x00000000e2bf62d0(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.406256: xhci_queue_trb: CTRL: Buffer 00000000e4079980 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 3.406258: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf62f0(0x00000000e2bf6000) deq 0x00000000e2bf62d0(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.406259: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 3.406261: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf6300(0x00000000e2bf6000) deq 0x00000000e2bf62d0(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.406264: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-215 [000] d.h.. 3.406292: xhci_handle_event: EVENT: TRB 00000000e2bf62f0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-215 [000] d.h.. 3.406301: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-215 [000] d.h.. 3.406311: xhci_inc_deq: CTRL ffffff8024780880: enq 0x00000000e2bf6300(0x00000000e2bf6000) deq 0x00000000e2bf6300(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-215 [000] d.h.. 3.406317: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff80237fd100 pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-215 [000] d.h.. 3.406328: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758250(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 3.408730: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff80237fd100 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 3.408748: xhci_queue_trb: CTRL: bRequestType 23 bRequest 01 wValue 0014 wIndex 0002 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 3.408757: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf6310(0x00000000e2bf6000) deq 0x00000000e2bf6300(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.408759: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 3.408761: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf6320(0x00000000e2bf6000) deq 0x00000000e2bf6300(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.408764: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-196 [000] d.h.. 3.408787: xhci_handle_event: EVENT: TRB 00000000e2bf6310 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-196 [000] d.h.. 3.408796: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-196 [000] d.h.. 3.408804: xhci_inc_deq: CTRL ffffff8024780880: enq 0x00000000e2bf6320(0x00000000e2bf6000) deq 0x00000000e2bf6320(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-196 [000] d.h.. 3.408809: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff80237fd100 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-196 [000] d.h.. 3.408820: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758260(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] .N... 3.469537: xhci_setup_device_slot: RS 00000 UNKNOWN speed Ctx Entries 0 MEL 0 us Port# 0/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-72 [001] .N... 3.469556: xhci_setup_addressable_virt_device: vdev ffffff8025cb0000 ctx e36e9000 | e0fa0000 num 0 state 5 speed 3 port 2 level 2 slot 2
<task>-72 [001] .N... 3.469559: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e36e9000, ctx_va=@ffffffc080f25000
<task>-72 [001] .N... 3.469564: xhci_address_ctrl_ctx: Add: slot ep0
<task>-72 [001] dN... 3.469567: xhci_setup_device: vdev ffffff8025cb0000 ctx e36e9000 | e0fa0000 num 0 state 5 speed 3 port 2 level 2 slot 2
<task>-72 [001] dN... 3.469575: xhci_queue_trb: CMD: Address Device Command: ctx 00000000e36e9000 slot 2 flags B:C
<task>-72 [001] dN... 3.469579: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e47590d0(0x00000000e4759000) deq 0x00000000e47590c0(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-72 [001] dN... 3.469582: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-218 [000] d.h.. 3.469606: xhci_handle_event: EVENT: TRB 00000000e47590c0 status 'Success' len 0 slot 2 ep 0 type 'Command Completion Event' flags e:C
<task>-218 [000] d.h.. 3.469612: xhci_handle_command: CMD: Address Device Command: ctx 00000000e36e9000 slot 2 flags B:C
<task>-218 [000] d.h.. 3.469618: xhci_handle_cmd_addr_dev: RS 00002 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<task>-218 [000] d.h.. 3.469629: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e47590d0(0x00000000e4759000) deq 0x00000000e47590d0(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-218 [000] d.h.. 3.469630: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758270(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 3.498397: xhci_dbg_address: Successful setup context command
<task>-72 [001] ..... 3.498412: xhci_dbg_address: Op regs DCBAA ptr = 0x000000e475a000
<task>-72 [001] ..... 3.498419: xhci_dbg_address: Slot ID 2 dcbaa entry @ffffffc080c1d010 = 0x000000e0fa0000
<task>-72 [001] ..... 3.498425: xhci_dbg_address: Output Context DMA address = 0xe0fa0000
<task>-72 [001] ..... 3.498430: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e36e9000, ctx_va=@ffffffc080f25000
<task>-72 [001] ..... 3.498433: xhci_address_ctx: ctx_64=0, ctx_type=1, ctx_dma=@e0fa0000, ctx_va=@ffffffc080e26000
<task>-72 [001] ..... 3.498436: xhci_dbg_address: Internal device address = 0
<task>-72 [001] ..... 3.498467: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff802374c300 pipe 2147483776 slot 2 length 0/64 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 3.498479: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0100 wIndex 0000 wLength 64 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 3.498484: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056010(0x00000000e4056000) deq 0x00000000e4056000(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.498487: xhci_queue_trb: CTRL: Buffer 00000000e3781a00 length 64 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 3.498489: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056020(0x00000000e4056000) deq 0x00000000e4056000(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.498491: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 3.498493: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056030(0x00000000e4056000) deq 0x00000000e4056000(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.498496: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-207 [000] d.h.. 3.498522: xhci_handle_event: EVENT: TRB 00000000e4056010 status 'Short Packet' len 46 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-207 [000] d.h.. 3.498532: xhci_handle_transfer: CTRL: Buffer 00000000e3781a00 length 64 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-207 [000] d.h.. 3.498538: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758280(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-207 [000] d.h.. 3.498539: xhci_handle_event: EVENT: TRB 00000000e4056020 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-207 [000] d.h.. 3.498542: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-207 [000] d.h.. 3.498546: xhci_inc_deq: CTRL ffffff8023781780: enq 0x00000000e4056030(0x00000000e4056000) deq 0x00000000e4056030(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-207 [000] d.h.. 3.498551: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff802374c300 pipe 2147483776 slot 2 length 18/64 sgs 0/0 stream 0 flags 00110200
<task>-207 [000] d.h.. 3.498558: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758290(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 3.499491: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff802374c300 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 3.499503: xhci_queue_trb: CTRL: bRequestType 23 bRequest 03 wValue 0004 wIndex 0002 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 3.499506: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf6330(0x00000000e2bf6000) deq 0x00000000e2bf6320(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.499508: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 3.499510: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf6340(0x00000000e2bf6000) deq 0x00000000e2bf6320(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.499512: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-102 [000] d.h.. 3.499532: xhci_handle_event: EVENT: TRB 00000000e2bf6330 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 3.499540: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-102 [000] d.h.. 3.499545: xhci_inc_deq: CTRL ffffff8024780880: enq 0x00000000e2bf6340(0x00000000e2bf6000) deq 0x00000000e2bf6340(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-102 [000] d.h.. 3.499550: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff802374c300 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-102 [000] d.h.. 3.499555: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47582a0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 3.518170: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff802374cb00 pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 3.518190: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0002 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 3.518195: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf6350(0x00000000e2bf6000) deq 0x00000000e2bf6340(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.518198: xhci_queue_trb: CTRL: Buffer 00000000e4079980 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 3.518200: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf6360(0x00000000e2bf6000) deq 0x00000000e2bf6340(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.518201: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 3.518203: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf6370(0x00000000e2bf6000) deq 0x00000000e2bf6340(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.518206: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-207 [000] dNh.. 3.518231: xhci_handle_event: EVENT: TRB 00000000e2bf6360 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-207 [000] dNh.. 3.518240: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-207 [000] dNh.. 3.518246: xhci_inc_deq: CTRL ffffff8024780880: enq 0x00000000e2bf6370(0x00000000e2bf6000) deq 0x00000000e2bf6370(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-207 [000] dNh.. 3.518250: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff802374cb00 pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-207 [000] dNh.. 3.518256: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47582b0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-102 [000] d.h.. 3.518598: xhci_handle_event: EVENT: TRB 00000000e2232000 status 'Success' len 0 slot 1 ep 3 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 3.518606: xhci_handle_transfer: INTR: Buffer 00000000e4079900 length 1 TD size 0 intr 0 type 'Normal' flags b:i:I:c:s:I:e:C
<task>-102 [000] d.h.. 3.518612: xhci_inc_deq: INTR ffffff8024079d00: enq 0x00000000e2232010(0x00000000e2232000) deq 0x00000000e2232010(0x00000000e2232000) segs 2 stream 0 bounce 1 cycle 1
<task>-102 [000] d.h.. 3.518616: xhci_urb_giveback: 1-1 ep1in-intr: urb ffffff802408b900 pipe 1077969536 slot 1 length 1/1 sgs 0/0 stream 0 flags 00010200
<task>-102 [000] d.h.. 3.518621: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47582c0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-102 [000] d.s.. 3.518658: xhci_urb_enqueue: 1-1 ep1in-intr: urb ffffff802408b900 pipe 1077969536 slot 1 length 0/1 sgs 0/0 stream 0 flags 00010200
<task>-102 [000] d.s.. 3.518667: xhci_queue_trb: INTR: Buffer 00000000e4079900 length 1 TD size 0 intr 0 type 'Normal' flags b:i:I:c:s:I:e:c
<task>-102 [000] d.s.. 3.518670: xhci_inc_enq: INTR ffffff8024079d00: enq 0x00000000e2232020(0x00000000e2232000) deq 0x00000000e2232010(0x00000000e2232000) segs 2 stream 0 bounce 1 cycle 1
<task>-102 [000] d.s.. 3.518673: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep1in
<task>-72 [001] ..... 3.518720: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff802374cb00 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 3.518725: xhci_queue_trb: CTRL: bRequestType 23 bRequest 01 wValue 0014 wIndex 0002 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 3.518728: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf6380(0x00000000e2bf6000) deq 0x00000000e2bf6370(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.518729: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 3.518731: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf6390(0x00000000e2bf6000) deq 0x00000000e2bf6370(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.518733: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-102 [000] d.h.. 3.518747: xhci_handle_event: EVENT: TRB 00000000e2bf6380 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 3.518751: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-102 [000] d.h.. 3.518754: xhci_inc_deq: CTRL ffffff8024780880: enq 0x00000000e2bf6390(0x00000000e2bf6000) deq 0x00000000e2bf6390(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-102 [000] d.h.. 3.518756: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff802374cb00 pipe 2147484160 slot 1 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-102 [000] d.h.. 3.518760: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47582d0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 3.574169: xhci_discover_or_reset_device: RS 00002 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<task>-72 [001] d.... 3.574189: xhci_queue_trb: CMD: Reset Device Command: slot 2 flags C
<task>-72 [001] d.... 3.574193: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e47590e0(0x00000000e4759000) deq 0x00000000e47590d0(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.574197: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-140 [000] d.h.. 3.574218: xhci_handle_event: EVENT: TRB 00000000e47590d0 status 'Context State Error' len 0 slot 2 ep 0 type 'Command Completion Event' flags e:C
<task>-140 [000] d.h.. 3.574224: xhci_handle_command: CMD: Reset Device Command: slot 2 flags C
<task>-140 [000] d.h.. 3.574230: xhci_handle_cmd_reset_dev: RS 00002 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<task>-140 [000] d.h.. 3.574241: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e47590e0(0x00000000e4759000) deq 0x00000000e47590e0(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-140 [000] d.h.. 3.574243: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47582e0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 3.574312: xhci_setup_device_slot: RS 00002 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<task>-72 [001] ..... 3.574319: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e36e9000, ctx_va=@ffffffc080f25000
<task>-72 [001] ..... 3.574323: xhci_address_ctrl_ctx: Add: slot ep0
<task>-72 [001] d.... 3.574326: xhci_setup_device: vdev ffffff8025cb0000 ctx e36e9000 | e0fa0000 num 0 state 5 speed 3 port 2 level 2 slot 2
<task>-72 [001] d.... 3.574330: xhci_queue_trb: CMD: Address Device Command: ctx 00000000e36e9000 slot 2 flags b:C
<task>-72 [001] d.... 3.574332: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e47590f0(0x00000000e4759000) deq 0x00000000e47590e0(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.574334: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-74 [000] d.h.. 3.574351: xhci_handle_event: EVENT: TRB 00000000e47590e0 status 'Success' len 0 slot 2 ep 0 type 'Command Completion Event' flags e:C
<task>-74 [000] d.h.. 3.574355: xhci_handle_command: CMD: Address Device Command: ctx 00000000e36e9000 slot 2 flags b:C
<task>-74 [000] d.h.. 3.574358: xhci_handle_cmd_addr_dev: RS 00002 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 2 State addressed
<task>-74 [000] d.h.. 3.574367: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e47590f0(0x00000000e4759000) deq 0x00000000e47590f0(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-74 [000] d.h.. 3.574368: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47582f0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 3.574423: xhci_dbg_address: Successful setup address command
<task>-72 [001] ..... 3.574431: xhci_dbg_address: Op regs DCBAA ptr = 0x000000e475a000
<task>-72 [001] ..... 3.574439: xhci_dbg_address: Slot ID 2 dcbaa entry @ffffffc080c1d010 = 0x000000e0fa0000
<task>-72 [001] ..... 3.574443: xhci_dbg_address: Output Context DMA address = 0xe0fa0000
<task>-72 [001] ..... 3.574446: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e36e9000, ctx_va=@ffffffc080f25000
<task>-72 [001] ..... 3.574449: xhci_address_ctx: ctx_64=0, ctx_type=1, ctx_dma=@e0fa0000, ctx_va=@ffffffc080e26000
<task>-72 [001] ..... 3.574452: xhci_dbg_address: Internal device address = 2
<task>-72 [001] ..... 3.594612: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024f54e00 pipe 2147484544 slot 2 length 0/18 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 3.594631: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0100 wIndex 0000 wLength 18 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 3.594636: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056040(0x00000000e4056000) deq 0x00000000e4056030(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.594639: xhci_queue_trb: CTRL: Buffer 00000000e3709400 length 18 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 3.594641: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056050(0x00000000e4056000) deq 0x00000000e4056030(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.594642: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 3.594648: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056060(0x00000000e4056000) deq 0x00000000e4056030(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.594650: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-141 [000] d.h.. 3.594677: xhci_handle_event: EVENT: TRB 00000000e4056050 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-141 [000] d.h.. 3.594686: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-141 [000] d.h.. 3.594692: xhci_inc_deq: CTRL ffffff8023781780: enq 0x00000000e4056060(0x00000000e4056000) deq 0x00000000e4056060(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-141 [000] d.h.. 3.594698: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024f54e00 pipe 2147484544 slot 2 length 18/18 sgs 0/0 stream 0 flags 00110200
<task>-141 [000] d.h.. 3.594709: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758300(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 3.594982: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024f54e00 pipe 2147484544 slot 2 length 0/9 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 3.594991: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0200 wIndex 0000 wLength 9 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 3.594995: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056070(0x00000000e4056000) deq 0x00000000e4056060(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.594997: xhci_queue_trb: CTRL: Buffer 00000000e3709380 length 9 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 3.594999: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056080(0x00000000e4056000) deq 0x00000000e4056060(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.595000: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 3.595002: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056090(0x00000000e4056000) deq 0x00000000e4056060(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.595004: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-102 [000] d.h.. 3.595022: xhci_handle_event: EVENT: TRB 00000000e4056080 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 3.595029: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-102 [000] d.h.. 3.595034: xhci_inc_deq: CTRL ffffff8023781780: enq 0x00000000e4056090(0x00000000e4056000) deq 0x00000000e4056090(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-102 [000] d.h.. 3.595037: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024f54e00 pipe 2147484544 slot 2 length 9/9 sgs 0/0 stream 0 flags 00110200
<task>-102 [000] d.h.. 3.595046: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758310(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 3.595094: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024f54e00 pipe 2147484544 slot 2 length 0/41 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 3.595123: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0200 wIndex 0000 wLength 41 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 3.595125: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e40560a0(0x00000000e4056000) deq 0x00000000e4056090(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.595127: xhci_queue_trb: CTRL: Buffer 00000000e3709280 length 41 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 3.595129: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e40560b0(0x00000000e4056000) deq 0x00000000e4056090(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.595130: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 3.595132: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e40560c0(0x00000000e4056000) deq 0x00000000e4056090(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.595134: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-102 [000] d.h.. 3.595151: xhci_handle_event: EVENT: TRB 00000000e40560b0 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 3.595155: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-102 [000] d.h.. 3.595158: xhci_inc_deq: CTRL ffffff8023781780: enq 0x00000000e40560c0(0x00000000e4056000) deq 0x00000000e40560c0(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-102 [000] d.h.. 3.595161: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024f54e00 pipe 2147484544 slot 2 length 41/41 sgs 0/0 stream 0 flags 00110200
<task>-102 [000] d.h.. 3.595165: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758320(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 3.597420: xhci_ring_alloc: INTR ffffff80236cee80: enq 0x00000000e36c7000(0x00000000e36c7000) deq 0x00000000e36c7000(0x00000000e36c7000) segs 2 stream 0 bounce 1 cycle 1
<task>-72 [001] ..... 3.597431: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 256000 us max ESIT payload 1 CErr 3 Type Int IN burst 0 maxp 1 deq 00000000e36c7001 avg trb len 1
<task>-72 [001] d.... 3.597453: xhci_configure_endpoint_ctrl_ctx: Add: slot 1in
<task>-72 [001] d.... 3.597455: xhci_configure_endpoint: RS 00002 high-speed Ctx Entries 3 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-72 [001] d.... 3.597469: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e36e9000 slot 2 flags d:C
<task>-72 [001] d.... 3.597472: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e4759100(0x00000000e4759000) deq 0x00000000e47590f0(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.597475: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 3.597577: xhci_handle_event: EVENT: TRB 00000000e47590f0 status 'Success' len 0 slot 2 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 3.597586: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e36e9000 slot 2 flags d:C
<idle>-0 [000] d.h.. 3.597600: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e4759100(0x00000000e4759000) deq 0x00000000e4759100(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 3.597602: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758330(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 3.605986: xhci_dbg_context_change: Successful Endpoint Configure command
<task>-72 [001] d.... 3.606052: xhci_queue_trb: CMD: Stop Ring Command: slot 2 sp 0 ep 3 flags C
<task>-72 [001] d.... 3.606056: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e4759110(0x00000000e4759000) deq 0x00000000e4759100(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.606060: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-238 [000] DNh.. 3.610143: xhci_handle_event: EVENT: TRB 00000000e36c7000 status 'Stopped - Length Invalid' len 0 slot 2 ep 3 type 'Transfer Event' flags e:C
<task>-238 [000] DNh.. 3.610156: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758340(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-238 [000] DNh.. 3.610157: xhci_handle_event: EVENT: TRB 00000000e4759100 status 'Success' len 0 slot 2 ep 0 type 'Command Completion Event' flags e:C
<task>-238 [000] DNh.. 3.610161: xhci_handle_command: CMD: Stop Ring Command: slot 2 sp 0 ep 3 flags C
<task>-238 [000] DNh.. 3.610182: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e4759110(0x00000000e4759000) deq 0x00000000e4759110(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-238 [000] DNh.. 3.610183: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758350(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.612112: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e4fc1000 slot 2 flags d:C
<task>-72 [001] d.... 3.612122: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e4759120(0x00000000e4759000) deq 0x00000000e4759110(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.612126: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-126 [000] D.h.. 3.612215: xhci_handle_event: EVENT: TRB 00000000e4759110 status 'Success' len 0 slot 2 ep 0 type 'Command Completion Event' flags e:C
<task>-126 [000] D.h.. 3.612220: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e4fc1000 slot 2 flags d:C
<task>-126 [000] D.h.. 3.612235: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e4759120(0x00000000e4759000) deq 0x00000000e4759120(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-126 [000] D.h.. 3.612237: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758360(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 3.612505: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8024001900 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 3.612517: xhci_queue_trb: CTRL: bRequestType 00 bRequest 09 wValue 0001 wIndex 0000 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 3.612523: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e40560d0(0x00000000e4056000) deq 0x00000000e40560c0(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.612525: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 3.612527: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e40560e0(0x00000000e4056000) deq 0x00000000e40560c0(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.612530: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-179 [000] D.h.. 3.612546: xhci_handle_event: EVENT: TRB 00000000e40560d0 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-179 [000] D.h.. 3.612554: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-179 [000] D.h.. 3.612559: xhci_inc_deq: CTRL ffffff8023781780: enq 0x00000000e40560e0(0x00000000e4056000) deq 0x00000000e40560e0(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-179 [000] D.h.. 3.612563: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8024001900 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-179 [000] D.h.. 3.612574: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758370(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] .N... 3.617495: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff80236c0000 pipe 2147484544 slot 2 length 0/15 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] dN... 3.617511: xhci_queue_trb: CTRL: bRequestType a0 bRequest 06 wValue 2900 wIndex 0000 wLength 15 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] dN... 3.617515: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e40560f0(0x00000000e4056000) deq 0x00000000e40560e0(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] dN... 3.617517: xhci_queue_trb: CTRL: Buffer 00000000e36c5a80 length 15 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] dN... 3.617519: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056100(0x00000000e4056000) deq 0x00000000e40560e0(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] dN... 3.617521: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] dN... 3.617523: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056110(0x00000000e4056000) deq 0x00000000e40560e0(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] dN... 3.617526: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-207 [000] d.h.. 3.617549: xhci_handle_event: EVENT: TRB 00000000e40560f0 status 'Short Packet' len 6 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-207 [000] d.h.. 3.617558: xhci_handle_transfer: CTRL: Buffer 00000000e36c5a80 length 15 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-207 [000] d.h.. 3.617563: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758380(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-207 [000] d.h.. 3.617565: xhci_handle_event: EVENT: TRB 00000000e4056100 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-207 [000] d.h.. 3.617568: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-207 [000] d.h.. 3.617571: xhci_inc_deq: CTRL ffffff8023781780: enq 0x00000000e4056110(0x00000000e4056000) deq 0x00000000e4056110(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-207 [000] d.h.. 3.617576: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff80236c0000 pipe 2147484544 slot 2 length 9/15 sgs 0/0 stream 0 flags 00110200
<task>-207 [000] d.h.. 3.617583: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758390(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] .N... 3.630964: xhci_ring_alloc: INTR ffffff80236c5c80: enq 0x00000000e36d1000(0x00000000e36d1000) deq 0x00000000e36d1000(0x00000000e36d1000) segs 2 stream 0 bounce 1 cycle 1
<task>-72 [001] .N... 3.630975: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 256000 us max ESIT payload 1 CErr 3 Type Int IN burst 0 maxp 1 deq 00000000e36d1001 avg trb len 1
<task>-72 [001] dN... 3.630997: xhci_configure_endpoint_ctrl_ctx: Drop: 1in, Add: slot 1in
<task>-72 [001] dN... 3.631000: xhci_configure_endpoint: RS 00002 high-speed Ctx Entries 3 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-72 [001] dN... 3.631009: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e36e9000 slot 2 flags d:C
<task>-72 [001] dN... 3.631013: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e4759130(0x00000000e4759000) deq 0x00000000e4759120(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-72 [001] dN... 3.631016: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-207 [000] d.h.. 3.631104: xhci_handle_event: EVENT: TRB 00000000e4759120 status 'Success' len 0 slot 2 ep 0 type 'Command Completion Event' flags e:C
<task>-207 [000] d.h.. 3.631114: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e36e9000 slot 2 flags d:C
<task>-207 [000] d.h.. 3.631128: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e4759130(0x00000000e4759000) deq 0x00000000e4759130(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-207 [000] d.h.. 3.631130: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47583a0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 3.638871: xhci_dbg_context_change: Successful Endpoint Configure command
<task>-72 [001] ..... 3.638890: xhci_ring_free: INTR ffffff80236cee80: enq 0x00000000e36c7000(0x00000000e36c7000) deq 0x00000000e36c7000(0x00000000e36c7000) segs 2 stream 0 bounce 1 cycle 1
<task>-72 [001] ..... 3.638920: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff80236c0100 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 3.638932: xhci_queue_trb: CTRL: bRequestType 01 bRequest 0b wValue 0001 wIndex 0000 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 3.638936: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056120(0x00000000e4056000) deq 0x00000000e4056110(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.638938: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 3.638940: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056130(0x00000000e4056000) deq 0x00000000e4056110(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.638943: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-183 [000] d.h.. 3.638967: xhci_handle_event: EVENT: TRB 00000000e4056120 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-183 [000] d.h.. 3.638977: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-183 [000] d.h.. 3.638983: xhci_inc_deq: CTRL ffffff8023781780: enq 0x00000000e4056130(0x00000000e4056000) deq 0x00000000e4056130(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-183 [000] d.h.. 3.638988: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff80236c0100 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-183 [000] d.h.. 3.638998: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47583b0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.639065: xhci_queue_trb: CMD: Stop Ring Command: slot 2 sp 0 ep 3 flags C
<task>-72 [001] d.... 3.639068: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e4759140(0x00000000e4759000) deq 0x00000000e4759130(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.639071: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-183 [000] d.h.. 3.639081: xhci_handle_event: EVENT: TRB 00000000e36d1000 status 'Stopped - Length Invalid' len 0 slot 2 ep 3 type 'Transfer Event' flags e:C
<task>-183 [000] d.h.. 3.639085: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47583c0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-183 [000] d.h.. 3.639086: xhci_handle_event: EVENT: TRB 00000000e4759130 status 'Success' len 0 slot 2 ep 0 type 'Command Completion Event' flags e:C
<task>-183 [000] d.h.. 3.639090: xhci_handle_command: CMD: Stop Ring Command: slot 2 sp 0 ep 3 flags C
<task>-183 [000] d.h.. 3.639101: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e4759140(0x00000000e4759000) deq 0x00000000e4759140(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-183 [000] d.h.. 3.639102: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47583d0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.639119: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e4fc1000 slot 2 flags d:C
<task>-72 [001] d.... 3.639121: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e4759150(0x00000000e4759000) deq 0x00000000e4759140(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.639123: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-183 [000] d.h.. 3.639199: xhci_handle_event: EVENT: TRB 00000000e4759140 status 'Success' len 0 slot 2 ep 0 type 'Command Completion Event' flags e:C
<task>-183 [000] d.h.. 3.639201: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e4fc1000 slot 2 flags d:C
<task>-183 [000] d.h.. 3.639210: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e4759150(0x00000000e4759000) deq 0x00000000e4759150(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-183 [000] d.h.. 3.639211: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47583e0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 3.639354: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff80236c0200 pipe 2147484544 slot 2 length 0/2 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 3.639358: xhci_queue_trb: CTRL: bRequestType 80 bRequest 00 wValue 0000 wIndex 0000 wLength 2 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 3.639360: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056140(0x00000000e4056000) deq 0x00000000e4056130(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.639362: xhci_queue_trb: CTRL: Buffer 00000000e36cee80 length 2 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 3.639364: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056150(0x00000000e4056000) deq 0x00000000e4056130(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.639366: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 3.639368: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056160(0x00000000e4056000) deq 0x00000000e4056130(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.639370: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-183 [000] d.h.. 3.639385: xhci_handle_event: EVENT: TRB 00000000e4056150 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-183 [000] d.h.. 3.639390: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-183 [000] d.h.. 3.639393: xhci_inc_deq: CTRL ffffff8023781780: enq 0x00000000e4056160(0x00000000e4056000) deq 0x00000000e4056160(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-183 [000] d.h.. 3.639396: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff80236c0200 pipe 2147484544 slot 2 length 2/2 sgs 0/0 stream 0 flags 00110200
<task>-183 [000] d.h.. 3.639400: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47583f0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 3.645147: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff80236c0200 pipe 2147484544 slot 2 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 3.645162: xhci_queue_trb: CTRL: bRequestType a0 bRequest 00 wValue 0000 wIndex 0000 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 3.645166: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056170(0x00000000e4056000) deq 0x00000000e4056160(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.645168: xhci_queue_trb: CTRL: Buffer 00000000e36c5a00 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 3.645170: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056180(0x00000000e4056000) deq 0x00000000e4056160(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.645172: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 3.645178: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056190(0x00000000e4056000) deq 0x00000000e4056160(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.645180: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-183 [000] d.h.. 3.645204: xhci_handle_event: EVENT: TRB 00000000e4056180 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-183 [000] d.h.. 3.645213: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-183 [000] d.h.. 3.645217: xhci_inc_deq: CTRL ffffff8023781780: enq 0x00000000e4056190(0x00000000e4056000) deq 0x00000000e4056190(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-183 [000] d.h.. 3.645221: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff80236c0200 pipe 2147484544 slot 2 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-183 [000] d.h.. 3.645230: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758400(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.645768: xhci_configure_endpoint_ctrl_ctx: Add: slot
<task>-72 [001] d.... 3.645773: xhci_configure_endpoint: RS 00002 high-speed multi-TT Hub Ctx Entries 3 MEL 0 us Port# 1/3 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-72 [001] d.... 3.645782: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e4fc1000 slot 2 flags d:C
<task>-72 [001] d.... 3.645784: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e4759160(0x00000000e4759000) deq 0x00000000e4759150(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.645787: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-183 [000] d.h.. 3.645861: xhci_handle_event: EVENT: TRB 00000000e4759150 status 'Success' len 0 slot 2 ep 0 type 'Command Completion Event' flags e:C
<task>-183 [000] d.h.. 3.645866: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e4fc1000 slot 2 flags d:C
<task>-183 [000] d.h.. 3.645881: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e4759160(0x00000000e4759000) deq 0x00000000e4759160(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-183 [000] d.h.. 3.645883: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758410(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 3.648027: xhci_dbg_context_change: Successful Endpoint Configure command
<task>-72 [001] ..... 3.648056: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff80236c0800 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 3.648065: xhci_queue_trb: CTRL: bRequestType 23 bRequest 03 wValue 0008 wIndex 0001 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 3.648069: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e40561a0(0x00000000e4056000) deq 0x00000000e4056190(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.648071: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 3.648073: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e40561b0(0x00000000e4056000) deq 0x00000000e4056190(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.648076: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-183 [000] d.h.. 3.648099: xhci_handle_event: EVENT: TRB 00000000e40561a0 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-183 [000] d.h.. 3.648107: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-183 [000] d.h.. 3.648113: xhci_inc_deq: CTRL ffffff8023781780: enq 0x00000000e40561b0(0x00000000e4056000) deq 0x00000000e40561b0(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-183 [000] d.h.. 3.648117: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff80236c0800 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-183 [000] d.h.. 3.648125: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758420(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 3.648167: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff80236c0800 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 3.648171: xhci_queue_trb: CTRL: bRequestType 23 bRequest 03 wValue 0008 wIndex 0002 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 3.648174: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e40561c0(0x00000000e4056000) deq 0x00000000e40561b0(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.648175: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 3.648177: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e40561d0(0x00000000e4056000) deq 0x00000000e40561b0(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.648178: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-31 [000] d.h.. 3.648193: xhci_handle_event: EVENT: TRB 00000000e40561c0 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-31 [000] d.h.. 3.648201: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-31 [000] d.h.. 3.648205: xhci_inc_deq: CTRL ffffff8023781780: enq 0x00000000e40561d0(0x00000000e4056000) deq 0x00000000e40561d0(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-31 [000] d.h.. 3.648207: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff80236c0800 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-31 [000] d.h.. 3.648210: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758430(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 3.648280: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff80236c0800 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 3.648285: xhci_queue_trb: CTRL: bRequestType 23 bRequest 03 wValue 0008 wIndex 0003 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 3.648287: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e40561e0(0x00000000e4056000) deq 0x00000000e40561d0(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.648288: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 3.648290: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e40561f0(0x00000000e4056000) deq 0x00000000e40561d0(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.648291: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-183 [000] d.h.. 3.648305: xhci_handle_event: EVENT: TRB 00000000e40561e0 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-183 [000] d.h.. 3.648309: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-183 [000] d.h.. 3.648313: xhci_inc_deq: CTRL ffffff8023781780: enq 0x00000000e40561f0(0x00000000e4056000) deq 0x00000000e40561f0(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-183 [000] d.h.. 3.648315: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff80236c0800 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-183 [000] d.h.. 3.648318: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758440(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 3.649137: xhci_urb_enqueue: 1-1 ep0out-control: urb ffffff80236c0900 pipe 2147484288 slot 1 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 3.649151: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0002 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 3.649155: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf63a0(0x00000000e2bf6000) deq 0x00000000e2bf6390(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.649157: xhci_queue_trb: CTRL: Buffer 00000000e4079980 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 3.649160: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf63b0(0x00000000e2bf6000) deq 0x00000000e2bf6390(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.649161: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 3.649163: xhci_inc_enq: CTRL ffffff8024780880: enq 0x00000000e2bf63c0(0x00000000e2bf6000) deq 0x00000000e2bf6390(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.649165: xhci_ring_ep_doorbell: Ring doorbell for Slot 1 ep0in
<task>-141 [000] d.h.. 3.649197: xhci_handle_event: EVENT: TRB 00000000e2bf63b0 status 'Success' len 0 slot 1 ep 1 type 'Transfer Event' flags e:C
<task>-141 [000] d.h.. 3.649206: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-141 [000] d.h.. 3.649211: xhci_inc_deq: CTRL ffffff8024780880: enq 0x00000000e2bf63c0(0x00000000e2bf6000) deq 0x00000000e2bf63c0(0x00000000e2bf6000) segs 2 stream 0 bounce 0 cycle 1
<task>-141 [000] d.h.. 3.649216: xhci_urb_giveback: 1-1 ep0out-control: urb ffffff80236c0900 pipe 2147484288 slot 1 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-141 [000] d.h.. 3.649222: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758450(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 3.750019: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff80236c0900 pipe 2147484544 slot 2 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 3.750039: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0001 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 3.750043: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056200(0x00000000e4056000) deq 0x00000000e40561f0(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.750046: xhci_queue_trb: CTRL: Buffer 00000000e36c5a00 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 3.750049: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056210(0x00000000e4056000) deq 0x00000000e40561f0(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.750050: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 3.750052: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056220(0x00000000e4056000) deq 0x00000000e40561f0(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.750055: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-183 [000] dNh.. 3.750091: xhci_handle_event: EVENT: TRB 00000000e4056210 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-183 [000] dNh.. 3.750101: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-183 [000] dNh.. 3.750107: xhci_inc_deq: CTRL ffffff8023781780: enq 0x00000000e4056220(0x00000000e4056000) deq 0x00000000e4056220(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-183 [000] dNh.. 3.750112: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff80236c0900 pipe 2147484544 slot 2 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-183 [000] dNh.. 3.750120: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758460(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 3.750172: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff80236c0900 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 3.750176: xhci_queue_trb: CTRL: bRequestType 23 bRequest 01 wValue 0010 wIndex 0001 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 3.750179: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056230(0x00000000e4056000) deq 0x00000000e4056220(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.750181: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 3.750183: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056240(0x00000000e4056000) deq 0x00000000e4056220(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.750185: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-207 [000] d.h.. 3.750198: xhci_handle_event: EVENT: TRB 00000000e4056230 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-207 [000] d.h.. 3.750202: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-207 [000] d.h.. 3.750206: xhci_inc_deq: CTRL ffffff8023781780: enq 0x00000000e4056240(0x00000000e4056000) deq 0x00000000e4056240(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-207 [000] d.h.. 3.750208: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff80236c0900 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-207 [000] d.h.. 3.750211: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758470(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 3.750248: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff80236c0900 pipe 2147484544 slot 2 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 3.750252: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0002 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 3.750254: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056250(0x00000000e4056000) deq 0x00000000e4056240(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.750256: xhci_queue_trb: CTRL: Buffer 00000000e36c5a00 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 3.750258: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056260(0x00000000e4056000) deq 0x00000000e4056240(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.750259: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 3.750261: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056270(0x00000000e4056000) deq 0x00000000e4056240(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.750263: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-183 [000] d.h.. 3.750280: xhci_handle_event: EVENT: TRB 00000000e4056260 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-183 [000] d.h.. 3.750284: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-183 [000] d.h.. 3.750287: xhci_inc_deq: CTRL ffffff8023781780: enq 0x00000000e4056270(0x00000000e4056000) deq 0x00000000e4056270(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-183 [000] d.h.. 3.750290: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff80236c0900 pipe 2147484544 slot 2 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-183 [000] d.h.. 3.750292: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758480(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 3.750330: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff80236c0900 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 3.750334: xhci_queue_trb: CTRL: bRequestType 23 bRequest 01 wValue 0010 wIndex 0002 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 3.750336: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056280(0x00000000e4056000) deq 0x00000000e4056270(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.750338: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 3.750340: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056290(0x00000000e4056000) deq 0x00000000e4056270(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.750341: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-31 [000] d.h.. 3.750384: xhci_handle_event: EVENT: TRB 00000000e4056280 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-31 [000] d.h.. 3.750388: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-31 [000] d.h.. 3.750391: xhci_inc_deq: CTRL ffffff8023781780: enq 0x00000000e4056290(0x00000000e4056000) deq 0x00000000e4056290(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-31 [000] d.h.. 3.750393: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff80236c0900 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-31 [000] d.h.. 3.750396: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758490(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 3.750430: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff80236c0900 pipe 2147484544 slot 2 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 3.750434: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0003 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 3.750437: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e40562a0(0x00000000e4056000) deq 0x00000000e4056290(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.750438: xhci_queue_trb: CTRL: Buffer 00000000e36c5a00 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 3.750440: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e40562b0(0x00000000e4056000) deq 0x00000000e4056290(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.750442: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 3.750444: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e40562c0(0x00000000e4056000) deq 0x00000000e4056290(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.750445: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-183 [000] d.h.. 3.750468: xhci_handle_event: EVENT: TRB 00000000e40562b0 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-183 [000] d.h.. 3.750472: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-183 [000] d.h.. 3.750475: xhci_inc_deq: CTRL ffffff8023781780: enq 0x00000000e40562c0(0x00000000e4056000) deq 0x00000000e40562c0(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-183 [000] d.h.. 3.750477: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff80236c0900 pipe 2147484544 slot 2 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-183 [000] d.h.. 3.750480: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47584a0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 3.858445: xhci_urb_enqueue: 1-1.2 ep1in-intr: urb ffffff80236c0200 pipe 1077969792 slot 2 length 0/1 sgs 0/0 stream 0 flags 00010200
<task>-72 [001] d.... 3.858467: xhci_queue_trb: INTR: Buffer 00000000e36c5980 length 1 TD size 0 intr 0 type 'Normal' flags b:i:I:c:s:I:e:c
<task>-72 [001] d.... 3.858472: xhci_inc_enq: INTR ffffff80236c5c80: enq 0x00000000e36d1010(0x00000000e36d1000) deq 0x00000000e36d1000(0x00000000e36d1000) segs 2 stream 0 bounce 1 cycle 1
<task>-72 [001] d.... 3.858476: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep1in
<task>-72 [001] ..... 3.858507: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff802366d400 pipe 2147484544 slot 2 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 3.858511: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0001 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 3.858513: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e40562d0(0x00000000e4056000) deq 0x00000000e40562c0(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.858515: xhci_queue_trb: CTRL: Buffer 00000000e36c5a00 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 3.858521: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e40562e0(0x00000000e4056000) deq 0x00000000e40562c0(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.858522: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 3.858525: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e40562f0(0x00000000e4056000) deq 0x00000000e40562c0(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.858526: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-240 [000] dNH.. 3.860946: xhci_handle_event: EVENT: TRB 00000000e40562e0 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-240 [000] dNH.. 3.860962: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-240 [000] dNH.. 3.860970: xhci_inc_deq: CTRL ffffff8023781780: enq 0x00000000e40562f0(0x00000000e4056000) deq 0x00000000e40562f0(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-240 [000] dNH.. 3.860978: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff802366d400 pipe 2147484544 slot 2 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-240 [000] dNH.. 3.860989: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47584b0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.861167: xhci_queue_trb: CMD: Enable Slot Command: flags C
<task>-72 [001] d.... 3.861172: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e4759170(0x00000000e4759000) deq 0x00000000e4759160(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.861175: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-240 [000] dNh.. 3.861192: xhci_handle_event: EVENT: TRB 00000000e4759160 status 'Success' len 0 slot 3 ep 0 type 'Command Completion Event' flags e:C
<task>-240 [000] dNh.. 3.861196: xhci_handle_command: CMD: Enable Slot Command: flags C
<task>-240 [000] dNh.. 3.861207: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e4759170(0x00000000e4759000) deq 0x00000000e4759170(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-240 [000] dNh.. 3.861208: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47584c0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 3.866240: xhci_ring_alloc: CTRL ffffff8025cd7380: enq 0x00000000e36c7000(0x00000000e36c7000) deq 0x00000000e36c7000(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 3.866250: xhci_alloc_virt_device: vdev ffffff8025cb2000 ctx e36b0000 | e4fc1000 num 0 state 0 speed 0 port 0 level 0 slot 0
<task>-72 [001] ..... 3.866254: xhci_alloc_dev: RS 00000 UNKNOWN speed Ctx Entries 0 MEL 0 us Port# 0/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-72 [001] ..... 3.866317: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff802366d300 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 3.866329: xhci_queue_trb: CTRL: bRequestType 23 bRequest 03 wValue 0004 wIndex 0001 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 3.866333: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056300(0x00000000e4056000) deq 0x00000000e40562f0(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.866334: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 3.866336: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056310(0x00000000e4056000) deq 0x00000000e40562f0(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.866339: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-240 [000] dNH.. 3.867407: xhci_handle_event: EVENT: TRB 00000000e4056300 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-240 [000] dNH.. 3.867417: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-240 [000] dNH.. 3.867425: xhci_inc_deq: CTRL ffffff8023781780: enq 0x00000000e4056310(0x00000000e4056000) deq 0x00000000e4056310(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-240 [000] dNH.. 3.867432: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff802366d300 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-240 [000] dNH.. 3.867441: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47584d0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 3.892843: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff802366d400 pipe 2147484544 slot 2 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 3.892860: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0001 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 3.892865: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056320(0x00000000e4056000) deq 0x00000000e4056310(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.892868: xhci_queue_trb: CTRL: Buffer 00000000e36c5a00 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 3.892870: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056330(0x00000000e4056000) deq 0x00000000e4056310(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.892871: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 3.892873: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056340(0x00000000e4056000) deq 0x00000000e4056310(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.892876: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-242 [000] d.h.. 3.892903: xhci_handle_event: EVENT: TRB 00000000e4056330 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-242 [000] d.h.. 3.892913: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-242 [000] d.h.. 3.892919: xhci_inc_deq: CTRL ffffff8023781780: enq 0x00000000e4056340(0x00000000e4056000) deq 0x00000000e4056340(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-242 [000] d.h.. 3.892925: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff802366d400 pipe 2147484544 slot 2 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-242 [000] d.h.. 3.892935: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47584e0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 3.893505: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff802366d400 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 3.893516: xhci_queue_trb: CTRL: bRequestType 23 bRequest 01 wValue 0014 wIndex 0001 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 3.893519: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056350(0x00000000e4056000) deq 0x00000000e4056340(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.893521: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 3.893523: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056360(0x00000000e4056000) deq 0x00000000e4056340(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.893525: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-242 [000] d.h.. 3.893553: xhci_handle_event: EVENT: TRB 00000000e4056350 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-242 [000] d.h.. 3.893560: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-242 [000] d.h.. 3.893565: xhci_inc_deq: CTRL ffffff8023781780: enq 0x00000000e4056360(0x00000000e4056000) deq 0x00000000e4056360(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-242 [000] d.h.. 3.893569: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff802366d400 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-242 [000] d.h.. 3.893576: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47584f0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] .N... 3.965619: xhci_setup_device_slot: RS 00000 UNKNOWN speed Ctx Entries 0 MEL 0 us Port# 0/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-72 [001] .N... 3.965640: xhci_setup_addressable_virt_device: vdev ffffff8025cb2000 ctx e36b0000 | e4fc1000 num 0 state 5 speed 3 port 1 level 3 slot 3
<task>-72 [001] .N... 3.965643: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e36b0000, ctx_va=@ffffffc080f4d000
<task>-72 [001] .N... 3.965648: xhci_address_ctrl_ctx: Add: slot ep0
<task>-72 [001] dN... 3.965651: xhci_setup_device: vdev ffffff8025cb2000 ctx e36b0000 | e4fc1000 num 0 state 5 speed 3 port 1 level 3 slot 3
<task>-72 [001] dN... 3.965662: xhci_queue_trb: CMD: Address Device Command: ctx 00000000e36b0000 slot 3 flags B:C
<task>-72 [001] dN... 3.965666: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e4759180(0x00000000e4759000) deq 0x00000000e4759170(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-72 [001] dN... 3.965669: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-183 [000] d.h.. 3.965691: xhci_handle_event: EVENT: TRB 00000000e4759170 status 'Success' len 0 slot 3 ep 0 type 'Command Completion Event' flags e:C
<task>-183 [000] d.h.. 3.965696: xhci_handle_command: CMD: Address Device Command: ctx 00000000e36b0000 slot 3 flags B:C
<task>-183 [000] d.h.. 3.965702: xhci_handle_cmd_addr_dev: RS 00012 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<task>-183 [000] d.h.. 3.965714: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e4759180(0x00000000e4759000) deq 0x00000000e4759180(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-183 [000] d.h.. 3.965716: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758500(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 3.991795: xhci_dbg_address: Successful setup context command
<task>-72 [001] ..... 3.991806: xhci_dbg_address: Op regs DCBAA ptr = 0x000000e475a000
<task>-72 [001] ..... 3.991813: xhci_dbg_address: Slot ID 3 dcbaa entry @ffffffc080c1d018 = 0x000000e4fc1000
<task>-72 [001] ..... 3.991818: xhci_dbg_address: Output Context DMA address = 0xe4fc1000
<task>-72 [001] ..... 3.991823: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e36b0000, ctx_va=@ffffffc080f4d000
<task>-72 [001] ..... 3.991826: xhci_address_ctx: ctx_64=0, ctx_type=1, ctx_dma=@e4fc1000, ctx_va=@ffffffc081ba2000
<task>-72 [001] ..... 3.991829: xhci_dbg_address: Internal device address = 0
<task>-72 [001] ..... 3.991875: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff802366d400 pipe 2147483776 slot 3 length 0/64 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 3.991887: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0100 wIndex 0000 wLength 64 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 3.991891: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7010(0x00000000e36c7000) deq 0x00000000e36c7000(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.991894: xhci_queue_trb: CTRL: Buffer 00000000e5cea600 length 64 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 3.991896: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7020(0x00000000e36c7000) deq 0x00000000e36c7000(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.991897: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 3.991899: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7030(0x00000000e36c7000) deq 0x00000000e36c7000(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 3.991902: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-183 [000] d.h.. 3.991924: xhci_handle_event: EVENT: TRB 00000000e36c7010 status 'Short Packet' len 46 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-183 [000] d.h.. 3.991937: xhci_handle_transfer: CTRL: Buffer 00000000e5cea600 length 64 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-183 [000] d.h.. 3.991942: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758510(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-183 [000] d.h.. 3.991944: xhci_handle_event: EVENT: TRB 00000000e36c7020 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-183 [000] d.h.. 3.991947: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-183 [000] d.h.. 3.991950: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7030(0x00000000e36c7000) deq 0x00000000e36c7030(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-183 [000] d.h.. 3.991955: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff802366d400 pipe 2147483776 slot 3 length 18/64 sgs 0/0 stream 0 flags 00110200
<task>-183 [000] d.h.. 3.991964: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758520(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.017103: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff80236a0900 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.017121: xhci_queue_trb: CTRL: bRequestType 23 bRequest 03 wValue 0004 wIndex 0001 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.017126: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056370(0x00000000e4056000) deq 0x00000000e4056360(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.017128: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.017130: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056380(0x00000000e4056000) deq 0x00000000e4056360(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.017133: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-183 [000] d.h.. 4.017158: xhci_handle_event: EVENT: TRB 00000000e4056370 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-183 [000] d.h.. 4.017167: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-183 [000] d.h.. 4.017174: xhci_inc_deq: CTRL ffffff8023781780: enq 0x00000000e4056380(0x00000000e4056000) deq 0x00000000e4056380(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-183 [000] d.h.. 4.017179: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff80236a0900 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-183 [000] d.h.. 4.017188: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758530(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.030026: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff80236a0800 pipe 2147484544 slot 2 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.030044: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0001 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.030049: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056390(0x00000000e4056000) deq 0x00000000e4056380(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.030051: xhci_queue_trb: CTRL: Buffer 00000000e36c5a00 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.030053: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e40563a0(0x00000000e4056000) deq 0x00000000e4056380(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.030055: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.030056: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e40563b0(0x00000000e4056000) deq 0x00000000e4056380(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.030059: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-183 [000] d.h.. 4.030088: xhci_handle_event: EVENT: TRB 00000000e40563a0 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-183 [000] d.h.. 4.030097: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-183 [000] d.h.. 4.030103: xhci_inc_deq: CTRL ffffff8023781780: enq 0x00000000e40563b0(0x00000000e4056000) deq 0x00000000e40563b0(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-183 [000] d.h.. 4.030108: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff80236a0800 pipe 2147484544 slot 2 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-183 [000] d.h.. 4.030115: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758540(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.054065: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff80236a0f00 pipe 2147484544 slot 2 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.054089: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0001 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.054096: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e40563c0(0x00000000e4056000) deq 0x00000000e40563b0(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.054099: xhci_queue_trb: CTRL: Buffer 00000000e36c5a00 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.054101: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e40563d0(0x00000000e4056000) deq 0x00000000e40563b0(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.054103: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.054109: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e40563e0(0x00000000e4056000) deq 0x00000000e40563b0(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.054112: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<idle>-0 [000] d.h.. 4.054275: xhci_handle_event: EVENT: TRB 00000000e40563d0 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.054287: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.054294: xhci_inc_deq: CTRL ffffff8023781780: enq 0x00000000e40563e0(0x00000000e4056000) deq 0x00000000e40563e0(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.054303: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff80236a0f00 pipe 2147484544 slot 2 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.054311: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758550(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.054391: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff80236a0f00 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.054397: xhci_queue_trb: CTRL: bRequestType 23 bRequest 01 wValue 0014 wIndex 0001 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.054400: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e40563f0(0x00000000e4056000) deq 0x00000000e40563e0(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.054402: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.054404: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056400(0x00000000e4056000) deq 0x00000000e40563e0(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.054406: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<idle>-0 [000] d.h.. 4.054443: xhci_handle_event: EVENT: TRB 00000000e40563f0 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.054448: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.054452: xhci_inc_deq: CTRL ffffff8023781780: enq 0x00000000e4056400(0x00000000e4056000) deq 0x00000000e4056400(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.054455: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff80236a0f00 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.054459: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758560(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.109923: xhci_discover_or_reset_device: RS 00012 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<task>-72 [001] d.... 4.109945: xhci_queue_trb: CMD: Reset Device Command: slot 3 flags C
<task>-72 [001] d.... 4.109950: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e4759190(0x00000000e4759000) deq 0x00000000e4759180(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.109953: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 4.109982: xhci_handle_event: EVENT: TRB 00000000e4759180 status 'Context State Error' len 0 slot 3 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 4.109988: xhci_handle_command: CMD: Reset Device Command: slot 3 flags C
<idle>-0 [000] d.h.. 4.109994: xhci_handle_cmd_reset_dev: RS 00012 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<idle>-0 [000] d.h.. 4.110007: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e4759190(0x00000000e4759000) deq 0x00000000e4759190(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.110010: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758570(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.110040: xhci_setup_device_slot: RS 00012 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<task>-72 [001] ..... 4.110047: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e36b0000, ctx_va=@ffffffc080f4d000
<task>-72 [001] ..... 4.110051: xhci_address_ctrl_ctx: Add: slot ep0
<task>-72 [001] d.... 4.110054: xhci_setup_device: vdev ffffff8025cb2000 ctx e36b0000 | e4fc1000 num 0 state 5 speed 3 port 1 level 3 slot 3
<task>-72 [001] d.... 4.110058: xhci_queue_trb: CMD: Address Device Command: ctx 00000000e36b0000 slot 3 flags b:C
<task>-72 [001] d.... 4.110060: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e47591a0(0x00000000e4759000) deq 0x00000000e4759190(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.110062: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 4.110083: xhci_handle_event: EVENT: TRB 00000000e4759190 status 'Success' len 0 slot 3 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 4.110086: xhci_handle_command: CMD: Address Device Command: ctx 00000000e36b0000 slot 3 flags b:C
<idle>-0 [000] d.h.. 4.110090: xhci_handle_cmd_addr_dev: RS 00012 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 3 State addressed
<idle>-0 [000] d.h.. 4.110097: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e47591a0(0x00000000e4759000) deq 0x00000000e47591a0(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.110098: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758580(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.110123: xhci_dbg_address: Successful setup address command
<task>-72 [001] ..... 4.110131: xhci_dbg_address: Op regs DCBAA ptr = 0x000000e475a000
<task>-72 [001] ..... 4.110138: xhci_dbg_address: Slot ID 3 dcbaa entry @ffffffc080c1d018 = 0x000000e4fc1000
<task>-72 [001] ..... 4.110143: xhci_dbg_address: Output Context DMA address = 0xe4fc1000
<task>-72 [001] ..... 4.110146: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e36b0000, ctx_va=@ffffffc080f4d000
<task>-72 [001] ..... 4.110148: xhci_address_ctx: ctx_64=0, ctx_type=1, ctx_dma=@e4fc1000, ctx_va=@ffffffc081ba2000
<task>-72 [001] ..... 4.110151: xhci_dbg_address: Internal device address = 3
<task>-72 [001] ..... 4.125939: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0f00 pipe 2147484800 slot 3 length 0/18 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.125949: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0100 wIndex 0000 wLength 18 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.125952: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7040(0x00000000e36c7000) deq 0x00000000e36c7030(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.125955: xhci_queue_trb: CTRL: Buffer 00000000e3614700 length 18 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.125957: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7050(0x00000000e36c7000) deq 0x00000000e36c7030(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.125958: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.125960: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7060(0x00000000e36c7000) deq 0x00000000e36c7030(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.125963: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.125989: xhci_handle_event: EVENT: TRB 00000000e36c7050 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.125996: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.126001: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7060(0x00000000e36c7000) deq 0x00000000e36c7060(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.126007: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0f00 pipe 2147484800 slot 3 length 18/18 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.126015: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758590(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.126099: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0f00 pipe 2147484800 slot 3 length 0/9 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.126103: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0200 wIndex 0000 wLength 9 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.126106: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7070(0x00000000e36c7000) deq 0x00000000e36c7060(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.126108: xhci_queue_trb: CTRL: Buffer 00000000e3614900 length 9 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.126110: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7080(0x00000000e36c7000) deq 0x00000000e36c7060(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.126111: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.126113: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7090(0x00000000e36c7000) deq 0x00000000e36c7060(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.126115: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.126138: xhci_handle_event: EVENT: TRB 00000000e36c7080 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.126142: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.126146: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7090(0x00000000e36c7000) deq 0x00000000e36c7090(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.126148: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0f00 pipe 2147484800 slot 3 length 9/9 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.126151: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47585a0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.126191: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0f00 pipe 2147484800 slot 3 length 0/39 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.126196: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0200 wIndex 0000 wLength 39 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.126198: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c70a0(0x00000000e36c7000) deq 0x00000000e36c7090(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.126199: xhci_queue_trb: CTRL: Buffer 00000000e3614a00 length 39 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.126201: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c70b0(0x00000000e36c7000) deq 0x00000000e36c7090(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.126203: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.126205: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c70c0(0x00000000e36c7000) deq 0x00000000e36c7090(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.126206: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.126232: xhci_handle_event: EVENT: TRB 00000000e36c70b0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.126236: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.126239: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c70c0(0x00000000e36c7000) deq 0x00000000e36c70c0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.126241: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0f00 pipe 2147484800 slot 3 length 39/39 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.126244: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47585b0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.126921: xhci_ring_alloc: BULK ffffff8025d39700: enq 0x00000000e3618000(0x00000000e3618000) deq 0x00000000e3618000(0x00000000e3618000) segs 2 stream 0 bounce 512 cycle 1
<task>-72 [001] ..... 4.126926: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 125 us max ESIT payload 0 CErr 3 Type Bulk IN burst 0 maxp 512 deq 00000000e3618001 avg trb len 0
<task>-72 [001] ..... 4.126950: xhci_ring_alloc: BULK ffffff8023610000: enq 0x00000000e360f000(0x00000000e360f000) deq 0x00000000e360f000(0x00000000e360f000) segs 2 stream 0 bounce 512 cycle 1
<task>-72 [001] ..... 4.126951: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 125 us max ESIT payload 0 CErr 3 Type Bulk OUT burst 0 maxp 512 deq 00000000e360f001 avg trb len 0
<task>-72 [001] ..... 4.126973: xhci_ring_alloc: INTR ffffff8023610380: enq 0x00000000e360a000(0x00000000e360a000) deq 0x00000000e360a000(0x00000000e360a000) segs 2 stream 0 bounce 16 cycle 1
<task>-72 [001] ..... 4.126974: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 1000 us max ESIT payload 16 CErr 3 Type Int IN burst 0 maxp 16 deq 00000000e360a001 avg trb len 16
<task>-72 [001] d.... 4.126988: xhci_configure_endpoint_ctrl_ctx: Add: slot 1in 2out 3in
<task>-72 [001] d.... 4.126991: xhci_configure_endpoint: RS 00012 high-speed Ctx Entries 7 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-72 [001] d.... 4.126998: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e36b0000 slot 3 flags d:C
<task>-72 [001] d.... 4.127001: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e47591b0(0x00000000e4759000) deq 0x00000000e47591a0(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.127003: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 4.127105: xhci_handle_event: EVENT: TRB 00000000e47591a0 status 'Success' len 0 slot 3 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 4.127108: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e36b0000 slot 3 flags d:C
<idle>-0 [000] d.h.. 4.127120: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e47591b0(0x00000000e4759000) deq 0x00000000e47591b0(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.127121: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47585c0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.127425: xhci_dbg_context_change: Successful Endpoint Configure command
<task>-72 [001] d.... 4.127462: xhci_queue_trb: CMD: Stop Ring Command: slot 3 sp 0 ep 3 flags C
<task>-72 [001] d.... 4.127464: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e47591c0(0x00000000e4759000) deq 0x00000000e47591b0(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.127466: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-179 [000] d.h.. 4.127482: xhci_handle_event: EVENT: TRB 00000000e3618000 status 'Stopped - Length Invalid' len 0 slot 3 ep 3 type 'Transfer Event' flags e:C
<task>-179 [000] d.h.. 4.127487: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47585d0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-179 [000] d.h.. 4.127489: xhci_handle_event: EVENT: TRB 00000000e47591b0 status 'Success' len 0 slot 3 ep 0 type 'Command Completion Event' flags e:C
<task>-179 [000] d.h.. 4.127491: xhci_handle_command: CMD: Stop Ring Command: slot 3 sp 0 ep 3 flags C
<task>-179 [000] d.h.. 4.127505: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e47591c0(0x00000000e4759000) deq 0x00000000e47591c0(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-179 [000] d.h.. 4.127506: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47585e0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.127538: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e4fc2000 slot 3 flags d:C
<task>-72 [001] d.... 4.127540: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e47591d0(0x00000000e4759000) deq 0x00000000e47591c0(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.127542: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 4.127644: xhci_handle_event: EVENT: TRB 00000000e47591c0 status 'Success' len 0 slot 3 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 4.127647: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e4fc2000 slot 3 flags d:C
<idle>-0 [000] d.h.. 4.127658: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e47591d0(0x00000000e4759000) deq 0x00000000e47591d0(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.127660: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47585f0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.127683: xhci_queue_trb: CMD: Stop Ring Command: slot 3 sp 0 ep 4 flags C
<task>-72 [001] d.... 4.127685: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e47591e0(0x00000000e4759000) deq 0x00000000e47591d0(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.127686: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 4.127705: xhci_handle_event: EVENT: TRB 00000000e360f000 status 'Stopped - Length Invalid' len 0 slot 3 ep 4 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.127709: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758600(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.127710: xhci_handle_event: EVENT: TRB 00000000e47591d0 status 'Success' len 0 slot 3 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 4.127713: xhci_handle_command: CMD: Stop Ring Command: slot 3 sp 0 ep 4 flags C
<idle>-0 [000] d.h.. 4.127723: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e47591e0(0x00000000e4759000) deq 0x00000000e47591e0(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.127724: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758610(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.127743: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e4fc2000 slot 3 flags d:C
<task>-72 [001] d.... 4.127746: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e47591f0(0x00000000e4759000) deq 0x00000000e47591e0(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.127747: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 4.127850: xhci_handle_event: EVENT: TRB 00000000e47591e0 status 'Success' len 0 slot 3 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 4.127853: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e4fc2000 slot 3 flags d:C
<idle>-0 [000] d.h.. 4.127865: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e47591f0(0x00000000e4759000) deq 0x00000000e47591f0(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.127866: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758620(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.127886: xhci_queue_trb: CMD: Stop Ring Command: slot 3 sp 0 ep 7 flags C
<task>-72 [001] d.... 4.127889: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e4759200(0x00000000e4759000) deq 0x00000000e47591f0(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.127890: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 4.127909: xhci_handle_event: EVENT: TRB 00000000e360a000 status 'Stopped - Length Invalid' len 0 slot 3 ep 7 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.127913: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758630(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.127914: xhci_handle_event: EVENT: TRB 00000000e47591f0 status 'Success' len 0 slot 3 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 4.127916: xhci_handle_command: CMD: Stop Ring Command: slot 3 sp 0 ep 7 flags C
<idle>-0 [000] d.h.. 4.127928: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e4759200(0x00000000e4759000) deq 0x00000000e4759200(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.127930: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758640(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.127949: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e4fc2000 slot 3 flags d:C
<task>-72 [001] d.... 4.127953: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e4759210(0x00000000e4759000) deq 0x00000000e4759200(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.127954: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 4.128053: xhci_handle_event: EVENT: TRB 00000000e4759200 status 'Success' len 0 slot 3 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 4.128055: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e4fc2000 slot 3 flags d:C
<idle>-0 [000] d.h.. 4.128067: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e4759210(0x00000000e4759000) deq 0x00000000e4759210(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.128069: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758650(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.128114: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0d00 pipe 2147484672 slot 3 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.128121: xhci_queue_trb: CTRL: bRequestType 00 bRequest 09 wValue 0001 wIndex 0000 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.128123: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c70d0(0x00000000e36c7000) deq 0x00000000e36c70c0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.128125: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.128127: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c70e0(0x00000000e36c7000) deq 0x00000000e36c70c0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.128129: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.130177: xhci_handle_event: EVENT: TRB 00000000e36c70d0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.130184: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.130189: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c70e0(0x00000000e36c7000) deq 0x00000000e36c70e0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.130194: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0d00 pipe 2147484672 slot 3 length 0/0 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.130203: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758660(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] .N... 4.134009: xhci_ring_alloc: BULK ffffff802360e000: enq 0x00000000e360d000(0x00000000e360d000) deq 0x00000000e360d000(0x00000000e360d000) segs 2 stream 0 bounce 512 cycle 1
<task>-72 [001] .N... 4.134019: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 125 us max ESIT payload 0 CErr 3 Type Bulk IN burst 0 maxp 512 deq 00000000e360d001 avg trb len 0
<task>-72 [001] .N... 4.134050: xhci_ring_alloc: BULK ffffff802360e300: enq 0x00000000e3611000(0x00000000e3611000) deq 0x00000000e3611000(0x00000000e3611000) segs 2 stream 0 bounce 512 cycle 1
<task>-72 [001] .N... 4.134052: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 125 us max ESIT payload 0 CErr 3 Type Bulk OUT burst 0 maxp 512 deq 00000000e3611001 avg trb len 0
<task>-72 [001] .N... 4.134075: xhci_ring_alloc: INTR ffffff802360e680: enq 0x00000000e36a9000(0x00000000e36a9000) deq 0x00000000e36a9000(0x00000000e36a9000) segs 2 stream 0 bounce 16 cycle 1
<task>-72 [001] .N... 4.134076: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 1000 us max ESIT payload 16 CErr 3 Type Int IN burst 0 maxp 16 deq 00000000e36a9001 avg trb len 16
<task>-72 [001] dN... 4.134092: xhci_configure_endpoint_ctrl_ctx: Drop: 1in 2out 3in, Add: slot 1in 2out 3in
<task>-72 [001] dN... 4.134095: xhci_configure_endpoint: RS 00012 high-speed Ctx Entries 7 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-72 [001] dN... 4.134104: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e36b0000 slot 3 flags d:C
<task>-72 [001] dN... 4.134108: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e4759220(0x00000000e4759000) deq 0x00000000e4759210(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-72 [001] dN... 4.134110: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-127 [000] d.h.. 4.134223: xhci_handle_event: EVENT: TRB 00000000e4759210 status 'Success' len 0 slot 3 ep 0 type 'Command Completion Event' flags e:C
<task>-127 [000] d.h.. 4.134229: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e36b0000 slot 3 flags d:C
<task>-127 [000] d.h.. 4.134243: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e4759220(0x00000000e4759000) deq 0x00000000e4759220(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-127 [000] d.h.. 4.134245: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758670(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.134327: xhci_dbg_context_change: Successful Endpoint Configure command
<task>-72 [001] ..... 4.134338: xhci_ring_free: BULK ffffff8025d39700: enq 0x00000000e3618000(0x00000000e3618000) deq 0x00000000e3618000(0x00000000e3618000) segs 2 stream 0 bounce 512 cycle 1
<task>-72 [001] ..... 4.134347: xhci_ring_free: BULK ffffff8023610000: enq 0x00000000e360f000(0x00000000e360f000) deq 0x00000000e360f000(0x00000000e360f000) segs 2 stream 0 bounce 512 cycle 1
<task>-72 [001] ..... 4.134351: xhci_ring_free: INTR ffffff8023610380: enq 0x00000000e360a000(0x00000000e360a000) deq 0x00000000e360a000(0x00000000e360a000) segs 2 stream 0 bounce 16 cycle 1
<task>-72 [001] ..... 4.134371: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0b00 pipe 2147484672 slot 3 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.134380: xhci_queue_trb: CTRL: bRequestType 01 bRequest 0b wValue 0000 wIndex 0000 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.134383: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c70f0(0x00000000e36c7000) deq 0x00000000e36c70e0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.134384: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.134386: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7100(0x00000000e36c7000) deq 0x00000000e36c70e0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.134389: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-127 [000] d.h.. 4.134404: xhci_handle_event: EVENT: TRB 00000000e36c70f0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-127 [000] d.h.. 4.134412: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-127 [000] d.h.. 4.134416: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7100(0x00000000e36c7000) deq 0x00000000e36c7100(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-127 [000] d.h.. 4.134421: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0b00 pipe 2147484672 slot 3 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-127 [000] d.h.. 4.134427: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758680(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.135150: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.135159: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0030 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.135162: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7110(0x00000000e36c7000) deq 0x00000000e36c7100(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.135164: xhci_queue_trb: CTRL: Buffer 00000000e36b2500 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.135166: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7120(0x00000000e36c7000) deq 0x00000000e36c7100(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.135168: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.135170: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7130(0x00000000e36c7000) deq 0x00000000e36c7100(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.135172: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.135205: xhci_handle_event: EVENT: TRB 00000000e36c7120 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.135212: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.135216: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7130(0x00000000e36c7000) deq 0x00000000e36c7130(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.135219: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.135225: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758690(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.135293: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.135297: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0030 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.135299: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7140(0x00000000e36c7000) deq 0x00000000e36c7130(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.135301: xhci_queue_trb: CTRL: Buffer 0000000080000001 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.135303: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7150(0x00000000e36c7000) deq 0x00000000e36c7130(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.135304: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.135306: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7160(0x00000000e36c7000) deq 0x00000000e36c7130(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.135307: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.135333: xhci_handle_event: EVENT: TRB 00000000e36c7150 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.135337: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.135341: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7160(0x00000000e36c7000) deq 0x00000000e36c7160(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.135343: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.135346: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47586a0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.135394: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.135398: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0030 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.135400: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7170(0x00000000e36c7000) deq 0x00000000e36c7160(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.135401: xhci_queue_trb: CTRL: Buffer 00000000e36b2500 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.135404: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7180(0x00000000e36c7000) deq 0x00000000e36c7160(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.135405: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.135407: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7190(0x00000000e36c7000) deq 0x00000000e36c7160(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.135408: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.135435: xhci_handle_event: EVENT: TRB 00000000e36c7180 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.135439: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.135442: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7190(0x00000000e36c7000) deq 0x00000000e36c7190(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.135444: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.135447: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47586b0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.135493: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.135497: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0034 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.135499: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c71a0(0x00000000e36c7000) deq 0x00000000e36c7190(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.135500: xhci_queue_trb: CTRL: Buffer 00000000e36b2500 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.135502: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c71b0(0x00000000e36c7000) deq 0x00000000e36c7190(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.135503: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.135506: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c71c0(0x00000000e36c7000) deq 0x00000000e36c7190(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.135507: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.135532: xhci_handle_event: EVENT: TRB 00000000e36c71b0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.135536: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.135539: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c71c0(0x00000000e36c7000) deq 0x00000000e36c71c0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.135541: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.135544: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47586c0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.135587: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.135591: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0030 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.135593: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c71d0(0x00000000e36c7000) deq 0x00000000e36c71c0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.135594: xhci_queue_trb: CTRL: Buffer 0000000080000002 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.135596: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c71e0(0x00000000e36c7000) deq 0x00000000e36c71c0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.135598: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.135600: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c71f0(0x00000000e36c7000) deq 0x00000000e36c71c0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.135601: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.135624: xhci_handle_event: EVENT: TRB 00000000e36c71e0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.135627: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.135630: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c71f0(0x00000000e36c7000) deq 0x00000000e36c71f0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.135632: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.135635: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47586d0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.135680: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.135684: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0030 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.135686: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7200(0x00000000e36c7000) deq 0x00000000e36c71f0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.135688: xhci_queue_trb: CTRL: Buffer 00000000e36b2500 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.135690: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7210(0x00000000e36c7000) deq 0x00000000e36c71f0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.135691: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.135693: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7220(0x00000000e36c7000) deq 0x00000000e36c71f0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.135698: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.135727: xhci_handle_event: EVENT: TRB 00000000e36c7210 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.135731: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.135734: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7220(0x00000000e36c7000) deq 0x00000000e36c7220(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.135736: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.135739: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47586e0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.135785: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.135789: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0034 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.135791: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7230(0x00000000e36c7000) deq 0x00000000e36c7220(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.135793: xhci_queue_trb: CTRL: Buffer 00000000e36b2500 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.135795: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7240(0x00000000e36c7000) deq 0x00000000e36c7220(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.135796: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.135798: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7250(0x00000000e36c7000) deq 0x00000000e36c7220(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.135800: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.135822: xhci_handle_event: EVENT: TRB 00000000e36c7240 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.135826: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.135829: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7250(0x00000000e36c7000) deq 0x00000000e36c7250(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.135832: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.135834: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47586f0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.135879: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.135883: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0030 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.135885: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7260(0x00000000e36c7000) deq 0x00000000e36c7250(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.135887: xhci_queue_trb: CTRL: Buffer 0000000080000003 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.135889: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7270(0x00000000e36c7000) deq 0x00000000e36c7250(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.135890: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.135892: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7280(0x00000000e36c7000) deq 0x00000000e36c7250(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.135894: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.135919: xhci_handle_event: EVENT: TRB 00000000e36c7270 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.135923: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.135926: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7280(0x00000000e36c7000) deq 0x00000000e36c7280(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.135928: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.135931: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758700(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.135974: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.135978: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0030 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.135980: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7290(0x00000000e36c7000) deq 0x00000000e36c7280(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.135981: xhci_queue_trb: CTRL: Buffer 00000000e36b2500 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.135983: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c72a0(0x00000000e36c7000) deq 0x00000000e36c7280(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.135985: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.135987: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c72b0(0x00000000e36c7000) deq 0x00000000e36c7280(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.135988: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.136013: xhci_handle_event: EVENT: TRB 00000000e36c72a0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.136017: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.136022: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c72b0(0x00000000e36c7000) deq 0x00000000e36c72b0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.136024: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.136027: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758710(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.136073: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.136077: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0034 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.136079: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c72c0(0x00000000e36c7000) deq 0x00000000e36c72b0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.136080: xhci_queue_trb: CTRL: Buffer 00000000e36b2500 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.136082: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c72d0(0x00000000e36c7000) deq 0x00000000e36c72b0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.136083: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.136085: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c72e0(0x00000000e36c7000) deq 0x00000000e36c72b0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.136087: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.136112: xhci_handle_event: EVENT: TRB 00000000e36c72d0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.136116: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.136119: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c72e0(0x00000000e36c7000) deq 0x00000000e36c72e0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.136121: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.136124: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758720(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.136165: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.136169: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0030 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.136171: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c72f0(0x00000000e36c7000) deq 0x00000000e36c72e0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.136172: xhci_queue_trb: CTRL: Buffer 0000000080000004 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.136174: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7300(0x00000000e36c7000) deq 0x00000000e36c72e0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.136176: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.136178: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7310(0x00000000e36c7000) deq 0x00000000e36c72e0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.136179: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.136204: xhci_handle_event: EVENT: TRB 00000000e36c7300 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.136208: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.136211: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7310(0x00000000e36c7000) deq 0x00000000e36c7310(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.136213: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.136216: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758730(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.136257: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.136261: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0030 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.136263: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7320(0x00000000e36c7000) deq 0x00000000e36c7310(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.136264: xhci_queue_trb: CTRL: Buffer 00000000e36b2500 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.136267: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7330(0x00000000e36c7000) deq 0x00000000e36c7310(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.136268: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.136270: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7340(0x00000000e36c7000) deq 0x00000000e36c7310(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.136271: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.136296: xhci_handle_event: EVENT: TRB 00000000e36c7330 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.136300: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.136303: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7340(0x00000000e36c7000) deq 0x00000000e36c7340(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.136305: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.136308: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758740(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.136354: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.136357: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0034 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.136360: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7350(0x00000000e36c7000) deq 0x00000000e36c7340(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.136361: xhci_queue_trb: CTRL: Buffer 00000000e36b2500 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.136363: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7360(0x00000000e36c7000) deq 0x00000000e36c7340(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.136364: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.136366: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7370(0x00000000e36c7000) deq 0x00000000e36c7340(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.136368: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.136390: xhci_handle_event: EVENT: TRB 00000000e36c7360 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.136394: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.136398: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7370(0x00000000e36c7000) deq 0x00000000e36c7370(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.136400: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.136403: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758750(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.136446: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.136449: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0030 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.136451: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7380(0x00000000e36c7000) deq 0x00000000e36c7370(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.136453: xhci_queue_trb: CTRL: Buffer 0000000080000005 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.136455: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7390(0x00000000e36c7000) deq 0x00000000e36c7370(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.136456: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.136458: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c73a0(0x00000000e36c7000) deq 0x00000000e36c7370(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.136460: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.136485: xhci_handle_event: EVENT: TRB 00000000e36c7390 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.136489: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.136492: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c73a0(0x00000000e36c7000) deq 0x00000000e36c73a0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.136494: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.136497: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758760(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.136539: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.136543: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0030 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.136545: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c73b0(0x00000000e36c7000) deq 0x00000000e36c73a0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.136547: xhci_queue_trb: CTRL: Buffer 00000000e36b2500 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.136549: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c73c0(0x00000000e36c7000) deq 0x00000000e36c73a0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.136550: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.136552: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c73d0(0x00000000e36c7000) deq 0x00000000e36c73a0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.136553: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.136579: xhci_handle_event: EVENT: TRB 00000000e36c73c0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.136583: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.136586: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c73d0(0x00000000e36c7000) deq 0x00000000e36c73d0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.136588: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.136591: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758770(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.136635: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.136639: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0034 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.136641: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c73e0(0x00000000e36c7000) deq 0x00000000e36c73d0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.136643: xhci_queue_trb: CTRL: Buffer 00000000e36b2500 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.136646: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c73f0(0x00000000e36c7000) deq 0x00000000e36c73d0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.136647: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.136649: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7400(0x00000000e36c7000) deq 0x00000000e36c73d0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.136650: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.136675: xhci_handle_event: EVENT: TRB 00000000e36c73f0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.136678: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.136682: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7400(0x00000000e36c7000) deq 0x00000000e36c7400(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.136684: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.136687: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758780(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.136728: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.136731: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0030 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.136733: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7410(0x00000000e36c7000) deq 0x00000000e36c7400(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.136735: xhci_queue_trb: CTRL: Buffer 0000000080000006 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.136737: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7420(0x00000000e36c7000) deq 0x00000000e36c7400(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.136738: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.136740: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7430(0x00000000e36c7000) deq 0x00000000e36c7400(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.136742: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.136764: xhci_handle_event: EVENT: TRB 00000000e36c7420 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.136768: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.136772: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7430(0x00000000e36c7000) deq 0x00000000e36c7430(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.136774: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.136777: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758790(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.136818: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.136822: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0030 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.136824: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7440(0x00000000e36c7000) deq 0x00000000e36c7430(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.136825: xhci_queue_trb: CTRL: Buffer 00000000e36b2500 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.136827: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7450(0x00000000e36c7000) deq 0x00000000e36c7430(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.136828: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.136830: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7460(0x00000000e36c7000) deq 0x00000000e36c7430(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.136832: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.136857: xhci_handle_event: EVENT: TRB 00000000e36c7450 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.136860: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.136864: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7460(0x00000000e36c7000) deq 0x00000000e36c7460(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.136866: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.136868: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47587a0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.136912: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.136915: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0034 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.136918: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7470(0x00000000e36c7000) deq 0x00000000e36c7460(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.136919: xhci_queue_trb: CTRL: Buffer 00000000e36b2500 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.136921: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7480(0x00000000e36c7000) deq 0x00000000e36c7460(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.136922: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.136925: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7490(0x00000000e36c7000) deq 0x00000000e36c7460(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.136926: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.136949: xhci_handle_event: EVENT: TRB 00000000e36c7480 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.136953: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.136956: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7490(0x00000000e36c7000) deq 0x00000000e36c7490(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.136958: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.136961: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47587b0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.137010: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.137014: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.137016: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c74a0(0x00000000e36c7000) deq 0x00000000e36c7490(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.137018: xhci_queue_trb: CTRL: Buffer 0000000000000008 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.137020: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c74b0(0x00000000e36c7000) deq 0x00000000e36c7490(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.137021: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.137023: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c74c0(0x00000000e36c7000) deq 0x00000000e36c7490(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.137025: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.137049: xhci_handle_event: EVENT: TRB 00000000e36c74b0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.137053: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.137056: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c74c0(0x00000000e36c7000) deq 0x00000000e36c74c0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.137058: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.137061: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47587c0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.150032: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.150055: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.150061: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c74d0(0x00000000e36c7000) deq 0x00000000e36c74c0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.150064: xhci_queue_trb: CTRL: Buffer 00000000e36b2500 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.150066: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c74e0(0x00000000e36c7000) deq 0x00000000e36c74c0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.150068: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.150070: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c74f0(0x00000000e36c7000) deq 0x00000000e36c74c0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.150073: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.150242: xhci_handle_event: EVENT: TRB 00000000e36c74e0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.150253: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.150260: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c74f0(0x00000000e36c7000) deq 0x00000000e36c74f0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.150267: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.150279: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47587d0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.150393: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.150399: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0108 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.150402: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7500(0x00000000e36c7000) deq 0x00000000e36c74f0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.150404: xhci_queue_trb: CTRL: Buffer 000000008a3e52be length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.150406: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7510(0x00000000e36c7000) deq 0x00000000e36c74f0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.150407: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.150409: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7520(0x00000000e36c7000) deq 0x00000000e36c74f0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.150412: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.150454: xhci_handle_event: EVENT: TRB 00000000e36c7510 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.150459: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.150463: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7520(0x00000000e36c7000) deq 0x00000000e36c7520(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.150466: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.150474: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47587e0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.150532: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.150537: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0104 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.150539: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7530(0x00000000e36c7000) deq 0x00000000e36c7520(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.150541: xhci_queue_trb: CTRL: Buffer 00000000000077fe length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.150543: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7540(0x00000000e36c7000) deq 0x00000000e36c7520(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.150544: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.150546: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7550(0x00000000e36c7000) deq 0x00000000e36c7520(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.150547: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.150584: xhci_handle_event: EVENT: TRB 00000000e36c7540 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.150588: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.150591: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7550(0x00000000e36c7000) deq 0x00000000e36c7550(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.150594: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.150597: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47587f0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.150662: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.150666: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.150669: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7560(0x00000000e36c7000) deq 0x00000000e36c7550(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.150670: xhci_queue_trb: CTRL: Buffer 00000000e36b2500 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.150672: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7570(0x00000000e36c7000) deq 0x00000000e36c7550(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.150673: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.150675: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7580(0x00000000e36c7000) deq 0x00000000e36c7550(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.150677: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.150713: xhci_handle_event: EVENT: TRB 00000000e36c7570 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.150717: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.150721: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7580(0x00000000e36c7000) deq 0x00000000e36c7580(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.150724: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.150727: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758800(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.150787: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.150792: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.150794: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7590(0x00000000e36c7000) deq 0x00000000e36c7580(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.150795: xhci_queue_trb: CTRL: Buffer 0000000000001000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.150798: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c75a0(0x00000000e36c7000) deq 0x00000000e36c7580(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.150799: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.150801: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c75b0(0x00000000e36c7000) deq 0x00000000e36c7580(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.150804: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.150841: xhci_handle_event: EVENT: TRB 00000000e36c75a0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.150846: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.150849: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c75b0(0x00000000e36c7000) deq 0x00000000e36c75b0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.150852: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.150856: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758810(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.150915: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.150920: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.150922: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c75c0(0x00000000e36c7000) deq 0x00000000e36c75b0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.150923: xhci_queue_trb: CTRL: Buffer 00000000e36b2500 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.150926: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c75d0(0x00000000e36c7000) deq 0x00000000e36c75b0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.150927: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.150929: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c75e0(0x00000000e36c7000) deq 0x00000000e36c75b0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.150931: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.151054: xhci_handle_event: EVENT: TRB 00000000e36c75d0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.151060: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.151063: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c75e0(0x00000000e36c7000) deq 0x00000000e36c75e0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.151066: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.151070: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758820(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.151157: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.151162: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0038 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.151165: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c75f0(0x00000000e36c7000) deq 0x00000000e36c75e0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.151166: xhci_queue_trb: CTRL: Buffer 0000000000000025 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.151168: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7600(0x00000000e36c7000) deq 0x00000000e36c75e0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.151169: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.151171: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7610(0x00000000e36c7000) deq 0x00000000e36c75e0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.151173: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.151210: xhci_handle_event: EVENT: TRB 00000000e36c7600 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.151215: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.151218: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7610(0x00000000e36c7000) deq 0x00000000e36c7610(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.151221: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.151224: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758830(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.151282: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.151286: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0038 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.151288: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7620(0x00000000e36c7000) deq 0x00000000e36c7610(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.151290: xhci_queue_trb: CTRL: Buffer 00000000e36b2500 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.151292: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7630(0x00000000e36c7000) deq 0x00000000e36c7610(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.151293: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.151295: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7640(0x00000000e36c7000) deq 0x00000000e36c7610(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.151297: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.151333: xhci_handle_event: EVENT: TRB 00000000e36c7630 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.151338: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.151341: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7640(0x00000000e36c7000) deq 0x00000000e36c7640(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.151344: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.151347: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758840(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.151403: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.151407: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 006c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.151409: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7650(0x00000000e36c7000) deq 0x00000000e36c7640(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.151411: xhci_queue_trb: CTRL: Buffer 0000000000002000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.151413: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7660(0x00000000e36c7000) deq 0x00000000e36c7640(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.151414: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.151416: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7670(0x00000000e36c7000) deq 0x00000000e36c7640(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.151417: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.151454: xhci_handle_event: EVENT: TRB 00000000e36c7660 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.151458: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.151464: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7670(0x00000000e36c7000) deq 0x00000000e36c7670(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.151467: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.151471: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758850(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.151530: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.151535: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 006c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.151537: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7680(0x00000000e36c7000) deq 0x00000000e36c7670(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.151539: xhci_queue_trb: CTRL: Buffer 00000000e36b2500 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.151541: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7690(0x00000000e36c7000) deq 0x00000000e36c7670(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.151542: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.151544: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c76a0(0x00000000e36c7000) deq 0x00000000e36c7670(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.151545: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.151581: xhci_handle_event: EVENT: TRB 00000000e36c7690 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.151585: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.151589: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c76a0(0x00000000e36c7000) deq 0x00000000e36c76a0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.151591: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.151594: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758860(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.151650: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.151654: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.151657: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c76b0(0x00000000e36c7000) deq 0x00000000e36c76a0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.151658: xhci_queue_trb: CTRL: Buffer 00000000e36b2500 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.151661: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c76c0(0x00000000e36c7000) deq 0x00000000e36c76a0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.151662: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.151664: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c76d0(0x00000000e36c7000) deq 0x00000000e36c76a0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.151665: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.151700: xhci_handle_event: EVENT: TRB 00000000e36c76c0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.151704: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.151708: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c76d0(0x00000000e36c7000) deq 0x00000000e36c76d0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.151710: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.151713: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758870(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.151766: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.151770: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.151772: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c76e0(0x00000000e36c7000) deq 0x00000000e36c76d0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.151774: xhci_queue_trb: CTRL: Buffer 0000000000001022 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.151776: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c76f0(0x00000000e36c7000) deq 0x00000000e36c76d0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.151777: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.151779: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7700(0x00000000e36c7000) deq 0x00000000e36c76d0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.151781: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.151815: xhci_handle_event: EVENT: TRB 00000000e36c76f0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.151819: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.151823: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7700(0x00000000e36c7000) deq 0x00000000e36c7700(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.151825: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.151828: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758880(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.151884: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.151888: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.151891: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7710(0x00000000e36c7000) deq 0x00000000e36c7700(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.151892: xhci_queue_trb: CTRL: Buffer 00000000e36b2500 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.151894: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7720(0x00000000e36c7000) deq 0x00000000e36c7700(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.151895: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.151897: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7730(0x00000000e36c7000) deq 0x00000000e36c7700(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.151899: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.151934: xhci_handle_event: EVENT: TRB 00000000e36c7720 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.151938: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.151942: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7730(0x00000000e36c7000) deq 0x00000000e36c7730(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.151944: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.151948: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758890(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.152003: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.152007: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0008 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.152009: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7740(0x00000000e36c7000) deq 0x00000000e36c7730(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.152011: xhci_queue_trb: CTRL: Buffer 00000000ffffffff length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.152013: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7750(0x00000000e36c7000) deq 0x00000000e36c7730(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.152014: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.152016: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7760(0x00000000e36c7000) deq 0x00000000e36c7730(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.152017: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.152054: xhci_handle_event: EVENT: TRB 00000000e36c7750 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.152059: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.152063: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7760(0x00000000e36c7000) deq 0x00000000e36c7760(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.152065: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.152068: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47588a0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.152146: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.152150: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0000 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.152152: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7770(0x00000000e36c7000) deq 0x00000000e36c7760(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.152155: xhci_queue_trb: CTRL: Buffer 00000000e36b2500 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.152158: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7780(0x00000000e36c7000) deq 0x00000000e36c7760(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.152159: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.152161: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7790(0x00000000e36c7000) deq 0x00000000e36c7760(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.152162: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.152277: xhci_handle_event: EVENT: TRB 00000000e36c7780 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.152281: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.152285: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7790(0x00000000e36c7000) deq 0x00000000e36c7790(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.152288: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.152291: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47588b0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.152349: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.152353: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0024 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.152356: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c77a0(0x00000000e36c7000) deq 0x00000000e36c7790(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.152357: xhci_queue_trb: CTRL: Buffer 00000000e36b2500 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.152359: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c77b0(0x00000000e36c7000) deq 0x00000000e36c7790(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.152361: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.152363: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c77c0(0x00000000e36c7000) deq 0x00000000e36c7790(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.152364: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.152400: xhci_handle_event: EVENT: TRB 00000000e36c77b0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.152405: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.152409: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c77c0(0x00000000e36c7000) deq 0x00000000e36c77c0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.152412: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.152415: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47588c0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.152468: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.152472: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0024 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.152475: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c77d0(0x00000000e36c7000) deq 0x00000000e36c77c0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.152476: xhci_queue_trb: CTRL: Buffer 0000000001110007 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.152479: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c77e0(0x00000000e36c7000) deq 0x00000000e36c77c0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.152480: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.152482: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c77f0(0x00000000e36c7000) deq 0x00000000e36c77c0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.152483: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.152518: xhci_handle_event: EVENT: TRB 00000000e36c77e0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.152522: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.152526: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c77f0(0x00000000e36c7000) deq 0x00000000e36c77f0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.152528: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.152531: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47588d0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.152582: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.152587: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 011c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.152589: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7800(0x00000000e36c7000) deq 0x00000000e36c77f0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.152591: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.152592: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7810(0x00000000e36c7000) deq 0x00000000e36c77f0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.152594: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.152596: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7820(0x00000000e36c7000) deq 0x00000000e36c77f0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.152597: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.152632: xhci_handle_event: EVENT: TRB 00000000e36c7810 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.152636: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.152639: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7820(0x00000000e36c7000) deq 0x00000000e36c7820(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.152642: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.152645: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47588e0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.152696: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.152701: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 002c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.152703: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7830(0x00000000e36c7000) deq 0x00000000e36c7820(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.152705: xhci_queue_trb: CTRL: Buffer 0000000000f830a1 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.152707: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7840(0x00000000e36c7000) deq 0x00000000e36c7820(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.152708: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.152710: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7850(0x00000000e36c7000) deq 0x00000000e36c7820(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.152712: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.152748: xhci_handle_event: EVENT: TRB 00000000e36c7840 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.152752: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.152756: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7850(0x00000000e36c7000) deq 0x00000000e36c7850(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.152758: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.152761: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47588f0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.152817: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.152821: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.152824: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7860(0x00000000e36c7000) deq 0x00000000e36c7850(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.152825: xhci_queue_trb: CTRL: Buffer 00000000e36b2500 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.152828: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7870(0x00000000e36c7000) deq 0x00000000e36c7850(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.152829: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.152831: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7880(0x00000000e36c7000) deq 0x00000000e36c7850(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.152832: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.152867: xhci_handle_event: EVENT: TRB 00000000e36c7870 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.152871: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.152875: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7880(0x00000000e36c7000) deq 0x00000000e36c7880(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.152877: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.152880: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758900(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.152935: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.152939: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0120 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.152941: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7890(0x00000000e36c7000) deq 0x00000000e36c7880(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.152943: xhci_queue_trb: CTRL: Buffer 0000000000008100 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.152945: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c78a0(0x00000000e36c7000) deq 0x00000000e36c7880(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.152946: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.152948: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c78b0(0x00000000e36c7000) deq 0x00000000e36c7880(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.152950: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.152988: xhci_handle_event: EVENT: TRB 00000000e36c78a0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.152992: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.152996: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c78b0(0x00000000e36c7000) deq 0x00000000e36c78b0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.152998: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.153002: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758910(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.153056: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.153060: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0130 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.153062: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c78c0(0x00000000e36c7000) deq 0x00000000e36c78b0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.153064: xhci_queue_trb: CTRL: Buffer 00000000e36b2500 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.153066: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c78d0(0x00000000e36c7000) deq 0x00000000e36c78b0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.153067: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.153069: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c78e0(0x00000000e36c7000) deq 0x00000000e36c78b0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.153071: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.153108: xhci_handle_event: EVENT: TRB 00000000e36c78d0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.153112: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.153115: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c78e0(0x00000000e36c7000) deq 0x00000000e36c78e0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.153118: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.153121: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758920(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.153201: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.153205: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0130 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.153207: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c78f0(0x00000000e36c7000) deq 0x00000000e36c78e0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.153209: xhci_queue_trb: CTRL: Buffer 0000000000010001 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.153211: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7900(0x00000000e36c7000) deq 0x00000000e36c78e0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.153212: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.153214: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7910(0x00000000e36c7000) deq 0x00000000e36c78e0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.153216: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.153320: xhci_handle_event: EVENT: TRB 00000000e36c7900 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.153324: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.153327: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7910(0x00000000e36c7000) deq 0x00000000e36c7910(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.153330: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.153333: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758930(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.153388: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-72 [001] d.... 4.153392: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 010c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.153394: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7920(0x00000000e36c7000) deq 0x00000000e36c7910(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.153396: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.153398: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7930(0x00000000e36c7000) deq 0x00000000e36c7910(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.153399: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.153401: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7940(0x00000000e36c7000) deq 0x00000000e36c7910(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.153404: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-72 [001] ..... 4.153409: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0200 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-72 [001] d.... 4.153411: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0110 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.153419: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7950(0x00000000e36c7000) deq 0x00000000e36c7910(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.153420: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.153422: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7960(0x00000000e36c7000) deq 0x00000000e36c7910(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.153424: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.153426: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7970(0x00000000e36c7000) deq 0x00000000e36c7910(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.153427: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-72 [001] ..... 4.153432: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0100 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-72 [001] d.... 4.153434: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.153436: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7980(0x00000000e36c7000) deq 0x00000000e36c7910(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.153437: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.153440: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7990(0x00000000e36c7000) deq 0x00000000e36c7910(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.153441: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.153443: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c79a0(0x00000000e36c7000) deq 0x00000000e36c7910(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.153444: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-72 [001] ..... 4.153453: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0000 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.153456: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0068 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.153459: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c79b0(0x00000000e36c7000) deq 0x00000000e36c7910(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.153460: xhci_queue_trb: CTRL: Buffer 00000000e36b2b00 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.153462: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c79c0(0x00000000e36c7000) deq 0x00000000e36c7910(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.153463: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.153465: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c79d0(0x00000000e36c7000) deq 0x00000000e36c7910(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.153466: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.153498: xhci_handle_event: EVENT: TRB 00000000e36c7930 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.153503: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.153506: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c79d0(0x00000000e36c7000) deq 0x00000000e36c7940(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.153509: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0300 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<idle>-0 [000] d.h.. 4.153512: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758940(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.153513: xhci_handle_event: EVENT: TRB 00000000e36c7960 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.153516: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.153519: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c79d0(0x00000000e36c7000) deq 0x00000000e36c7970(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.153521: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0200 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<idle>-0 [000] d.h.. 4.153522: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758950(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.153523: xhci_handle_event: EVENT: TRB 00000000e36c7990 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.153526: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.153529: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c79d0(0x00000000e36c7000) deq 0x00000000e36c79a0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.153531: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0100 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<idle>-0 [000] d.h.. 4.153532: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758960(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.153533: xhci_handle_event: EVENT: TRB 00000000e36c79c0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.153536: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.153539: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c79d0(0x00000000e36c7000) deq 0x00000000e36c79d0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.153541: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0000 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.153542: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758970(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.162589: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0000 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.162609: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0068 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.162613: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c79e0(0x00000000e36c7000) deq 0x00000000e36c79d0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.162615: xhci_queue_trb: CTRL: Buffer 0000000000008000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.162618: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c79f0(0x00000000e36c7000) deq 0x00000000e36c79d0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.162619: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.162621: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7a00(0x00000000e36c7000) deq 0x00000000e36c79d0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.162623: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.162764: xhci_handle_event: EVENT: TRB 00000000e36c79f0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.162773: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.162779: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7a00(0x00000000e36c7000) deq 0x00000000e36c7a00(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.162786: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0000 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.162796: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758980(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.162964: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0000 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.162970: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.162972: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7a10(0x00000000e36c7000) deq 0x00000000e36c7a00(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.162974: xhci_queue_trb: CTRL: Buffer 0000000000000008 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.162976: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7a20(0x00000000e36c7000) deq 0x00000000e36c7a00(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.162977: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.162979: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7a30(0x00000000e36c7000) deq 0x00000000e36c7a00(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.162981: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.163021: xhci_handle_event: EVENT: TRB 00000000e36c7a20 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.163027: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.163030: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7a30(0x00000000e36c7000) deq 0x00000000e36c7a30(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.163033: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0000 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.163041: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758990(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.163098: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0000 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.163102: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0010 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.163105: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7a40(0x00000000e36c7000) deq 0x00000000e36c7a30(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.163106: xhci_queue_trb: CTRL: Buffer 0000000000000004 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.163109: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7a50(0x00000000e36c7000) deq 0x00000000e36c7a30(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.163110: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.163112: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7a60(0x00000000e36c7000) deq 0x00000000e36c7a30(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.163113: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.163149: xhci_handle_event: EVENT: TRB 00000000e36c7a50 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.163153: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.163156: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7a60(0x00000000e36c7000) deq 0x00000000e36c7a60(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.163159: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0000 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.163162: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47589a0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.163215: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0000 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.163220: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.163223: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7a70(0x00000000e36c7000) deq 0x00000000e36c7a60(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.163224: xhci_queue_trb: CTRL: Buffer 000000000000000c length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.163226: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7a80(0x00000000e36c7000) deq 0x00000000e36c7a60(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.163227: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.163229: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7a90(0x00000000e36c7000) deq 0x00000000e36c7a60(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.163231: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.163266: xhci_handle_event: EVENT: TRB 00000000e36c7a80 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.163270: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.163273: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7a90(0x00000000e36c7000) deq 0x00000000e36c7a90(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.163276: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0000 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.163279: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47589b0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.163494: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0100 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.163500: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.163502: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7aa0(0x00000000e36c7000) deq 0x00000000e36c7a90(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.163504: xhci_queue_trb: CTRL: Buffer 00000000e36b2e00 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.163506: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7ab0(0x00000000e36c7000) deq 0x00000000e36c7a90(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.163507: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.163509: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7ac0(0x00000000e36c7000) deq 0x00000000e36c7a90(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.163511: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.163649: xhci_handle_event: EVENT: TRB 00000000e36c7ab0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.163654: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.163658: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7ac0(0x00000000e36c7000) deq 0x00000000e36c7ac0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.163662: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0100 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.163668: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47589c0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.164314: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0200 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.164321: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.164324: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7ad0(0x00000000e36c7000) deq 0x00000000e36c7ac0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.164326: xhci_queue_trb: CTRL: Buffer 00000000e36b2a00 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.164328: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7ae0(0x00000000e36c7000) deq 0x00000000e36c7ac0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.164329: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.164331: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7af0(0x00000000e36c7000) deq 0x00000000e36c7ac0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.164333: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] dNh.. 4.164405: xhci_handle_event: EVENT: TRB 00000000e36c7ae0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] dNh.. 4.164410: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] dNh.. 4.164414: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7af0(0x00000000e36c7000) deq 0x00000000e36c7af0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] dNh.. 4.164418: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0200 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] dNh.. 4.164424: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47589d0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.164790: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0200 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.164796: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.164799: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7b00(0x00000000e36c7000) deq 0x00000000e36c7af0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.164804: xhci_queue_trb: CTRL: Buffer 0000000000000881 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.164806: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7b10(0x00000000e36c7000) deq 0x00000000e36c7af0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.164807: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.164809: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7b20(0x00000000e36c7000) deq 0x00000000e36c7af0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.164810: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.164941: xhci_handle_event: EVENT: TRB 00000000e36c7b10 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.164946: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.164950: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7b20(0x00000000e36c7000) deq 0x00000000e36c7b20(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.164953: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0200 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.164959: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47589e0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.165051: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0200 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.165055: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.165058: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7b30(0x00000000e36c7000) deq 0x00000000e36c7b20(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.165060: xhci_queue_trb: CTRL: Buffer 00000000e36b2a00 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.165062: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7b40(0x00000000e36c7000) deq 0x00000000e36c7b20(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.165063: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.165065: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7b50(0x00000000e36c7000) deq 0x00000000e36c7b20(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.165067: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.165103: xhci_handle_event: EVENT: TRB 00000000e36c7b40 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.165107: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.165111: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7b50(0x00000000e36c7000) deq 0x00000000e36c7b50(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.165113: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0200 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.165117: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47589f0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.165175: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0200 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.165180: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.165182: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7b60(0x00000000e36c7000) deq 0x00000000e36c7b50(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.165183: xhci_queue_trb: CTRL: Buffer 00000000e36b2a00 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.165185: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7b70(0x00000000e36c7000) deq 0x00000000e36c7b50(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.165187: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.165189: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7b80(0x00000000e36c7000) deq 0x00000000e36c7b50(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.165190: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.165225: xhci_handle_event: EVENT: TRB 00000000e36c7b70 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.165229: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.165232: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7b80(0x00000000e36c7000) deq 0x00000000e36c7b80(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.165235: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0200 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.165238: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758a00(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.165295: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0200 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.165300: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.165302: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7b90(0x00000000e36c7000) deq 0x00000000e36c7b80(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.165303: xhci_queue_trb: CTRL: Buffer 00000000e36b2a00 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.165306: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7ba0(0x00000000e36c7000) deq 0x00000000e36c7b80(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.165307: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.165309: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7bb0(0x00000000e36c7000) deq 0x00000000e36c7b80(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.165310: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.165346: xhci_handle_event: EVENT: TRB 00000000e36c7ba0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.165350: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.165354: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7bb0(0x00000000e36c7000) deq 0x00000000e36c7bb0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.165356: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0200 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.165359: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758a10(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.165421: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0200 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.165425: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.165427: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7bc0(0x00000000e36c7000) deq 0x00000000e36c7bb0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.165429: xhci_queue_trb: CTRL: Buffer 00000000000008c1 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.165431: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7bd0(0x00000000e36c7000) deq 0x00000000e36c7bb0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.165433: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.165435: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7be0(0x00000000e36c7000) deq 0x00000000e36c7bb0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.165436: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.165470: xhci_handle_event: EVENT: TRB 00000000e36c7bd0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.165474: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.165478: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7be0(0x00000000e36c7000) deq 0x00000000e36c7be0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.165480: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0200 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.165483: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758a20(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.165537: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0200 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.165541: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.165543: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7bf0(0x00000000e36c7000) deq 0x00000000e36c7be0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.165545: xhci_queue_trb: CTRL: Buffer 00000000e36b2a00 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.165547: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7c00(0x00000000e36c7000) deq 0x00000000e36c7be0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.165548: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.165550: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7c10(0x00000000e36c7000) deq 0x00000000e36c7be0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.165552: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.165588: xhci_handle_event: EVENT: TRB 00000000e36c7c00 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.165592: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.165596: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7c10(0x00000000e36c7000) deq 0x00000000e36c7c10(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.165598: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0200 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.165601: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758a30(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.165660: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0200 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.165664: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.165667: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7c20(0x00000000e36c7000) deq 0x00000000e36c7c10(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.165668: xhci_queue_trb: CTRL: Buffer 00000000e36b2a00 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.165671: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7c30(0x00000000e36c7000) deq 0x00000000e36c7c10(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.165672: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.165674: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7c40(0x00000000e36c7000) deq 0x00000000e36c7c10(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.165675: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.165712: xhci_handle_event: EVENT: TRB 00000000e36c7c30 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.165716: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.165720: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7c40(0x00000000e36c7000) deq 0x00000000e36c7c40(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.165722: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0200 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.165725: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758a40(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.193302: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.193321: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.193326: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7c50(0x00000000e36c7000) deq 0x00000000e36c7c40(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.193328: xhci_queue_trb: CTRL: Buffer 00000000e36b2700 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.193330: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7c60(0x00000000e36c7000) deq 0x00000000e36c7c40(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.193332: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.193334: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7c70(0x00000000e36c7000) deq 0x00000000e36c7c40(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.193337: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-127 [000] d.h.. 4.193375: xhci_handle_event: EVENT: TRB 00000000e36c7c60 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-127 [000] d.h.. 4.193385: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-127 [000] d.h.. 4.193391: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7c70(0x00000000e36c7000) deq 0x00000000e36c7c70(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-127 [000] d.h.. 4.193397: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-127 [000] d.h.. 4.193408: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758a50(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.193708: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.193716: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.193718: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7c80(0x00000000e36c7000) deq 0x00000000e36c7c70(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.193720: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.193722: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7c90(0x00000000e36c7000) deq 0x00000000e36c7c70(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.193723: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.193725: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7ca0(0x00000000e36c7000) deq 0x00000000e36c7c70(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.193727: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-165 [000] d.h.. 4.193754: xhci_handle_event: EVENT: TRB 00000000e36c7c90 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-165 [000] d.h.. 4.193761: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-165 [000] d.h.. 4.193764: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7ca0(0x00000000e36c7000) deq 0x00000000e36c7ca0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-165 [000] d.h.. 4.193767: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-165 [000] d.h.. 4.193772: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758a60(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.193835: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.193839: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.193841: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7cb0(0x00000000e36c7000) deq 0x00000000e36c7ca0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.193843: xhci_queue_trb: CTRL: Buffer 0000000000000f83 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.193845: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7cc0(0x00000000e36c7000) deq 0x00000000e36c7ca0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.193846: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.193849: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7cd0(0x00000000e36c7000) deq 0x00000000e36c7ca0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.193858: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-165 [000] d.H.. 4.193892: xhci_handle_event: EVENT: TRB 00000000e36c7cc0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-165 [000] d.H.. 4.193896: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-165 [000] d.H.. 4.193901: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7cd0(0x00000000e36c7000) deq 0x00000000e36c7cd0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-165 [000] d.H.. 4.193903: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-165 [000] d.H.. 4.193907: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758a70(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.194538: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.194546: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.194549: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7ce0(0x00000000e36c7000) deq 0x00000000e36c7cd0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.194551: xhci_queue_trb: CTRL: Buffer 00000000e36b2700 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.194553: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7cf0(0x00000000e36c7000) deq 0x00000000e36c7cd0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.194554: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.194556: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7d00(0x00000000e36c7000) deq 0x00000000e36c7cd0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.194558: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.194604: xhci_handle_event: EVENT: TRB 00000000e36c7cf0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.194610: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.194614: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7d00(0x00000000e36c7000) deq 0x00000000e36c7d00(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.194617: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.194623: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758a80(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.194697: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.194701: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.194704: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7d10(0x00000000e36c7000) deq 0x00000000e36c7d00(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.194706: xhci_queue_trb: CTRL: Buffer 00000000e36b2700 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.194708: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7d20(0x00000000e36c7000) deq 0x00000000e36c7d00(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.194709: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.194711: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7d30(0x00000000e36c7000) deq 0x00000000e36c7d00(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.194713: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.194750: xhci_handle_event: EVENT: TRB 00000000e36c7d20 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.194754: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.194757: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7d30(0x00000000e36c7000) deq 0x00000000e36c7d30(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.194760: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.194763: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758a90(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.194822: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.194826: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.194828: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7d40(0x00000000e36c7000) deq 0x00000000e36c7d30(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.194830: xhci_queue_trb: CTRL: Buffer 0000000000000f41 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.194832: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7d50(0x00000000e36c7000) deq 0x00000000e36c7d30(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.194833: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.194835: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7d60(0x00000000e36c7000) deq 0x00000000e36c7d30(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.194837: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.194871: xhci_handle_event: EVENT: TRB 00000000e36c7d50 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.194875: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.194879: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7d60(0x00000000e36c7000) deq 0x00000000e36c7d60(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.194882: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.194884: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758aa0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.194943: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.194947: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.194949: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7d70(0x00000000e36c7000) deq 0x00000000e36c7d60(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.194951: xhci_queue_trb: CTRL: Buffer 00000000e36b2700 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.194953: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7d80(0x00000000e36c7000) deq 0x00000000e36c7d60(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.194954: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.194956: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7d90(0x00000000e36c7000) deq 0x00000000e36c7d60(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.194958: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.194993: xhci_handle_event: EVENT: TRB 00000000e36c7d80 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.194997: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.195001: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7d90(0x00000000e36c7000) deq 0x00000000e36c7d90(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.195003: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.195006: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758ab0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.195068: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.195072: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.195074: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7da0(0x00000000e36c7000) deq 0x00000000e36c7d90(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.195076: xhci_queue_trb: CTRL: Buffer 00000000e36b2700 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.195078: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7db0(0x00000000e36c7000) deq 0x00000000e36c7d90(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.195079: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.195081: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7dc0(0x00000000e36c7000) deq 0x00000000e36c7d90(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.195083: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.195121: xhci_handle_event: EVENT: TRB 00000000e36c7db0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.195125: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.195129: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7dc0(0x00000000e36c7000) deq 0x00000000e36c7dc0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.195131: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.195135: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758ac0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.195198: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.195202: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.195205: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7dd0(0x00000000e36c7000) deq 0x00000000e36c7dc0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.195206: xhci_queue_trb: CTRL: Buffer 00000000e36b2700 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.195208: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7de0(0x00000000e36c7000) deq 0x00000000e36c7dc0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.195209: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.195211: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7df0(0x00000000e36c7000) deq 0x00000000e36c7dc0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.195213: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.195250: xhci_handle_event: EVENT: TRB 00000000e36c7de0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.195253: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.195257: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7df0(0x00000000e36c7000) deq 0x00000000e36c7df0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.195259: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.195263: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758ad0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.195315: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.195319: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.195322: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7e00(0x00000000e36c7000) deq 0x00000000e36c7df0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.195323: xhci_queue_trb: CTRL: Buffer 0000000000000841 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.195325: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7e10(0x00000000e36c7000) deq 0x00000000e36c7df0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.195327: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.195329: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7e20(0x00000000e36c7000) deq 0x00000000e36c7df0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.195330: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.195371: xhci_handle_event: EVENT: TRB 00000000e36c7e10 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.195375: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.195378: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7e20(0x00000000e36c7000) deq 0x00000000e36c7e20(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.195381: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.195384: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758ae0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.195441: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.195445: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.195448: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7e30(0x00000000e36c7000) deq 0x00000000e36c7e20(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.195449: xhci_queue_trb: CTRL: Buffer 00000000e36b2700 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.195451: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7e40(0x00000000e36c7000) deq 0x00000000e36c7e20(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.195452: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.195454: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7e50(0x00000000e36c7000) deq 0x00000000e36c7e20(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.195456: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.195493: xhci_handle_event: EVENT: TRB 00000000e36c7e40 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.195497: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.195500: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7e50(0x00000000e36c7000) deq 0x00000000e36c7e50(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.195503: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.195506: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758af0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.195563: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.195567: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.195570: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7e60(0x00000000e36c7000) deq 0x00000000e36c7e50(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.195571: xhci_queue_trb: CTRL: Buffer 00000000e36b2700 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.195573: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7e70(0x00000000e36c7000) deq 0x00000000e36c7e50(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.195574: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.195576: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7e80(0x00000000e36c7000) deq 0x00000000e36c7e50(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.195578: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.195612: xhci_handle_event: EVENT: TRB 00000000e36c7e70 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.195617: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.195620: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7e80(0x00000000e36c7000) deq 0x00000000e36c7e80(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.195623: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.195626: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758b00(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.195687: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.195691: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.195693: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7e90(0x00000000e36c7000) deq 0x00000000e36c7e80(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.195697: xhci_queue_trb: CTRL: Buffer 00000000e36b2700 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.195699: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7ea0(0x00000000e36c7000) deq 0x00000000e36c7e80(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.195700: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.195702: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7eb0(0x00000000e36c7000) deq 0x00000000e36c7e80(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.195704: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.195741: xhci_handle_event: EVENT: TRB 00000000e36c7ea0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.195745: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.195748: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7eb0(0x00000000e36c7000) deq 0x00000000e36c7eb0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.195751: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.195754: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758b10(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.195809: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.195813: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.195815: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7ec0(0x00000000e36c7000) deq 0x00000000e36c7eb0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.195816: xhci_queue_trb: CTRL: Buffer 0000000000000003 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.195818: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7ed0(0x00000000e36c7000) deq 0x00000000e36c7eb0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.195820: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.195822: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7ee0(0x00000000e36c7000) deq 0x00000000e36c7eb0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.195823: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.195859: xhci_handle_event: EVENT: TRB 00000000e36c7ed0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.195863: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.195866: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7ee0(0x00000000e36c7000) deq 0x00000000e36c7ee0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.195869: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.195872: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758b20(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.195925: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.195929: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.195931: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7ef0(0x00000000e36c7000) deq 0x00000000e36c7ee0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.195932: xhci_queue_trb: CTRL: Buffer 0000000000000b43 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.195934: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7f00(0x00000000e36c7000) deq 0x00000000e36c7ee0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.195935: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.195938: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7f10(0x00000000e36c7000) deq 0x00000000e36c7ee0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.195939: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.195976: xhci_handle_event: EVENT: TRB 00000000e36c7f00 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.195980: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.195984: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7f10(0x00000000e36c7000) deq 0x00000000e36c7f10(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.195986: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.195989: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758b30(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.196044: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.196048: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.196051: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7f20(0x00000000e36c7000) deq 0x00000000e36c7f10(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.196052: xhci_queue_trb: CTRL: Buffer 00000000e36b2700 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.196054: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7f30(0x00000000e36c7000) deq 0x00000000e36c7f10(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.196055: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.196058: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7f40(0x00000000e36c7000) deq 0x00000000e36c7f10(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.196059: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.196093: xhci_handle_event: EVENT: TRB 00000000e36c7f30 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.196098: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.196101: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7f40(0x00000000e36c7000) deq 0x00000000e36c7f40(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.196104: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.196109: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758b40(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.196170: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.196174: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.196176: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7f50(0x00000000e36c7000) deq 0x00000000e36c7f40(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.196178: xhci_queue_trb: CTRL: Buffer 00000000e36b2700 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.196180: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7f60(0x00000000e36c7000) deq 0x00000000e36c7f40(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.196181: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.196183: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7f70(0x00000000e36c7000) deq 0x00000000e36c7f40(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.196184: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.196221: xhci_handle_event: EVENT: TRB 00000000e36c7f60 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.196225: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.196228: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7f70(0x00000000e36c7000) deq 0x00000000e36c7f70(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.196231: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.196234: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758b50(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.196288: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.196294: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.196297: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7f80(0x00000000e36c7000) deq 0x00000000e36c7f70(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.196298: xhci_queue_trb: CTRL: Buffer 0000000000000014 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.196300: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7f90(0x00000000e36c7000) deq 0x00000000e36c7f70(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.196301: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.196303: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7fa0(0x00000000e36c7000) deq 0x00000000e36c7f70(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.196305: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.196340: xhci_handle_event: EVENT: TRB 00000000e36c7f90 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.196344: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.196347: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7fa0(0x00000000e36c7000) deq 0x00000000e36c7fa0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.196350: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.196353: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758b60(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.196408: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.196412: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.196414: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7fb0(0x00000000e36c7000) deq 0x00000000e36c7fa0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.196416: xhci_queue_trb: CTRL: Buffer 0000000000000b83 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.196418: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7fc0(0x00000000e36c7000) deq 0x00000000e36c7fa0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.196419: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.196421: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7fd0(0x00000000e36c7000) deq 0x00000000e36c7fa0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.196422: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.196461: xhci_handle_event: EVENT: TRB 00000000e36c7fc0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.196466: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.196469: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7fd0(0x00000000e36c7000) deq 0x00000000e36c7fd0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.196472: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.196475: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758b70(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.196531: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.196536: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.196538: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7fe0(0x00000000e36c7000) deq 0x00000000e36c7fd0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.196540: xhci_queue_trb: CTRL: Buffer 00000000e36b2700 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.196543: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6000(0x00000000e36c6000) deq 0x00000000e36c7fd0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.196544: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.196546: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6010(0x00000000e36c6000) deq 0x00000000e36c7fd0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.196547: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.196582: xhci_handle_event: EVENT: TRB 00000000e36c6000 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.196587: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.196591: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6010(0x00000000e36c6000) deq 0x00000000e36c6010(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.196593: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.196596: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758b80(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.196654: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.196658: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.196661: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6020(0x00000000e36c6000) deq 0x00000000e36c6010(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.196662: xhci_queue_trb: CTRL: Buffer 00000000e36b2700 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.196664: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6030(0x00000000e36c6000) deq 0x00000000e36c6010(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.196666: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.196668: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6040(0x00000000e36c6000) deq 0x00000000e36c6010(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.196669: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.196804: xhci_handle_event: EVENT: TRB 00000000e36c6030 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.196809: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.196812: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6040(0x00000000e36c6000) deq 0x00000000e36c6040(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.196815: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.196818: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758b90(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.196898: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.196902: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.196904: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6050(0x00000000e36c6000) deq 0x00000000e36c6040(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.196906: xhci_queue_trb: CTRL: Buffer 0000000000004003 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.196908: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6060(0x00000000e36c6000) deq 0x00000000e36c6040(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.196909: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.196911: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6070(0x00000000e36c6000) deq 0x00000000e36c6040(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.196914: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.196950: xhci_handle_event: EVENT: TRB 00000000e36c6060 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.196954: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.196958: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6070(0x00000000e36c6000) deq 0x00000000e36c6070(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.196960: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.196963: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758ba0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.197016: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.197022: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.197024: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6080(0x00000000e36c6000) deq 0x00000000e36c6070(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.197026: xhci_queue_trb: CTRL: Buffer 0000000000000b43 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.197028: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6090(0x00000000e36c6000) deq 0x00000000e36c6070(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.197029: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.197031: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c60a0(0x00000000e36c6000) deq 0x00000000e36c6070(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.197032: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.197069: xhci_handle_event: EVENT: TRB 00000000e36c6090 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.197073: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.197076: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c60a0(0x00000000e36c6000) deq 0x00000000e36c60a0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.197079: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.197082: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758bb0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.197136: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.197140: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.197143: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c60b0(0x00000000e36c6000) deq 0x00000000e36c60a0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.197144: xhci_queue_trb: CTRL: Buffer 00000000e36b2700 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.197146: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c60c0(0x00000000e36c6000) deq 0x00000000e36c60a0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.197147: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.197149: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c60d0(0x00000000e36c6000) deq 0x00000000e36c60a0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.197151: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.197188: xhci_handle_event: EVENT: TRB 00000000e36c60c0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.197192: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.197195: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c60d0(0x00000000e36c6000) deq 0x00000000e36c60d0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.197198: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.197201: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758bc0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.197261: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.197265: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.197267: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c60e0(0x00000000e36c6000) deq 0x00000000e36c60d0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.197269: xhci_queue_trb: CTRL: Buffer 00000000e36b2700 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.197271: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c60f0(0x00000000e36c6000) deq 0x00000000e36c60d0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.197272: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.197274: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6100(0x00000000e36c6000) deq 0x00000000e36c60d0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.197275: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.197312: xhci_handle_event: EVENT: TRB 00000000e36c60f0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.197316: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.197320: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6100(0x00000000e36c6000) deq 0x00000000e36c6100(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.197322: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.197326: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758bd0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.197378: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.197382: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.197384: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6110(0x00000000e36c6000) deq 0x00000000e36c6100(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.197386: xhci_queue_trb: CTRL: Buffer 0000000000000b81 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.197388: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6120(0x00000000e36c6000) deq 0x00000000e36c6100(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.197389: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.197391: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6130(0x00000000e36c6000) deq 0x00000000e36c6100(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.197393: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.197429: xhci_handle_event: EVENT: TRB 00000000e36c6120 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.197433: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.197437: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6130(0x00000000e36c6000) deq 0x00000000e36c6130(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.197439: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.197442: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758be0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.197500: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.197504: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.197506: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6140(0x00000000e36c6000) deq 0x00000000e36c6130(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.197508: xhci_queue_trb: CTRL: Buffer 00000000e36b2700 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.197510: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6150(0x00000000e36c6000) deq 0x00000000e36c6130(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.197511: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.197514: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6160(0x00000000e36c6000) deq 0x00000000e36c6130(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.197515: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.197551: xhci_handle_event: EVENT: TRB 00000000e36c6150 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.197556: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.197559: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6160(0x00000000e36c6000) deq 0x00000000e36c6160(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.197562: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.197565: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758bf0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.197625: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.197630: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.197632: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6170(0x00000000e36c6000) deq 0x00000000e36c6160(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.197634: xhci_queue_trb: CTRL: Buffer 00000000e36b2700 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.197636: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6180(0x00000000e36c6000) deq 0x00000000e36c6160(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.197637: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.197639: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6190(0x00000000e36c6000) deq 0x00000000e36c6160(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.197640: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.197676: xhci_handle_event: EVENT: TRB 00000000e36c6180 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.197680: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.197684: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6190(0x00000000e36c6000) deq 0x00000000e36c6190(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.197687: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.197690: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758c00(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] .N... 4.197911: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] dN... 4.197916: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0000 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] dN... 4.197918: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c61a0(0x00000000e36c6000) deq 0x00000000e36c6190(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] dN... 4.197920: xhci_queue_trb: CTRL: Buffer 00000000e36b2700 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] dN... 4.197922: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c61b0(0x00000000e36c6000) deq 0x00000000e36c6190(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] dN... 4.197923: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] dN... 4.197925: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c61c0(0x00000000e36c6000) deq 0x00000000e36c6190(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] dN... 4.197927: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] dNH.. 4.197978: xhci_handle_event: EVENT: TRB 00000000e36c61b0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] dNH.. 4.197983: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] dNH.. 4.197987: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c61c0(0x00000000e36c6000) deq 0x00000000e36c61c0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] dNH.. 4.197990: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] dNH.. 4.197993: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758c10(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.198469: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.198475: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.198478: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c61d0(0x00000000e36c6000) deq 0x00000000e36c61c0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.198479: xhci_queue_trb: CTRL: Buffer 00000000e36b2a80 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.198481: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c61e0(0x00000000e36c6000) deq 0x00000000e36c61c0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.198483: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.198485: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c61f0(0x00000000e36c6000) deq 0x00000000e36c61c0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.198486: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.198535: xhci_handle_event: EVENT: TRB 00000000e36c61e0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.198541: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.198547: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c61f0(0x00000000e36c6000) deq 0x00000000e36c61f0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.198550: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.198555: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758c20(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.198619: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.198623: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.198626: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6200(0x00000000e36c6000) deq 0x00000000e36c61f0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.198627: xhci_queue_trb: CTRL: Buffer 0000000000000c81 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.198629: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6210(0x00000000e36c6000) deq 0x00000000e36c61f0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.198630: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.198632: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6220(0x00000000e36c6000) deq 0x00000000e36c61f0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.198634: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.198671: xhci_handle_event: EVENT: TRB 00000000e36c6210 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.198675: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.198679: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6220(0x00000000e36c6000) deq 0x00000000e36c6220(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.198681: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.198684: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758c30(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.198746: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.198750: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.198753: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6230(0x00000000e36c6000) deq 0x00000000e36c6220(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.198756: xhci_queue_trb: CTRL: Buffer 00000000e36b2a80 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.198758: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6240(0x00000000e36c6000) deq 0x00000000e36c6220(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.198759: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.198761: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6250(0x00000000e36c6000) deq 0x00000000e36c6220(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.198762: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.198800: xhci_handle_event: EVENT: TRB 00000000e36c6240 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.198805: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.198808: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6250(0x00000000e36c6000) deq 0x00000000e36c6250(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.198811: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.198814: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758c40(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.198872: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.198876: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.198879: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6260(0x00000000e36c6000) deq 0x00000000e36c6250(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.198880: xhci_queue_trb: CTRL: Buffer 00000000e36b2a80 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.198882: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6270(0x00000000e36c6000) deq 0x00000000e36c6250(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.198883: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.198885: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6280(0x00000000e36c6000) deq 0x00000000e36c6250(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.198887: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.198924: xhci_handle_event: EVENT: TRB 00000000e36c6270 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.198928: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.198931: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6280(0x00000000e36c6000) deq 0x00000000e36c6280(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.198934: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.198937: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758c50(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.198999: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.199004: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.199006: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6290(0x00000000e36c6000) deq 0x00000000e36c6280(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.199008: xhci_queue_trb: CTRL: Buffer 00000000e36b2a80 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.199010: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c62a0(0x00000000e36c6000) deq 0x00000000e36c6280(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.199011: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.199013: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c62b0(0x00000000e36c6000) deq 0x00000000e36c6280(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.199014: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.199131: xhci_handle_event: EVENT: TRB 00000000e36c62a0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.199136: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.199139: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c62b0(0x00000000e36c6000) deq 0x00000000e36c62b0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.199142: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.199145: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758c60(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.199229: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.199233: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.199235: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c62c0(0x00000000e36c6000) deq 0x00000000e36c62b0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.199237: xhci_queue_trb: CTRL: Buffer 0000000000000801 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.199239: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c62d0(0x00000000e36c6000) deq 0x00000000e36c62b0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.199240: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.199242: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c62e0(0x00000000e36c6000) deq 0x00000000e36c62b0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.199244: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.199280: xhci_handle_event: EVENT: TRB 00000000e36c62d0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.199284: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.199288: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c62e0(0x00000000e36c6000) deq 0x00000000e36c62e0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.199290: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.199293: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758c70(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.199351: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.199356: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.199358: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c62f0(0x00000000e36c6000) deq 0x00000000e36c62e0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.199360: xhci_queue_trb: CTRL: Buffer 00000000e36b2a80 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.199362: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6300(0x00000000e36c6000) deq 0x00000000e36c62e0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.199363: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.199365: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6310(0x00000000e36c6000) deq 0x00000000e36c62e0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.199367: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.199404: xhci_handle_event: EVENT: TRB 00000000e36c6300 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.199408: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.199411: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6310(0x00000000e36c6000) deq 0x00000000e36c6310(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.199414: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.199417: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758c80(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.199477: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.199481: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.199484: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6320(0x00000000e36c6000) deq 0x00000000e36c6310(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.199485: xhci_queue_trb: CTRL: Buffer 00000000e36b2a80 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.199487: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6330(0x00000000e36c6000) deq 0x00000000e36c6310(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.199489: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.199491: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6340(0x00000000e36c6000) deq 0x00000000e36c6310(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.199492: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.199527: xhci_handle_event: EVENT: TRB 00000000e36c6330 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.199531: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.199535: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6340(0x00000000e36c6000) deq 0x00000000e36c6340(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.199537: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.199540: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758c90(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.199603: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.199607: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.199609: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6350(0x00000000e36c6000) deq 0x00000000e36c6340(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.199611: xhci_queue_trb: CTRL: Buffer 00000000e36b2a80 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.199613: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6360(0x00000000e36c6000) deq 0x00000000e36c6340(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.199614: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.199616: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6370(0x00000000e36c6000) deq 0x00000000e36c6340(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.199617: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.199654: xhci_handle_event: EVENT: TRB 00000000e36c6360 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.199658: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.199662: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6370(0x00000000e36c6000) deq 0x00000000e36c6370(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.199664: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.199667: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758ca0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.199722: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.199728: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.199730: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6380(0x00000000e36c6000) deq 0x00000000e36c6370(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.199732: xhci_queue_trb: CTRL: Buffer 000000000000b200 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.199734: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6390(0x00000000e36c6000) deq 0x00000000e36c6370(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.199735: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.199737: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c63a0(0x00000000e36c6000) deq 0x00000000e36c6370(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.199738: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.199773: xhci_handle_event: EVENT: TRB 00000000e36c6390 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.199777: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.199781: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c63a0(0x00000000e36c6000) deq 0x00000000e36c63a0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.199783: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.199786: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758cb0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.199838: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.199844: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.199846: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c63b0(0x00000000e36c6000) deq 0x00000000e36c63a0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.199847: xhci_queue_trb: CTRL: Buffer 0000000000000803 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.199849: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c63c0(0x00000000e36c6000) deq 0x00000000e36c63a0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.199851: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.199852: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c63d0(0x00000000e36c6000) deq 0x00000000e36c63a0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.199854: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.199889: xhci_handle_event: EVENT: TRB 00000000e36c63c0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.199893: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.199896: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c63d0(0x00000000e36c6000) deq 0x00000000e36c63d0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.199899: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.199902: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758cc0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.199957: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.199961: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.199963: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c63e0(0x00000000e36c6000) deq 0x00000000e36c63d0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.199965: xhci_queue_trb: CTRL: Buffer 00000000e36b2a80 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.199967: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c63f0(0x00000000e36c6000) deq 0x00000000e36c63d0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.199968: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.199970: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6400(0x00000000e36c6000) deq 0x00000000e36c63d0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.199973: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.200008: xhci_handle_event: EVENT: TRB 00000000e36c63f0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.200013: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.200016: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6400(0x00000000e36c6000) deq 0x00000000e36c6400(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.200019: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.200022: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758cd0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.213898: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.213903: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.213906: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6410(0x00000000e36c6000) deq 0x00000000e36c6400(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.213907: xhci_queue_trb: CTRL: Buffer 00000000e36b2a80 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.213910: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6420(0x00000000e36c6000) deq 0x00000000e36c6400(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.213911: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.213913: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6430(0x00000000e36c6000) deq 0x00000000e36c6400(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.213915: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-14 [000] d.H.. 4.213932: xhci_handle_event: EVENT: TRB 00000000e36c6420 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-14 [000] d.H.. 4.213937: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-14 [000] d.H.. 4.213941: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6430(0x00000000e36c6000) deq 0x00000000e36c6430(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-14 [000] d.H.. 4.213943: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-14 [000] d.H.. 4.213947: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758ce0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.214243: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.214248: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.214250: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6440(0x00000000e36c6000) deq 0x00000000e36c6430(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.214252: xhci_queue_trb: CTRL: Buffer 0000000000000801 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.214254: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6450(0x00000000e36c6000) deq 0x00000000e36c6430(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.214255: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.214257: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6460(0x00000000e36c6000) deq 0x00000000e36c6430(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.214259: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.214296: xhci_handle_event: EVENT: TRB 00000000e36c6450 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.214301: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.214304: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6460(0x00000000e36c6000) deq 0x00000000e36c6460(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.214307: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.214313: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758cf0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.214370: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.214374: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.214377: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6470(0x00000000e36c6000) deq 0x00000000e36c6460(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.214378: xhci_queue_trb: CTRL: Buffer 00000000e36b2a80 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.214380: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6480(0x00000000e36c6000) deq 0x00000000e36c6460(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.214382: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.214384: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6490(0x00000000e36c6000) deq 0x00000000e36c6460(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.214385: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.214421: xhci_handle_event: EVENT: TRB 00000000e36c6480 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.214425: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.214429: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6490(0x00000000e36c6000) deq 0x00000000e36c6490(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.214431: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.214434: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758d00(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.214493: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.214497: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.214500: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c64a0(0x00000000e36c6000) deq 0x00000000e36c6490(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.214501: xhci_queue_trb: CTRL: Buffer 00000000e36b2a80 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.214503: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c64b0(0x00000000e36c6000) deq 0x00000000e36c6490(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.214504: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.214506: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c64c0(0x00000000e36c6000) deq 0x00000000e36c6490(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.214508: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.214544: xhci_handle_event: EVENT: TRB 00000000e36c64b0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.214548: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.214552: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c64c0(0x00000000e36c6000) deq 0x00000000e36c64c0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.214555: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.214558: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758d10(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.225913: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.225918: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.225921: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c64d0(0x00000000e36c6000) deq 0x00000000e36c64c0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.225922: xhci_queue_trb: CTRL: Buffer 00000000e36b2a80 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.225924: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c64e0(0x00000000e36c6000) deq 0x00000000e36c64c0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.225926: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.225928: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c64f0(0x00000000e36c6000) deq 0x00000000e36c64c0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.225929: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.226040: xhci_handle_event: EVENT: TRB 00000000e36c64e0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.226046: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.226050: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c64f0(0x00000000e36c6000) deq 0x00000000e36c64f0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.226053: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.226057: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758d20(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.226122: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.226126: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.226129: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6500(0x00000000e36c6000) deq 0x00000000e36c64f0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.226130: xhci_queue_trb: CTRL: Buffer 0000000000000c41 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.226132: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6510(0x00000000e36c6000) deq 0x00000000e36c64f0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.226133: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.226135: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6520(0x00000000e36c6000) deq 0x00000000e36c64f0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.226137: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.226176: xhci_handle_event: EVENT: TRB 00000000e36c6510 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.226181: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.226184: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6520(0x00000000e36c6000) deq 0x00000000e36c6520(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.226187: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.226190: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758d30(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.226249: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.226253: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.226256: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6530(0x00000000e36c6000) deq 0x00000000e36c6520(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.226257: xhci_queue_trb: CTRL: Buffer 00000000e36b2a80 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.226259: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6540(0x00000000e36c6000) deq 0x00000000e36c6520(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.226261: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.226263: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6550(0x00000000e36c6000) deq 0x00000000e36c6520(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.226264: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.226301: xhci_handle_event: EVENT: TRB 00000000e36c6540 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.226305: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.226308: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6550(0x00000000e36c6000) deq 0x00000000e36c6550(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.226311: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.226314: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758d40(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.226375: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.226379: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.226382: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6560(0x00000000e36c6000) deq 0x00000000e36c6550(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.226383: xhci_queue_trb: CTRL: Buffer 00000000e36b2a80 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.226385: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6570(0x00000000e36c6000) deq 0x00000000e36c6550(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.226386: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.226388: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6580(0x00000000e36c6000) deq 0x00000000e36c6550(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.226390: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.226427: xhci_handle_event: EVENT: TRB 00000000e36c6570 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.226431: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.226434: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6580(0x00000000e36c6000) deq 0x00000000e36c6580(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.226437: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.226440: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758d50(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.226499: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.226503: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.226506: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6590(0x00000000e36c6000) deq 0x00000000e36c6580(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.226507: xhci_queue_trb: CTRL: Buffer 00000000e36b2a80 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.226509: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c65a0(0x00000000e36c6000) deq 0x00000000e36c6580(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.226510: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.226513: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c65b0(0x00000000e36c6000) deq 0x00000000e36c6580(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.226514: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.226551: xhci_handle_event: EVENT: TRB 00000000e36c65a0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.226555: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.226559: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c65b0(0x00000000e36c6000) deq 0x00000000e36c65b0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.226561: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.226564: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758d60(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.226619: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.226624: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.226626: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c65c0(0x00000000e36c6000) deq 0x00000000e36c65b0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.226630: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.226632: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c65d0(0x00000000e36c6000) deq 0x00000000e36c65b0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.226633: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.226635: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c65e0(0x00000000e36c6000) deq 0x00000000e36c65b0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.226637: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.226676: xhci_handle_event: EVENT: TRB 00000000e36c65d0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.226680: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.226683: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c65e0(0x00000000e36c6000) deq 0x00000000e36c65e0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.226686: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.226689: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758d70(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.226740: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.226744: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.226746: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c65f0(0x00000000e36c6000) deq 0x00000000e36c65e0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.226748: xhci_queue_trb: CTRL: Buffer 0000000000000f83 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.226750: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6600(0x00000000e36c6000) deq 0x00000000e36c65e0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.226751: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.226753: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6610(0x00000000e36c6000) deq 0x00000000e36c65e0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.226754: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.226791: xhci_handle_event: EVENT: TRB 00000000e36c6600 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.226795: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.226798: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6610(0x00000000e36c6000) deq 0x00000000e36c6610(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.226801: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.226804: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758d80(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.226861: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.226866: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.226868: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6620(0x00000000e36c6000) deq 0x00000000e36c6610(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.226869: xhci_queue_trb: CTRL: Buffer 00000000e36b2a80 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.226871: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6630(0x00000000e36c6000) deq 0x00000000e36c6610(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.226873: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.226875: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6640(0x00000000e36c6000) deq 0x00000000e36c6610(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.226876: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.226985: xhci_handle_event: EVENT: TRB 00000000e36c6630 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.226990: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.226993: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6640(0x00000000e36c6000) deq 0x00000000e36c6640(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.226996: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.226999: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758d90(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.227089: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.227093: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.227096: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6650(0x00000000e36c6000) deq 0x00000000e36c6640(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.227097: xhci_queue_trb: CTRL: Buffer 00000000e36b2a80 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.227099: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6660(0x00000000e36c6000) deq 0x00000000e36c6640(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.227100: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.227103: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6670(0x00000000e36c6000) deq 0x00000000e36c6640(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.227104: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.227146: xhci_handle_event: EVENT: TRB 00000000e36c6660 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.227150: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.227154: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6670(0x00000000e36c6000) deq 0x00000000e36c6670(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.227156: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.227159: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758da0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.227214: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.227220: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.227222: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6680(0x00000000e36c6000) deq 0x00000000e36c6670(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.227224: xhci_queue_trb: CTRL: Buffer 0000000000000f41 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.227226: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6690(0x00000000e36c6000) deq 0x00000000e36c6670(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.227227: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.227229: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c66a0(0x00000000e36c6000) deq 0x00000000e36c6670(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.227231: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.227270: xhci_handle_event: EVENT: TRB 00000000e36c6690 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.227274: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.227278: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c66a0(0x00000000e36c6000) deq 0x00000000e36c66a0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.227281: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.227284: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758db0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.227339: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.227343: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.227346: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c66b0(0x00000000e36c6000) deq 0x00000000e36c66a0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.227347: xhci_queue_trb: CTRL: Buffer 00000000e36b2a80 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.227349: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c66c0(0x00000000e36c6000) deq 0x00000000e36c66a0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.227350: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.227352: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c66d0(0x00000000e36c6000) deq 0x00000000e36c66a0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.227354: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.227390: xhci_handle_event: EVENT: TRB 00000000e36c66c0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.227395: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.227399: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c66d0(0x00000000e36c6000) deq 0x00000000e36c66d0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.227401: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.227404: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758dc0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.227465: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.227469: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.227472: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c66e0(0x00000000e36c6000) deq 0x00000000e36c66d0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.227473: xhci_queue_trb: CTRL: Buffer 00000000e36b2a80 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.227475: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c66f0(0x00000000e36c6000) deq 0x00000000e36c66d0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.227476: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.227478: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6700(0x00000000e36c6000) deq 0x00000000e36c66d0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.227480: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.227517: xhci_handle_event: EVENT: TRB 00000000e36c66f0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.227521: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.227526: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6700(0x00000000e36c6000) deq 0x00000000e36c6700(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.227529: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.227532: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758dd0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.227592: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.227599: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.227601: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6710(0x00000000e36c6000) deq 0x00000000e36c6700(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.227602: xhci_queue_trb: CTRL: Buffer 00000000e36b2a80 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.227604: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6720(0x00000000e36c6000) deq 0x00000000e36c6700(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.227606: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.227608: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6730(0x00000000e36c6000) deq 0x00000000e36c6700(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.227609: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.227648: xhci_handle_event: EVENT: TRB 00000000e36c6720 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.227652: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.227656: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6730(0x00000000e36c6000) deq 0x00000000e36c6730(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.227658: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.227662: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758de0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.227719: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.227725: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.227727: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6740(0x00000000e36c6000) deq 0x00000000e36c6730(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.227728: xhci_queue_trb: CTRL: Buffer 0000000000000801 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.227730: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6750(0x00000000e36c6000) deq 0x00000000e36c6730(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.227731: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.227733: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6760(0x00000000e36c6000) deq 0x00000000e36c6730(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.227735: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.227772: xhci_handle_event: EVENT: TRB 00000000e36c6750 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.227776: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.227779: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6760(0x00000000e36c6000) deq 0x00000000e36c6760(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.227782: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.227785: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758df0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.227838: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.227842: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.227844: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6770(0x00000000e36c6000) deq 0x00000000e36c6760(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.227846: xhci_queue_trb: CTRL: Buffer 00000000e36b2a80 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.227848: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6780(0x00000000e36c6000) deq 0x00000000e36c6760(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.227849: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.227851: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6790(0x00000000e36c6000) deq 0x00000000e36c6760(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.227854: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.227891: xhci_handle_event: EVENT: TRB 00000000e36c6780 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.227895: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.227898: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6790(0x00000000e36c6000) deq 0x00000000e36c6790(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.227901: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.227904: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758e00(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.227961: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.227965: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.227967: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c67a0(0x00000000e36c6000) deq 0x00000000e36c6790(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.227969: xhci_queue_trb: CTRL: Buffer 00000000e36b2a80 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.227971: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c67b0(0x00000000e36c6000) deq 0x00000000e36c6790(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.227972: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.227974: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c67c0(0x00000000e36c6000) deq 0x00000000e36c6790(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.227976: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.228087: xhci_handle_event: EVENT: TRB 00000000e36c67b0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.228094: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.228098: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c67c0(0x00000000e36c6000) deq 0x00000000e36c67c0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.228100: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0700 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.228104: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758e10(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.228616: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0600 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.228622: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.228625: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c67d0(0x00000000e36c6000) deq 0x00000000e36c67c0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.228627: xhci_queue_trb: CTRL: Buffer 00000000e3691f00 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.228629: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c67e0(0x00000000e36c6000) deq 0x00000000e36c67c0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.228630: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.228632: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c67f0(0x00000000e36c6000) deq 0x00000000e36c67c0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.228633: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] dNh.. 4.228695: xhci_handle_event: EVENT: TRB 00000000e36c67e0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] dNh.. 4.228700: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] dNh.. 4.228704: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c67f0(0x00000000e36c6000) deq 0x00000000e36c67f0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] dNh.. 4.228707: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0600 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] dNh.. 4.228711: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758e20(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.229686: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0600 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.229697: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.229699: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6800(0x00000000e36c6000) deq 0x00000000e36c67f0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.229701: xhci_queue_trb: CTRL: Buffer 0000000000000f41 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.229703: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6810(0x00000000e36c6000) deq 0x00000000e36c67f0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.229705: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.229707: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6820(0x00000000e36c6000) deq 0x00000000e36c67f0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.229709: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.229846: xhci_handle_event: EVENT: TRB 00000000e36c6810 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.229857: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.229862: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6820(0x00000000e36c6000) deq 0x00000000e36c6820(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.229865: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0600 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.229872: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758e30(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.230180: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0600 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.230185: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.230188: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6830(0x00000000e36c6000) deq 0x00000000e36c6820(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.230190: xhci_queue_trb: CTRL: Buffer 00000000e36b5080 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.230192: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6840(0x00000000e36c6000) deq 0x00000000e36c6820(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.230193: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.230195: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6850(0x00000000e36c6000) deq 0x00000000e36c6820(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.230197: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.230255: xhci_handle_event: EVENT: TRB 00000000e36c6840 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.230261: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.230264: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6850(0x00000000e36c6000) deq 0x00000000e36c6850(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.230267: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0600 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.230272: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758e40(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.230334: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0600 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.230338: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.230341: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6860(0x00000000e36c6000) deq 0x00000000e36c6850(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.230342: xhci_queue_trb: CTRL: Buffer 00000000e36b5080 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.230344: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6870(0x00000000e36c6000) deq 0x00000000e36c6850(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.230345: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.230348: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6880(0x00000000e36c6000) deq 0x00000000e36c6850(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.230349: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.230384: xhci_handle_event: EVENT: TRB 00000000e36c6870 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.230389: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.230392: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6880(0x00000000e36c6000) deq 0x00000000e36c6880(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.230395: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0600 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.230398: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758e50(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.230461: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0600 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.230465: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.230468: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6890(0x00000000e36c6000) deq 0x00000000e36c6880(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.230469: xhci_queue_trb: CTRL: Buffer 00000000e36b5080 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.230471: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c68a0(0x00000000e36c6000) deq 0x00000000e36c6880(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.230472: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.230474: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c68b0(0x00000000e36c6000) deq 0x00000000e36c6880(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.230476: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.230513: xhci_handle_event: EVENT: TRB 00000000e36c68a0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.230517: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.230520: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c68b0(0x00000000e36c6000) deq 0x00000000e36c68b0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.230523: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0600 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.230526: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758e60(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.230585: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0600 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.230589: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.230592: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c68c0(0x00000000e36c6000) deq 0x00000000e36c68b0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.230593: xhci_queue_trb: CTRL: Buffer 00000000000000d0 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.230595: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c68d0(0x00000000e36c6000) deq 0x00000000e36c68b0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.230596: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.230599: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c68e0(0x00000000e36c6000) deq 0x00000000e36c68b0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.230600: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.230637: xhci_handle_event: EVENT: TRB 00000000e36c68d0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.230641: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.230644: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c68e0(0x00000000e36c6000) deq 0x00000000e36c68e0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.230647: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0600 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.230650: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758e70(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.230706: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0600 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.230711: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.230713: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c68f0(0x00000000e36c6000) deq 0x00000000e36c68e0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.230714: xhci_queue_trb: CTRL: Buffer 0000000000000f83 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.230716: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6900(0x00000000e36c6000) deq 0x00000000e36c68e0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.230718: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.230720: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6910(0x00000000e36c6000) deq 0x00000000e36c68e0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.230721: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.230756: xhci_handle_event: EVENT: TRB 00000000e36c6900 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.230760: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.230764: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6910(0x00000000e36c6000) deq 0x00000000e36c6910(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.230766: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0600 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.230770: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758e80(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.230830: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0600 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.230834: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.230836: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6920(0x00000000e36c6000) deq 0x00000000e36c6910(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.230838: xhci_queue_trb: CTRL: Buffer 00000000e36b5080 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.230840: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6930(0x00000000e36c6000) deq 0x00000000e36c6910(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.230841: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.230843: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6940(0x00000000e36c6000) deq 0x00000000e36c6910(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.230844: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.230960: xhci_handle_event: EVENT: TRB 00000000e36c6930 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.230964: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.230968: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6940(0x00000000e36c6000) deq 0x00000000e36c6940(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.230971: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0600 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.230974: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758e90(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] .N... 4.241491: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0600 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] dN... 4.241496: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] dN... 4.241499: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6950(0x00000000e36c6000) deq 0x00000000e36c6940(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] dN... 4.241504: xhci_queue_trb: CTRL: Buffer 00000000e36b5080 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] dN... 4.241506: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6960(0x00000000e36c6000) deq 0x00000000e36c6940(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] dN... 4.241507: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] dN... 4.241509: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6970(0x00000000e36c6000) deq 0x00000000e36c6940(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] dN... 4.241510: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.241540: xhci_handle_event: EVENT: TRB 00000000e36c6960 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.241546: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.241550: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6970(0x00000000e36c6000) deq 0x00000000e36c6970(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.241553: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0600 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.241561: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758ea0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.241645: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0600 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.241649: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.241652: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6980(0x00000000e36c6000) deq 0x00000000e36c6970(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.241653: xhci_queue_trb: CTRL: Buffer 0000000000000801 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.241655: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6990(0x00000000e36c6000) deq 0x00000000e36c6970(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.241656: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.241658: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c69a0(0x00000000e36c6000) deq 0x00000000e36c6970(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.241660: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.241701: xhci_handle_event: EVENT: TRB 00000000e36c6990 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.241705: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.241708: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c69a0(0x00000000e36c6000) deq 0x00000000e36c69a0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.241711: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0600 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.241714: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758eb0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.241773: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0600 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.241778: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.241780: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c69b0(0x00000000e36c6000) deq 0x00000000e36c69a0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.241781: xhci_queue_trb: CTRL: Buffer 00000000e36b5080 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.241783: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c69c0(0x00000000e36c6000) deq 0x00000000e36c69a0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.241785: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.241787: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c69d0(0x00000000e36c6000) deq 0x00000000e36c69a0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.241788: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.241826: xhci_handle_event: EVENT: TRB 00000000e36c69c0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.241830: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.241834: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c69d0(0x00000000e36c6000) deq 0x00000000e36c69d0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.241836: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0600 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.241840: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758ec0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.243204: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0600 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.243211: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.243213: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c69e0(0x00000000e36c6000) deq 0x00000000e36c69d0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.243215: xhci_queue_trb: CTRL: Buffer 00000000e36b5080 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.243217: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c69f0(0x00000000e36c6000) deq 0x00000000e36c69d0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.243219: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.243221: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6a00(0x00000000e36c6000) deq 0x00000000e36c69d0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.243223: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.243267: xhci_handle_event: EVENT: TRB 00000000e36c69f0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.243272: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.243276: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6a00(0x00000000e36c6000) deq 0x00000000e36c6a00(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.243280: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0600 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.243285: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758ed0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.243353: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0600 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.243358: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.243360: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6a10(0x00000000e36c6000) deq 0x00000000e36c6a00(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.243362: xhci_queue_trb: CTRL: Buffer 00000000e36b5080 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.243364: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6a20(0x00000000e36c6000) deq 0x00000000e36c6a00(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.243365: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.243367: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6a30(0x00000000e36c6000) deq 0x00000000e36c6a00(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.243369: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.243491: xhci_handle_event: EVENT: TRB 00000000e36c6a20 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.243495: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.243499: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6a30(0x00000000e36c6000) deq 0x00000000e36c6a30(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.243502: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0600 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.243506: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758ee0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.243589: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0600 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.243593: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.243596: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6a40(0x00000000e36c6000) deq 0x00000000e36c6a30(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.243597: xhci_queue_trb: CTRL: Buffer 0000000000003800 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.243600: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6a50(0x00000000e36c6000) deq 0x00000000e36c6a30(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.243601: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.243603: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6a60(0x00000000e36c6000) deq 0x00000000e36c6a30(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.243605: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.243641: xhci_handle_event: EVENT: TRB 00000000e36c6a50 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.243645: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.243648: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6a60(0x00000000e36c6000) deq 0x00000000e36c6a60(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.243651: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0600 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.243654: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758ef0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.243713: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0600 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.243718: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.243720: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6a70(0x00000000e36c6000) deq 0x00000000e36c6a60(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.243721: xhci_queue_trb: CTRL: Buffer 0000000000000803 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.243723: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6a80(0x00000000e36c6000) deq 0x00000000e36c6a60(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.243725: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.243727: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6a90(0x00000000e36c6000) deq 0x00000000e36c6a60(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.243728: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.243765: xhci_handle_event: EVENT: TRB 00000000e36c6a80 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.243769: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.243773: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6a90(0x00000000e36c6000) deq 0x00000000e36c6a90(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.243775: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0600 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.243778: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758f00(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.243842: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236a0600 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.243847: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.243849: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6aa0(0x00000000e36c6000) deq 0x00000000e36c6a90(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.243850: xhci_queue_trb: CTRL: Buffer 00000000e36b5080 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.243853: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6ab0(0x00000000e36c6000) deq 0x00000000e36c6a90(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.243854: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.243856: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6ac0(0x00000000e36c6000) deq 0x00000000e36c6a90(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.243857: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.243893: xhci_handle_event: EVENT: TRB 00000000e36c6ab0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.243897: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.243901: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6ac0(0x00000000e36c6000) deq 0x00000000e36c6ac0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.243903: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236a0600 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.243907: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758f10(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.244509: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025d3ef00 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.244514: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0130 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.244516: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6ad0(0x00000000e36c6000) deq 0x00000000e36c6ac0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.244518: xhci_queue_trb: CTRL: Buffer 00000000e36b5d80 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.244520: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6ae0(0x00000000e36c6000) deq 0x00000000e36c6ac0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.244521: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.244523: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6af0(0x00000000e36c6000) deq 0x00000000e36c6ac0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.244524: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] dNh.. 4.244578: xhci_handle_event: EVENT: TRB 00000000e36c6ae0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] dNh.. 4.244583: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] dNh.. 4.244586: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6af0(0x00000000e36c6000) deq 0x00000000e36c6af0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] dNh.. 4.244589: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025d3ef00 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] dNh.. 4.244592: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758f20(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.245218: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8025d3ef00 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.245225: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0130 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.245228: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6b00(0x00000000e36c6000) deq 0x00000000e36c6af0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.245230: xhci_queue_trb: CTRL: Buffer 0000000000010001 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-72 [001] d.... 4.245232: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6b10(0x00000000e36c6000) deq 0x00000000e36c6af0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.245233: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.245235: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6b20(0x00000000e36c6000) deq 0x00000000e36c6af0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.245240: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.245372: xhci_handle_event: EVENT: TRB 00000000e36c6b10 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.245377: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.245382: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6b20(0x00000000e36c6000) deq 0x00000000e36c6b20(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.245386: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8025d3ef00 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.245392: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758f30(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] .N... 4.259607: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8025d5fc00 pipe 2147484544 slot 2 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] dN... 4.259625: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0002 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] dN... 4.259629: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056410(0x00000000e4056000) deq 0x00000000e4056400(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] dN... 4.259631: xhci_queue_trb: CTRL: Buffer 00000000e36c5a00 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] dN... 4.259633: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056420(0x00000000e4056000) deq 0x00000000e4056400(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] dN... 4.259635: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] dN... 4.259637: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056430(0x00000000e4056000) deq 0x00000000e4056400(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] dN... 4.259639: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-127 [000] d.h.. 4.259668: xhci_handle_event: EVENT: TRB 00000000e4056420 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-127 [000] d.h.. 4.259677: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-127 [000] d.h.. 4.259684: xhci_inc_deq: CTRL ffffff8023781780: enq 0x00000000e4056430(0x00000000e4056000) deq 0x00000000e4056430(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-127 [000] d.h.. 4.259688: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8025d5fc00 pipe 2147484544 slot 2 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-127 [000] d.h.. 4.259695: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758f40(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.260106: xhci_queue_trb: CMD: Enable Slot Command: flags C
<task>-72 [001] d.... 4.260112: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e4759230(0x00000000e4759000) deq 0x00000000e4759220(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.260115: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-179 [000] d.h.. 4.260137: xhci_handle_event: EVENT: TRB 00000000e4759220 status 'Success' len 0 slot 4 ep 0 type 'Command Completion Event' flags e:C
<task>-179 [000] d.h.. 4.260142: xhci_handle_command: CMD: Enable Slot Command: flags C
<task>-179 [000] d.h.. 4.260159: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e4759230(0x00000000e4759000) deq 0x00000000e4759230(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-179 [000] d.h.. 4.260160: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758f50(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.260244: xhci_ring_alloc: CTRL ffffff80236b5200: enq 0x00000000e360a000(0x00000000e360a000) deq 0x00000000e360a000(0x00000000e360a000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.260248: xhci_alloc_virt_device: vdev ffffff8025de4000 ctx e3604000 | e4fc2000 num 0 state 0 speed 0 port 0 level 0 slot 0
<task>-72 [001] ..... 4.260251: xhci_alloc_dev: RS 00000 UNKNOWN speed Ctx Entries 0 MEL 0 us Port# 0/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-72 [001] ..... 4.260304: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8025d5fc00 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.260317: xhci_queue_trb: CTRL: bRequestType 23 bRequest 03 wValue 0004 wIndex 0002 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.260319: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056440(0x00000000e4056000) deq 0x00000000e4056430(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.260321: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.260323: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056450(0x00000000e4056000) deq 0x00000000e4056430(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.260325: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-179 [000] d.h.. 4.260346: xhci_handle_event: EVENT: TRB 00000000e4056440 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-179 [000] d.h.. 4.260352: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-179 [000] d.h.. 4.260356: xhci_inc_deq: CTRL ffffff8023781780: enq 0x00000000e4056450(0x00000000e4056000) deq 0x00000000e4056450(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-179 [000] d.h.. 4.260360: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8025d5fc00 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-179 [000] d.h.. 4.260365: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758f60(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.278025: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8025d5fc00 pipe 2147484544 slot 2 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.278045: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0002 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.278050: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056460(0x00000000e4056000) deq 0x00000000e4056450(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.278052: xhci_queue_trb: CTRL: Buffer 00000000e36c5a00 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.278055: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056470(0x00000000e4056000) deq 0x00000000e4056450(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.278056: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.278058: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056480(0x00000000e4056000) deq 0x00000000e4056450(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.278061: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<idle>-0 [000] d.h.. 4.278222: xhci_handle_event: EVENT: TRB 00000000e4056470 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.278232: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.278238: xhci_inc_deq: CTRL ffffff8023781780: enq 0x00000000e4056480(0x00000000e4056000) deq 0x00000000e4056480(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.278246: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8025d5fc00 pipe 2147484544 slot 2 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.278257: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758f70(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.278353: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8025d5fc00 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.278359: xhci_queue_trb: CTRL: bRequestType 23 bRequest 01 wValue 0014 wIndex 0002 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.278361: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056490(0x00000000e4056000) deq 0x00000000e4056480(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.278363: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.278365: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e40564a0(0x00000000e4056000) deq 0x00000000e4056480(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.278367: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<idle>-0 [000] d.h.. 4.278408: xhci_handle_event: EVENT: TRB 00000000e4056490 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.278413: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.278417: xhci_inc_deq: CTRL ffffff8023781780: enq 0x00000000e40564a0(0x00000000e4056000) deq 0x00000000e40564a0(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.278423: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8025d5fc00 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.278427: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758f80(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] .N... 4.347050: xhci_setup_device_slot: RS 00000 UNKNOWN speed Ctx Entries 0 MEL 0 us Port# 0/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-72 [001] .N... 4.347070: xhci_setup_addressable_virt_device: vdev ffffff8025de4000 ctx e3604000 | e4fc2000 num 0 state 5 speed 3 port 2 level 3 slot 4
<task>-72 [001] .N... 4.347074: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e3604000, ctx_va=@ffffffc080fe1000
<task>-72 [001] .N... 4.347078: xhci_address_ctrl_ctx: Add: slot ep0
<task>-72 [001] dN... 4.347082: xhci_setup_device: vdev ffffff8025de4000 ctx e3604000 | e4fc2000 num 0 state 5 speed 3 port 2 level 3 slot 4
<task>-72 [001] dN... 4.347093: xhci_queue_trb: CMD: Address Device Command: ctx 00000000e3604000 slot 4 flags B:C
<task>-72 [001] dN... 4.347097: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e4759240(0x00000000e4759000) deq 0x00000000e4759230(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-72 [001] dN... 4.347101: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-102 [000] d.h.. 4.347126: xhci_handle_event: EVENT: TRB 00000000e4759230 status 'Success' len 0 slot 4 ep 0 type 'Command Completion Event' flags e:C
<task>-102 [000] d.h.. 4.347132: xhci_handle_command: CMD: Address Device Command: ctx 00000000e3604000 slot 4 flags B:C
<task>-102 [000] d.h.. 4.347137: xhci_handle_cmd_addr_dev: RS 00022 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<task>-102 [000] d.h.. 4.347148: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e4759240(0x00000000e4759000) deq 0x00000000e4759240(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-102 [000] d.h.. 4.347151: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758f90(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.347440: xhci_dbg_address: Successful setup context command
<task>-72 [001] ..... 4.347448: xhci_dbg_address: Op regs DCBAA ptr = 0x000000e475a000
<task>-72 [001] ..... 4.347455: xhci_dbg_address: Slot ID 4 dcbaa entry @ffffffc080c1d020 = 0x000000e4fc2000
<task>-72 [001] ..... 4.347460: xhci_dbg_address: Output Context DMA address = 0xe4fc2000
<task>-72 [001] ..... 4.347462: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e3604000, ctx_va=@ffffffc080fe1000
<task>-72 [001] ..... 4.347465: xhci_address_ctx: ctx_64=0, ctx_type=1, ctx_dma=@e4fc2000, ctx_va=@ffffffc081ba3000
<task>-72 [001] ..... 4.347468: xhci_dbg_address: Internal device address = 0
<task>-72 [001] ..... 4.347524: xhci_urb_enqueue: 1-1.2.2 ep0out-control: urb ffffff8025d5fc00 pipe 2147483776 slot 4 length 0/64 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.347537: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0100 wIndex 0000 wLength 64 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.347540: xhci_inc_enq: CTRL ffffff80236b5200: enq 0x00000000e360a010(0x00000000e360a000) deq 0x00000000e360a000(0x00000000e360a000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.347542: xhci_queue_trb: CTRL: Buffer 00000000e3691f00 length 64 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.347545: xhci_inc_enq: CTRL ffffff80236b5200: enq 0x00000000e360a020(0x00000000e360a000) deq 0x00000000e360a000(0x00000000e360a000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.347546: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.347548: xhci_inc_enq: CTRL ffffff80236b5200: enq 0x00000000e360a030(0x00000000e360a000) deq 0x00000000e360a000(0x00000000e360a000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.347551: xhci_ring_ep_doorbell: Ring doorbell for Slot 4 ep0in
<task>-30 [000] d.h.. 4.347594: xhci_handle_event: EVENT: TRB 00000000e360a010 status 'Short Packet' len 46 slot 4 ep 1 type 'Transfer Event' flags e:C
<task>-30 [000] d.h.. 4.347601: xhci_handle_transfer: CTRL: Buffer 00000000e3691f00 length 64 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-30 [000] d.h.. 4.347605: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758fa0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-30 [000] d.h.. 4.347607: xhci_handle_event: EVENT: TRB 00000000e360a020 status 'Success' len 0 slot 4 ep 1 type 'Transfer Event' flags e:C
<task>-30 [000] d.h.. 4.347610: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-30 [000] d.h.. 4.347613: xhci_inc_deq: CTRL ffffff80236b5200: enq 0x00000000e360a030(0x00000000e360a000) deq 0x00000000e360a030(0x00000000e360a000) segs 2 stream 0 bounce 0 cycle 1
<task>-30 [000] d.h.. 4.347619: xhci_urb_giveback: 1-1.2.2 ep0out-control: urb ffffff8025d5fc00 pipe 2147483776 slot 4 length 18/64 sgs 0/0 stream 0 flags 00110200
<task>-30 [000] d.h.. 4.347628: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758fb0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.347676: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8025d5fc00 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.347682: xhci_queue_trb: CTRL: bRequestType 23 bRequest 03 wValue 0004 wIndex 0002 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.347685: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e40564b0(0x00000000e4056000) deq 0x00000000e40564a0(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.347686: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.347688: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e40564c0(0x00000000e4056000) deq 0x00000000e40564a0(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.347690: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-102 [000] d.h.. 4.347703: xhci_handle_event: EVENT: TRB 00000000e40564b0 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.347707: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-102 [000] d.h.. 4.347711: xhci_inc_deq: CTRL ffffff8023781780: enq 0x00000000e40564c0(0x00000000e4056000) deq 0x00000000e40564c0(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-102 [000] d.h.. 4.347713: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8025d5fc00 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-102 [000] d.h.. 4.347717: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758fc0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.370108: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8025d5fc00 pipe 2147484544 slot 2 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.370128: xhci_queue_trb: CTRL: bRequestType a3 bRequest 00 wValue 0000 wIndex 0002 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.370133: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e40564d0(0x00000000e4056000) deq 0x00000000e40564c0(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.370136: xhci_queue_trb: CTRL: Buffer 00000000e36c5a00 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.370138: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e40564e0(0x00000000e4056000) deq 0x00000000e40564c0(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.370140: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.370144: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e40564f0(0x00000000e4056000) deq 0x00000000e40564c0(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.370147: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-31 [000] dNh.. 4.370176: xhci_handle_event: EVENT: TRB 00000000e40564e0 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-31 [000] dNh.. 4.370185: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-31 [000] dNh.. 4.370192: xhci_inc_deq: CTRL ffffff8023781780: enq 0x00000000e40564f0(0x00000000e4056000) deq 0x00000000e40564f0(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-31 [000] dNh.. 4.370197: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8025d5fc00 pipe 2147484544 slot 2 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-31 [000] dNh.. 4.370207: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758fd0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.371305: xhci_urb_enqueue: 1-1.2 ep0out-control: urb ffffff8025d5fc00 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.371317: xhci_queue_trb: CTRL: bRequestType 23 bRequest 01 wValue 0014 wIndex 0002 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.371328: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056500(0x00000000e4056000) deq 0x00000000e40564f0(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.371329: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.371331: xhci_inc_enq: CTRL ffffff8023781780: enq 0x00000000e4056510(0x00000000e4056000) deq 0x00000000e40564f0(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.371334: xhci_ring_ep_doorbell: Ring doorbell for Slot 2 ep0in
<task>-31 [000] dNh.. 4.371362: xhci_handle_event: EVENT: TRB 00000000e4056500 status 'Success' len 0 slot 2 ep 1 type 'Transfer Event' flags e:C
<task>-31 [000] dNh.. 4.371368: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-31 [000] dNh.. 4.371372: xhci_inc_deq: CTRL ffffff8023781780: enq 0x00000000e4056510(0x00000000e4056000) deq 0x00000000e4056510(0x00000000e4056000) segs 2 stream 0 bounce 0 cycle 1
<task>-31 [000] dNh.. 4.371375: xhci_urb_giveback: 1-1.2 ep0out-control: urb ffffff8025d5fc00 pipe 2147484416 slot 2 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-31 [000] dNh.. 4.371383: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758fe0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.425927: xhci_discover_or_reset_device: RS 00022 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<task>-72 [001] d.... 4.425963: xhci_queue_trb: CMD: Reset Device Command: slot 4 flags C
<task>-72 [001] d.... 4.425967: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e4759250(0x00000000e4759000) deq 0x00000000e4759240(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.425970: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 4.426001: xhci_handle_event: EVENT: TRB 00000000e4759240 status 'Context State Error' len 0 slot 4 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 4.426007: xhci_handle_command: CMD: Reset Device Command: slot 4 flags C
<idle>-0 [000] d.h.. 4.426014: xhci_handle_cmd_reset_dev: RS 00022 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<idle>-0 [000] d.h.. 4.426025: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e4759250(0x00000000e4759000) deq 0x00000000e4759250(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.426027: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4758ff0(0x00000000e4758000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.426057: xhci_setup_device_slot: RS 00022 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State default
<task>-72 [001] ..... 4.426065: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e3604000, ctx_va=@ffffffc080fe1000
<task>-72 [001] ..... 4.426069: xhci_address_ctrl_ctx: Add: slot ep0
<task>-72 [001] d.... 4.426072: xhci_setup_device: vdev ffffff8025de4000 ctx e3604000 | e4fc2000 num 0 state 5 speed 3 port 2 level 3 slot 4
<task>-72 [001] d.... 4.426076: xhci_queue_trb: CMD: Address Device Command: ctx 00000000e3604000 slot 4 flags b:C
<task>-72 [001] d.... 4.426078: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e4759260(0x00000000e4759000) deq 0x00000000e4759250(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.426080: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 4.426201: xhci_handle_event: EVENT: TRB 00000000e4759250 status 'Success' len 0 slot 4 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 4.426205: xhci_handle_command: CMD: Address Device Command: ctx 00000000e3604000 slot 4 flags b:C
<idle>-0 [000] d.h.. 4.426209: xhci_handle_cmd_addr_dev: RS 00022 high-speed Ctx Entries 1 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 4 State addressed
<idle>-0 [000] d.h.. 4.426218: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e4759260(0x00000000e4759000) deq 0x00000000e4759260(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.426220: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757000(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.427485: xhci_dbg_address: Successful setup address command
<task>-72 [001] ..... 4.427498: xhci_dbg_address: Op regs DCBAA ptr = 0x000000e475a000
<task>-72 [001] ..... 4.427506: xhci_dbg_address: Slot ID 4 dcbaa entry @ffffffc080c1d020 = 0x000000e4fc2000
<task>-72 [001] ..... 4.427511: xhci_dbg_address: Output Context DMA address = 0xe4fc2000
<task>-72 [001] ..... 4.427515: xhci_address_ctx: ctx_64=0, ctx_type=2, ctx_dma=@e3604000, ctx_va=@ffffffc080fe1000
<task>-72 [001] ..... 4.427517: xhci_address_ctx: ctx_64=0, ctx_type=1, ctx_dma=@e4fc2000, ctx_va=@ffffffc081ba3000
<task>-72 [001] ..... 4.427521: xhci_dbg_address: Internal device address = 4
<task>-72 [001] ..... 4.452015: xhci_urb_enqueue: 1-1.2.2 ep0out-control: urb ffffff8025d5f900 pipe 2147485056 slot 4 length 0/18 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.453064: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0100 wIndex 0000 wLength 18 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.453159: xhci_inc_enq: CTRL ffffff80236b5200: enq 0x00000000e360a040(0x00000000e360a000) deq 0x00000000e360a030(0x00000000e360a000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.453253: xhci_queue_trb: CTRL: Buffer 00000000e2dfe900 length 18 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.453255: xhci_inc_enq: CTRL ffffff80236b5200: enq 0x00000000e360a050(0x00000000e360a000) deq 0x00000000e360a030(0x00000000e360a000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.453257: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.453350: xhci_inc_enq: CTRL ffffff80236b5200: enq 0x00000000e360a060(0x00000000e360a000) deq 0x00000000e360a030(0x00000000e360a000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.453441: xhci_ring_ep_doorbell: Ring doorbell for Slot 4 ep0in
<task>-113 [000] DNh.. 4.453785: xhci_handle_event: EVENT: TRB 00000000e360a050 status 'Success' len 0 slot 4 ep 1 type 'Transfer Event' flags e:C
<task>-113 [000] DNh.. 4.453794: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-113 [000] DNh.. 4.453799: xhci_inc_deq: CTRL ffffff80236b5200: enq 0x00000000e360a060(0x00000000e360a000) deq 0x00000000e360a060(0x00000000e360a000) segs 2 stream 0 bounce 0 cycle 1
<task>-113 [000] DNh.. 4.453805: xhci_urb_giveback: 1-1.2.2 ep0out-control: urb ffffff8025d5f900 pipe 2147485056 slot 4 length 18/18 sgs 0/0 stream 0 flags 00110200
<task>-113 [000] DNh.. 4.453813: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757010(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.460255: xhci_urb_enqueue: 1-1.2.2 ep0out-control: urb ffffff8025d5f900 pipe 2147485056 slot 4 length 0/9 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.460267: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0200 wIndex 0000 wLength 9 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.460270: xhci_inc_enq: CTRL ffffff80236b5200: enq 0x00000000e360a070(0x00000000e360a000) deq 0x00000000e360a060(0x00000000e360a000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.460273: xhci_queue_trb: CTRL: Buffer 00000000e2dfe300 length 9 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.460275: xhci_inc_enq: CTRL ffffff80236b5200: enq 0x00000000e360a080(0x00000000e360a000) deq 0x00000000e360a060(0x00000000e360a000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.460276: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.460278: xhci_inc_enq: CTRL ffffff80236b5200: enq 0x00000000e360a090(0x00000000e360a000) deq 0x00000000e360a060(0x00000000e360a000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.460281: xhci_ring_ep_doorbell: Ring doorbell for Slot 4 ep0in
<task>-126 [000] d.h.. 4.460325: xhci_handle_event: EVENT: TRB 00000000e360a080 status 'Success' len 0 slot 4 ep 1 type 'Transfer Event' flags e:C
<task>-126 [000] d.h.. 4.460333: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-126 [000] d.h.. 4.460337: xhci_inc_deq: CTRL ffffff80236b5200: enq 0x00000000e360a090(0x00000000e360a000) deq 0x00000000e360a090(0x00000000e360a000) segs 2 stream 0 bounce 0 cycle 1
<task>-126 [000] d.h.. 4.460342: xhci_urb_giveback: 1-1.2.2 ep0out-control: urb ffffff8025d5f900 pipe 2147485056 slot 4 length 9/9 sgs 0/0 stream 0 flags 00110200
<task>-126 [000] d.h.. 4.460347: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757020(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.460446: xhci_urb_enqueue: 1-1.2.2 ep0out-control: urb ffffff8025d5f900 pipe 2147485056 slot 4 length 0/55 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.460450: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0200 wIndex 0000 wLength 55 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.460452: xhci_inc_enq: CTRL ffffff80236b5200: enq 0x00000000e360a0a0(0x00000000e360a000) deq 0x00000000e360a090(0x00000000e360a000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.460454: xhci_queue_trb: CTRL: Buffer 00000000e2dfe280 length 55 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.460456: xhci_inc_enq: CTRL ffffff80236b5200: enq 0x00000000e360a0b0(0x00000000e360a000) deq 0x00000000e360a090(0x00000000e360a000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.460457: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.460459: xhci_inc_enq: CTRL ffffff80236b5200: enq 0x00000000e360a0c0(0x00000000e360a000) deq 0x00000000e360a090(0x00000000e360a000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.460460: xhci_ring_ep_doorbell: Ring doorbell for Slot 4 ep0in
<task>-126 [000] d.h.. 4.460501: xhci_handle_event: EVENT: TRB 00000000e360a0b0 status 'Success' len 0 slot 4 ep 1 type 'Transfer Event' flags e:C
<task>-126 [000] d.h.. 4.460506: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-126 [000] d.h.. 4.460509: xhci_inc_deq: CTRL ffffff80236b5200: enq 0x00000000e360a0c0(0x00000000e360a000) deq 0x00000000e360a0c0(0x00000000e360a000) segs 2 stream 0 bounce 0 cycle 1
<task>-126 [000] d.h.. 4.460512: xhci_urb_giveback: 1-1.2.2 ep0out-control: urb ffffff8025d5f900 pipe 2147485056 slot 4 length 55/55 sgs 0/0 stream 0 flags 00110200
<task>-126 [000] d.h.. 4.460515: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757030(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.462538: xhci_urb_enqueue: 1-1.2.2 ep0out-control: urb ffffff8025d5f500 pipe 2147485056 slot 4 length 0/255 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.462556: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0300 wIndex 0000 wLength 255 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.462560: xhci_inc_enq: CTRL ffffff80236b5200: enq 0x00000000e360a0d0(0x00000000e360a000) deq 0x00000000e360a0c0(0x00000000e360a000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.462563: xhci_queue_trb: CTRL: Buffer 00000000e5d5f600 length 255 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.462565: xhci_inc_enq: CTRL ffffff80236b5200: enq 0x00000000e360a0e0(0x00000000e360a000) deq 0x00000000e360a0c0(0x00000000e360a000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.462566: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.462568: xhci_inc_enq: CTRL ffffff80236b5200: enq 0x00000000e360a0f0(0x00000000e360a000) deq 0x00000000e360a0c0(0x00000000e360a000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.462572: xhci_ring_ep_doorbell: Ring doorbell for Slot 4 ep0in
<task>-127 [000] d.h.. 4.462602: xhci_handle_event: EVENT: TRB 00000000e360a0d0 status 'Short Packet' len 251 slot 4 ep 1 type 'Transfer Event' flags e:C
<task>-127 [000] d.h.. 4.462611: xhci_handle_transfer: CTRL: Buffer 00000000e5d5f600 length 255 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-127 [000] d.h.. 4.462617: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757040(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-127 [000] d.h.. 4.462618: xhci_handle_event: EVENT: TRB 00000000e360a0e0 status 'Success' len 0 slot 4 ep 1 type 'Transfer Event' flags e:C
<task>-127 [000] d.h.. 4.462621: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-127 [000] d.h.. 4.462625: xhci_inc_deq: CTRL ffffff80236b5200: enq 0x00000000e360a0f0(0x00000000e360a000) deq 0x00000000e360a0f0(0x00000000e360a000) segs 2 stream 0 bounce 0 cycle 1
<task>-127 [000] d.h.. 4.462629: xhci_urb_giveback: 1-1.2.2 ep0out-control: urb ffffff8025d5f500 pipe 2147485056 slot 4 length 4/255 sgs 0/0 stream 0 flags 00110200
<task>-127 [000] d.h.. 4.462639: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757050(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.462961: xhci_urb_enqueue: 1-1.2.2 ep0out-control: urb ffffff8025d5f500 pipe 2147485056 slot 4 length 0/255 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.462969: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0302 wIndex 0409 wLength 255 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.462972: xhci_inc_enq: CTRL ffffff80236b5200: enq 0x00000000e360a100(0x00000000e360a000) deq 0x00000000e360a0f0(0x00000000e360a000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.462974: xhci_queue_trb: CTRL: Buffer 00000000e5d5f600 length 255 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.462976: xhci_inc_enq: CTRL ffffff80236b5200: enq 0x00000000e360a110(0x00000000e360a000) deq 0x00000000e360a0f0(0x00000000e360a000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.462977: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.462979: xhci_inc_enq: CTRL ffffff80236b5200: enq 0x00000000e360a120(0x00000000e360a000) deq 0x00000000e360a0f0(0x00000000e360a000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.462981: xhci_ring_ep_doorbell: Ring doorbell for Slot 4 ep0in
<task>-179 [000] d.h.. 4.463024: xhci_handle_event: EVENT: TRB 00000000e360a100 status 'Short Packet' len 227 slot 4 ep 1 type 'Transfer Event' flags e:C
<task>-179 [000] d.h.. 4.463031: xhci_handle_transfer: CTRL: Buffer 00000000e5d5f600 length 255 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-179 [000] d.h.. 4.463035: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757060(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-179 [000] d.h.. 4.463037: xhci_handle_event: EVENT: TRB 00000000e360a110 status 'Success' len 0 slot 4 ep 1 type 'Transfer Event' flags e:C
<task>-179 [000] d.h.. 4.463040: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-179 [000] d.h.. 4.463043: xhci_inc_deq: CTRL ffffff80236b5200: enq 0x00000000e360a120(0x00000000e360a000) deq 0x00000000e360a120(0x00000000e360a000) segs 2 stream 0 bounce 0 cycle 1
<task>-179 [000] d.h.. 4.463047: xhci_urb_giveback: 1-1.2.2 ep0out-control: urb ffffff8025d5f500 pipe 2147485056 slot 4 length 28/255 sgs 0/0 stream 0 flags 00110200
<task>-179 [000] d.h.. 4.463053: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757070(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.463103: xhci_urb_enqueue: 1-1.2.2 ep0out-control: urb ffffff8025d5f500 pipe 2147485056 slot 4 length 0/255 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.463107: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0301 wIndex 0409 wLength 255 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.463110: xhci_inc_enq: CTRL ffffff80236b5200: enq 0x00000000e360a130(0x00000000e360a000) deq 0x00000000e360a120(0x00000000e360a000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.463111: xhci_queue_trb: CTRL: Buffer 00000000e5d5f600 length 255 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.463113: xhci_inc_enq: CTRL ffffff80236b5200: enq 0x00000000e360a140(0x00000000e360a000) deq 0x00000000e360a120(0x00000000e360a000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.463114: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.463117: xhci_inc_enq: CTRL ffffff80236b5200: enq 0x00000000e360a150(0x00000000e360a000) deq 0x00000000e360a120(0x00000000e360a000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.463118: xhci_ring_ep_doorbell: Ring doorbell for Slot 4 ep0in
<task>-179 [000] d.h.. 4.463155: xhci_handle_event: EVENT: TRB 00000000e360a130 status 'Short Packet' len 245 slot 4 ep 1 type 'Transfer Event' flags e:C
<task>-179 [000] d.h.. 4.463159: xhci_handle_transfer: CTRL: Buffer 00000000e5d5f600 length 255 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-179 [000] d.h.. 4.463166: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757080(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-179 [000] d.h.. 4.463168: xhci_handle_event: EVENT: TRB 00000000e360a140 status 'Success' len 0 slot 4 ep 1 type 'Transfer Event' flags e:C
<task>-179 [000] d.h.. 4.463171: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-179 [000] d.h.. 4.463174: xhci_inc_deq: CTRL ffffff80236b5200: enq 0x00000000e360a150(0x00000000e360a000) deq 0x00000000e360a150(0x00000000e360a000) segs 2 stream 0 bounce 0 cycle 1
<task>-179 [000] d.h.. 4.463176: xhci_urb_giveback: 1-1.2.2 ep0out-control: urb ffffff8025d5f500 pipe 2147485056 slot 4 length 10/255 sgs 0/0 stream 0 flags 00110200
<task>-179 [000] d.h.. 4.463180: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757090(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.464348: xhci_ring_alloc: BULK ffffff8024194f00: enq 0x00000000e360f000(0x00000000e360f000) deq 0x00000000e360f000(0x00000000e360f000) segs 2 stream 0 bounce 512 cycle 1
<task>-72 [001] ..... 4.464359: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 125 us max ESIT payload 0 CErr 3 Type Bulk IN burst 0 maxp 512 deq 00000000e360f001 avg trb len 0
<task>-72 [001] ..... 4.464373: xhci_ring_alloc: BULK ffffff8022dfe580: enq 0x00000000e3618000(0x00000000e3618000) deq 0x00000000e3618000(0x00000000e3618000) segs 2 stream 0 bounce 512 cycle 1
<task>-72 [001] ..... 4.464375: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 125 us max ESIT payload 0 CErr 3 Type Bulk OUT burst 0 maxp 512 deq 00000000e3618001 avg trb len 0
<task>-72 [001] ..... 4.464429: xhci_ring_alloc: BULK ffffff8024196100: enq 0x00000000e4197000(0x00000000e4197000) deq 0x00000000e4197000(0x00000000e4197000) segs 2 stream 0 bounce 512 cycle 1
<task>-72 [001] ..... 4.464431: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 125 us max ESIT payload 0 CErr 3 Type Bulk IN burst 0 maxp 512 deq 00000000e4197001 avg trb len 0
<task>-72 [001] ..... 4.464457: xhci_ring_alloc: BULK ffffff8024196400: enq 0x00000000e4199000(0x00000000e4199000) deq 0x00000000e4199000(0x00000000e4199000) segs 2 stream 0 bounce 512 cycle 1
<task>-72 [001] ..... 4.464459: xhci_add_endpoint: State disabled mult 1 max P. Streams 0 interval 125 us max ESIT payload 0 CErr 3 Type Bulk OUT burst 0 maxp 512 deq 00000000e4199001 avg trb len 0
<task>-72 [001] d.... 4.464475: xhci_configure_endpoint_ctrl_ctx: Add: slot 1in 2out 3in 4out
<task>-72 [001] d.... 4.464477: xhci_configure_endpoint: RS 00022 high-speed Ctx Entries 8 MEL 0 us Port# 1/0 [TT Slot 0 Port# 0 TTT 0 Intr 0] Addr 0 State enabled/disabled
<task>-72 [001] d.... 4.464488: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e3604000 slot 4 flags d:C
<task>-72 [001] d.... 4.464492: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e4759270(0x00000000e4759000) deq 0x00000000e4759260(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.464495: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-179 [000] d.h.. 4.464610: xhci_handle_event: EVENT: TRB 00000000e4759260 status 'Success' len 0 slot 4 ep 0 type 'Command Completion Event' flags e:C
<task>-179 [000] d.h.. 4.464615: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e3604000 slot 4 flags d:C
<task>-179 [000] d.h.. 4.464638: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e4759270(0x00000000e4759000) deq 0x00000000e4759270(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-179 [000] d.h.. 4.464640: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47570a0(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.464661: xhci_dbg_context_change: Successful Endpoint Configure command
<task>-72 [001] d.... 4.464695: xhci_queue_trb: CMD: Stop Ring Command: slot 4 sp 0 ep 3 flags C
<task>-72 [001] d.... 4.464698: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e4759280(0x00000000e4759000) deq 0x00000000e4759270(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.464700: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-179 [000] d.h.. 4.464711: xhci_handle_event: EVENT: TRB 00000000e360f000 status 'Stopped - Length Invalid' len 0 slot 4 ep 3 type 'Transfer Event' flags e:C
<task>-179 [000] d.h.. 4.464717: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47570b0(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-179 [000] d.h.. 4.464718: xhci_handle_event: EVENT: TRB 00000000e4759270 status 'Success' len 0 slot 4 ep 0 type 'Command Completion Event' flags e:C
<task>-179 [000] d.h.. 4.464721: xhci_handle_command: CMD: Stop Ring Command: slot 4 sp 0 ep 3 flags C
<task>-179 [000] d.h.. 4.464729: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e4759280(0x00000000e4759000) deq 0x00000000e4759280(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-179 [000] d.h.. 4.464730: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47570c0(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.465016: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e4fc3000 slot 4 flags d:C
<task>-72 [001] d.... 4.465020: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e4759290(0x00000000e4759000) deq 0x00000000e4759280(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.465021: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 4.465144: xhci_handle_event: EVENT: TRB 00000000e4759280 status 'Success' len 0 slot 4 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 4.465147: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e4fc3000 slot 4 flags d:C
<idle>-0 [000] d.h.. 4.465157: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e4759290(0x00000000e4759000) deq 0x00000000e4759290(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.465158: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47570d0(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.465188: xhci_queue_trb: CMD: Stop Ring Command: slot 4 sp 0 ep 4 flags C
<task>-72 [001] d.... 4.465191: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e47592a0(0x00000000e4759000) deq 0x00000000e4759290(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.465192: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<task>-31 [000] d.h.. 4.465203: xhci_handle_event: EVENT: TRB 00000000e3618000 status 'Stopped - Length Invalid' len 0 slot 4 ep 4 type 'Transfer Event' flags e:C
<task>-31 [000] d.h.. 4.465208: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47570e0(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-31 [000] d.h.. 4.465209: xhci_handle_event: EVENT: TRB 00000000e4759290 status 'Success' len 0 slot 4 ep 0 type 'Command Completion Event' flags e:C
<task>-31 [000] d.h.. 4.465212: xhci_handle_command: CMD: Stop Ring Command: slot 4 sp 0 ep 4 flags C
<task>-31 [000] d.h.. 4.465220: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e47592a0(0x00000000e4759000) deq 0x00000000e47592a0(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-31 [000] d.h.. 4.465222: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47570f0(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.465235: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e4fc3000 slot 4 flags d:C
<task>-72 [001] d.... 4.465238: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e47592b0(0x00000000e4759000) deq 0x00000000e47592a0(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.465239: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 4.465353: xhci_handle_event: EVENT: TRB 00000000e47592a0 status 'Success' len 0 slot 4 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 4.465356: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e4fc3000 slot 4 flags d:C
<idle>-0 [000] d.h.. 4.465367: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e47592b0(0x00000000e4759000) deq 0x00000000e47592b0(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.465368: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757100(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.465407: xhci_queue_trb: CMD: Stop Ring Command: slot 4 sp 0 ep 7 flags C
<task>-72 [001] d.... 4.465409: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e47592c0(0x00000000e4759000) deq 0x00000000e47592b0(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.465411: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 4.465428: xhci_handle_event: EVENT: TRB 00000000e4197000 status 'Stopped - Length Invalid' len 0 slot 4 ep 7 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.465433: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757110(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.465434: xhci_handle_event: EVENT: TRB 00000000e47592b0 status 'Success' len 0 slot 4 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 4.465436: xhci_handle_command: CMD: Stop Ring Command: slot 4 sp 0 ep 7 flags C
<idle>-0 [000] d.h.. 4.465446: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e47592c0(0x00000000e4759000) deq 0x00000000e47592c0(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.465447: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757120(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.465464: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e4fc3000 slot 4 flags d:C
<task>-72 [001] d.... 4.465467: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e47592d0(0x00000000e4759000) deq 0x00000000e47592c0(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.465468: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 4.465578: xhci_handle_event: EVENT: TRB 00000000e47592c0 status 'Success' len 0 slot 4 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 4.465581: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e4fc3000 slot 4 flags d:C
<idle>-0 [000] d.h.. 4.465592: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e47592d0(0x00000000e4759000) deq 0x00000000e47592d0(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.465593: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757130(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.465613: xhci_queue_trb: CMD: Stop Ring Command: slot 4 sp 0 ep 8 flags C
<task>-72 [001] d.... 4.465616: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e47592e0(0x00000000e4759000) deq 0x00000000e47592d0(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.465617: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 4.465635: xhci_handle_event: EVENT: TRB 00000000e4199000 status 'Stopped - Length Invalid' len 0 slot 4 ep 8 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.465638: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757140(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.465640: xhci_handle_event: EVENT: TRB 00000000e47592d0 status 'Success' len 0 slot 4 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 4.465642: xhci_handle_command: CMD: Stop Ring Command: slot 4 sp 0 ep 8 flags C
<idle>-0 [000] d.h.. 4.465651: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e47592e0(0x00000000e4759000) deq 0x00000000e47592e0(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.465652: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757150(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.465688: xhci_queue_trb: CMD: Configure Endpoint Command: ctx 00000000e4fc3000 slot 4 flags d:C
<task>-72 [001] d.... 4.465691: xhci_inc_enq: CMD ffffff8022b53900: enq 0x00000000e47592f0(0x00000000e4759000) deq 0x00000000e47592e0(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.465692: xhci_ring_host_doorbell: Ring doorbell for Command Ring 0
<idle>-0 [000] d.h.. 4.465845: xhci_handle_event: EVENT: TRB 00000000e47592e0 status 'Success' len 0 slot 4 ep 0 type 'Command Completion Event' flags e:C
<idle>-0 [000] d.h.. 4.465848: xhci_handle_command: CMD: Configure Endpoint Command: ctx 00000000e4fc3000 slot 4 flags d:C
<idle>-0 [000] d.h.. 4.465858: xhci_inc_deq: CMD ffffff8022b53900: enq 0x00000000e47592f0(0x00000000e4759000) deq 0x00000000e47592f0(0x00000000e4759000) segs 1 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.465862: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757160(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.465899: xhci_urb_enqueue: 1-1.2.2 ep0out-control: urb ffffff8025d5f500 pipe 2147484928 slot 4 length 0/0 sgs 0/0 stream 0 flags 00000000
<task>-72 [001] d.... 4.465908: xhci_queue_trb: CTRL: bRequestType 00 bRequest 09 wValue 0001 wIndex 0000 wLength 0 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.465910: xhci_inc_enq: CTRL ffffff80236b5200: enq 0x00000000e360a160(0x00000000e360a000) deq 0x00000000e360a150(0x00000000e360a000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.465912: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.465914: xhci_inc_enq: CTRL ffffff80236b5200: enq 0x00000000e360a170(0x00000000e360a000) deq 0x00000000e360a150(0x00000000e360a000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.465917: xhci_ring_ep_doorbell: Ring doorbell for Slot 4 ep0in
<idle>-0 [000] d.h.. 4.465944: xhci_handle_event: EVENT: TRB 00000000e360a160 status 'Success' len 0 slot 4 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.465950: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.465953: xhci_inc_deq: CTRL ffffff80236b5200: enq 0x00000000e360a170(0x00000000e360a000) deq 0x00000000e360a170(0x00000000e360a000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.465958: xhci_urb_giveback: 1-1.2.2 ep0out-control: urb ffffff8025d5f500 pipe 2147484928 slot 4 length 0/0 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.465967: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757170(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.466194: xhci_urb_enqueue: 1-1.2.2 ep0out-control: urb ffffff8025d5f300 pipe 2147485056 slot 4 length 0/255 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.466200: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0302 wIndex 0409 wLength 255 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.466203: xhci_inc_enq: CTRL ffffff80236b5200: enq 0x00000000e360a180(0x00000000e360a000) deq 0x00000000e360a170(0x00000000e360a000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.466205: xhci_queue_trb: CTRL: Buffer 00000000e5d5f400 length 255 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.466207: xhci_inc_enq: CTRL ffffff80236b5200: enq 0x00000000e360a190(0x00000000e360a000) deq 0x00000000e360a170(0x00000000e360a000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.466208: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.466210: xhci_inc_enq: CTRL ffffff80236b5200: enq 0x00000000e360a1a0(0x00000000e360a000) deq 0x00000000e360a170(0x00000000e360a000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.466212: xhci_ring_ep_doorbell: Ring doorbell for Slot 4 ep0in
<idle>-0 [000] d.h.. 4.466363: xhci_handle_event: EVENT: TRB 00000000e360a180 status 'Short Packet' len 227 slot 4 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.466370: xhci_handle_transfer: CTRL: Buffer 00000000e5d5f400 length 255 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<idle>-0 [000] d.h.. 4.466373: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757180(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.466375: xhci_handle_event: EVENT: TRB 00000000e360a190 status 'Success' len 0 slot 4 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.466378: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.466381: xhci_inc_deq: CTRL ffffff80236b5200: enq 0x00000000e360a1a0(0x00000000e360a000) deq 0x00000000e360a1a0(0x00000000e360a000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.466384: xhci_urb_giveback: 1-1.2.2 ep0out-control: urb ffffff8025d5f300 pipe 2147485056 slot 4 length 28/255 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.466389: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757190(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] ..... 4.466765: xhci_urb_enqueue: 1-1.2.2 ep0out-control: urb ffffff8025d5f000 pipe 2147485056 slot 4 length 0/255 sgs 0/0 stream 0 flags 00110200
<task>-72 [001] d.... 4.466774: xhci_queue_trb: CTRL: bRequestType 80 bRequest 06 wValue 0302 wIndex 0409 wLength 255 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-72 [001] d.... 4.466777: xhci_inc_enq: CTRL ffffff80236b5200: enq 0x00000000e360a1b0(0x00000000e360a000) deq 0x00000000e360a1a0(0x00000000e360a000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.466779: xhci_queue_trb: CTRL: Buffer 00000000e5d5f100 length 255 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-72 [001] d.... 4.466781: xhci_inc_enq: CTRL ffffff80236b5200: enq 0x00000000e360a1c0(0x00000000e360a000) deq 0x00000000e360a1a0(0x00000000e360a000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.466782: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-72 [001] d.... 4.466784: xhci_inc_enq: CTRL ffffff80236b5200: enq 0x00000000e360a1d0(0x00000000e360a000) deq 0x00000000e360a1a0(0x00000000e360a000) segs 2 stream 0 bounce 0 cycle 1
<task>-72 [001] d.... 4.466786: xhci_ring_ep_doorbell: Ring doorbell for Slot 4 ep0in
<idle>-0 [000] d.h.. 4.466840: xhci_handle_event: EVENT: TRB 00000000e360a1b0 status 'Short Packet' len 227 slot 4 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.466846: xhci_handle_transfer: CTRL: Buffer 00000000e5d5f100 length 255 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<idle>-0 [000] d.h.. 4.466850: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47571a0(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.466852: xhci_handle_event: EVENT: TRB 00000000e360a1c0 status 'Success' len 0 slot 4 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.466856: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<idle>-0 [000] d.h.. 4.466859: xhci_inc_deq: CTRL ffffff80236b5200: enq 0x00000000e360a1d0(0x00000000e360a000) deq 0x00000000e360a1d0(0x00000000e360a000) segs 2 stream 0 bounce 0 cycle 1
<idle>-0 [000] d.h.. 4.466862: xhci_urb_giveback: 1-1.2.2 ep0out-control: urb ffffff8025d5f000 pipe 2147485056 slot 4 length 28/255 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.466867: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47571b0(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] ..... 4.628064: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-209 [000] d.... 4.628084: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-209 [000] d.... 4.628093: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6b30(0x00000000e36c6000) deq 0x00000000e36c6b20(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.628096: xhci_queue_trb: CTRL: Buffer 0000000000000008 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-209 [000] d.... 4.628098: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6b40(0x00000000e36c6000) deq 0x00000000e36c6b20(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.628099: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-209 [000] d.... 4.628101: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6b50(0x00000000e36c6000) deq 0x00000000e36c6b20(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.628104: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-183 [000] d.h.. 4.628140: xhci_handle_event: EVENT: TRB 00000000e36c6b40 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-183 [000] d.h.. 4.628148: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-183 [000] d.h.. 4.628154: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6b50(0x00000000e36c6000) deq 0x00000000e36c6b50(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-183 [000] d.h.. 4.628159: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-183 [000] d.h.. 4.628169: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47571c0(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] ..... 4.645909: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-209 [000] d.... 4.645929: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-209 [000] d.... 4.645934: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6b60(0x00000000e36c6000) deq 0x00000000e36c6b50(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.645937: xhci_queue_trb: CTRL: Buffer 00000000e78c9400 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-209 [000] d.... 4.645939: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6b70(0x00000000e36c6000) deq 0x00000000e36c6b50(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.645940: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-209 [000] d.... 4.645942: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6b80(0x00000000e36c6000) deq 0x00000000e36c6b50(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.645945: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] d.h.. 4.645978: xhci_handle_event: EVENT: TRB 00000000e36c6b70 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.645986: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-102 [000] d.h.. 4.645992: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6b80(0x00000000e36c6000) deq 0x00000000e36c6b80(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-102 [000] d.h.. 4.645998: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-102 [000] d.h.. 4.646009: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47571d0(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] ..... 4.646053: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-209 [000] d.... 4.646056: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0108 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-209 [000] d.... 4.646059: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6b90(0x00000000e36c6000) deq 0x00000000e36c6b80(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.646060: xhci_queue_trb: CTRL: Buffer 000000008a3e52be length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-209 [000] d.... 4.646063: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6ba0(0x00000000e36c6000) deq 0x00000000e36c6b80(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.646064: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-209 [000] d.... 4.646066: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6bb0(0x00000000e36c6000) deq 0x00000000e36c6b80(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.646067: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] d.h.. 4.646084: xhci_handle_event: EVENT: TRB 00000000e36c6ba0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.646087: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-102 [000] d.h.. 4.646091: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6bb0(0x00000000e36c6000) deq 0x00000000e36c6bb0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-102 [000] d.h.. 4.646093: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-102 [000] d.h.. 4.646096: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47571e0(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] ..... 4.646121: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-209 [000] d.... 4.646124: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0104 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-209 [000] d.... 4.646126: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6bc0(0x00000000e36c6000) deq 0x00000000e36c6bb0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.646128: xhci_queue_trb: CTRL: Buffer 00000000000077fe length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-209 [000] d.... 4.646130: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6bd0(0x00000000e36c6000) deq 0x00000000e36c6bb0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.646131: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-209 [000] d.... 4.646133: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6be0(0x00000000e36c6000) deq 0x00000000e36c6bb0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.646134: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] d.h.. 4.646152: xhci_handle_event: EVENT: TRB 00000000e36c6bd0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.646156: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-102 [000] d.h.. 4.646159: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6be0(0x00000000e36c6000) deq 0x00000000e36c6be0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-102 [000] d.h.. 4.646161: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-102 [000] d.h.. 4.646164: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47571f0(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] ..... 4.646191: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-209 [000] d.... 4.646195: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-209 [000] d.... 4.646197: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6bf0(0x00000000e36c6000) deq 0x00000000e36c6be0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.646198: xhci_queue_trb: CTRL: Buffer 00000000e78c9400 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-209 [000] d.... 4.646200: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6c00(0x00000000e36c6000) deq 0x00000000e36c6be0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.646201: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-209 [000] d.... 4.646203: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6c10(0x00000000e36c6000) deq 0x00000000e36c6be0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.646205: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] d.h.. 4.646221: xhci_handle_event: EVENT: TRB 00000000e36c6c00 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.646224: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-102 [000] d.h.. 4.646227: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6c10(0x00000000e36c6000) deq 0x00000000e36c6c10(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-102 [000] d.h.. 4.646229: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-102 [000] d.h.. 4.646232: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757200(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] ..... 4.646260: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-209 [000] d.... 4.646264: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-209 [000] d.... 4.646266: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6c20(0x00000000e36c6000) deq 0x00000000e36c6c10(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.646267: xhci_queue_trb: CTRL: Buffer 0000000000001000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-209 [000] d.... 4.646269: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6c30(0x00000000e36c6000) deq 0x00000000e36c6c10(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.646271: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-209 [000] d.... 4.646273: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6c40(0x00000000e36c6000) deq 0x00000000e36c6c10(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.646274: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] d.h.. 4.646292: xhci_handle_event: EVENT: TRB 00000000e36c6c30 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.646296: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-102 [000] d.h.. 4.646303: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6c40(0x00000000e36c6000) deq 0x00000000e36c6c40(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-102 [000] d.h.. 4.646305: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-102 [000] d.h.. 4.646308: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757210(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] ..... 4.646333: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-209 [000] d.... 4.646337: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-209 [000] d.... 4.646339: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6c50(0x00000000e36c6000) deq 0x00000000e36c6c40(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.646340: xhci_queue_trb: CTRL: Buffer 00000000e78c9400 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-209 [000] d.... 4.646342: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6c60(0x00000000e36c6000) deq 0x00000000e36c6c40(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.646344: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-209 [000] d.... 4.646346: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6c70(0x00000000e36c6000) deq 0x00000000e36c6c40(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.646347: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] d.h.. 4.646363: xhci_handle_event: EVENT: TRB 00000000e36c6c60 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.646367: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-102 [000] d.h.. 4.646369: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6c70(0x00000000e36c6000) deq 0x00000000e36c6c70(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-102 [000] d.h.. 4.646371: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-102 [000] d.h.. 4.646374: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757220(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] ..... 4.646413: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-209 [000] d.... 4.646417: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0038 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-209 [000] d.... 4.646419: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6c80(0x00000000e36c6000) deq 0x00000000e36c6c70(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.646421: xhci_queue_trb: CTRL: Buffer 0000000000000025 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-209 [000] d.... 4.646423: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6c90(0x00000000e36c6000) deq 0x00000000e36c6c70(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.646424: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-209 [000] d.... 4.646426: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6ca0(0x00000000e36c6000) deq 0x00000000e36c6c70(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.646428: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] d.h.. 4.646444: xhci_handle_event: EVENT: TRB 00000000e36c6c90 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.646447: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-102 [000] d.h.. 4.646450: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6ca0(0x00000000e36c6000) deq 0x00000000e36c6ca0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-102 [000] d.h.. 4.646453: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-102 [000] d.h.. 4.646455: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757230(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] ..... 4.646485: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-209 [000] d.... 4.646488: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0038 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-209 [000] d.... 4.646490: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6cb0(0x00000000e36c6000) deq 0x00000000e36c6ca0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.646492: xhci_queue_trb: CTRL: Buffer 00000000e78c9400 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-209 [000] d.... 4.646494: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6cc0(0x00000000e36c6000) deq 0x00000000e36c6ca0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.646495: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-209 [000] d.... 4.646497: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6cd0(0x00000000e36c6000) deq 0x00000000e36c6ca0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.646499: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] d.h.. 4.646517: xhci_handle_event: EVENT: TRB 00000000e36c6cc0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.646521: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-102 [000] d.h.. 4.646524: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6cd0(0x00000000e36c6000) deq 0x00000000e36c6cd0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-102 [000] d.h.. 4.646526: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-102 [000] d.h.. 4.646528: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757240(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] ..... 4.646554: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-209 [000] d.... 4.646559: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 006c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-209 [000] d.... 4.646561: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6ce0(0x00000000e36c6000) deq 0x00000000e36c6cd0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.646562: xhci_queue_trb: CTRL: Buffer 0000000000002000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-209 [000] d.... 4.646564: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6cf0(0x00000000e36c6000) deq 0x00000000e36c6cd0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.646565: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-209 [000] d.... 4.646567: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6d00(0x00000000e36c6000) deq 0x00000000e36c6cd0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.646569: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] d.h.. 4.646590: xhci_handle_event: EVENT: TRB 00000000e36c6cf0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.646594: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-102 [000] d.h.. 4.646597: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6d00(0x00000000e36c6000) deq 0x00000000e36c6d00(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-102 [000] d.h.. 4.646599: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-102 [000] d.h.. 4.646602: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757250(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] ..... 4.646629: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-209 [000] d.... 4.646633: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 006c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-209 [000] d.... 4.646635: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6d10(0x00000000e36c6000) deq 0x00000000e36c6d00(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.646636: xhci_queue_trb: CTRL: Buffer 00000000e78c9400 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-209 [000] d.... 4.646638: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6d20(0x00000000e36c6000) deq 0x00000000e36c6d00(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.646639: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-209 [000] d.... 4.646641: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6d30(0x00000000e36c6000) deq 0x00000000e36c6d00(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.646643: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] d.h.. 4.646661: xhci_handle_event: EVENT: TRB 00000000e36c6d20 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.646664: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-102 [000] d.h.. 4.646668: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6d30(0x00000000e36c6000) deq 0x00000000e36c6d30(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-102 [000] d.h.. 4.646670: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-102 [000] d.h.. 4.646672: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757260(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] ..... 4.646700: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-209 [000] d.... 4.646703: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-209 [000] d.... 4.646706: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6d40(0x00000000e36c6000) deq 0x00000000e36c6d30(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.646709: xhci_queue_trb: CTRL: Buffer 00000000e78c9400 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-209 [000] d.... 4.646711: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6d50(0x00000000e36c6000) deq 0x00000000e36c6d30(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.646712: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-209 [000] d.... 4.646714: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6d60(0x00000000e36c6000) deq 0x00000000e36c6d30(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.646716: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] d.h.. 4.646734: xhci_handle_event: EVENT: TRB 00000000e36c6d50 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.646738: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-102 [000] d.h.. 4.646740: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6d60(0x00000000e36c6000) deq 0x00000000e36c6d60(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-102 [000] d.h.. 4.646742: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-102 [000] d.h.. 4.646745: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757270(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] ..... 4.646771: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-209 [000] d.... 4.646776: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-209 [000] d.... 4.646779: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6d70(0x00000000e36c6000) deq 0x00000000e36c6d60(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.646780: xhci_queue_trb: CTRL: Buffer 0000000000001022 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-209 [000] d.... 4.646782: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6d80(0x00000000e36c6000) deq 0x00000000e36c6d60(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.646784: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-209 [000] d.... 4.646786: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6d90(0x00000000e36c6000) deq 0x00000000e36c6d60(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.646787: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] d.h.. 4.646803: xhci_handle_event: EVENT: TRB 00000000e36c6d80 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.646807: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-102 [000] d.h.. 4.646810: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6d90(0x00000000e36c6000) deq 0x00000000e36c6d90(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-102 [000] d.h.. 4.646812: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-102 [000] d.h.. 4.646815: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757280(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] ..... 4.646839: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-209 [000] d.... 4.646843: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0014 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-209 [000] d.... 4.646845: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6da0(0x00000000e36c6000) deq 0x00000000e36c6d90(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.646846: xhci_queue_trb: CTRL: Buffer 00000000e78c9400 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-209 [000] d.... 4.646849: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6db0(0x00000000e36c6000) deq 0x00000000e36c6d90(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.646850: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-209 [000] d.... 4.646852: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6dc0(0x00000000e36c6000) deq 0x00000000e36c6d90(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.646853: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] d.h.. 4.646871: xhci_handle_event: EVENT: TRB 00000000e36c6db0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.646875: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-102 [000] d.h.. 4.646878: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6dc0(0x00000000e36c6000) deq 0x00000000e36c6dc0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-102 [000] d.h.. 4.646880: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-102 [000] d.h.. 4.646883: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757290(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] ..... 4.646910: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-209 [000] d.... 4.646913: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0008 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-209 [000] d.... 4.646915: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6dd0(0x00000000e36c6000) deq 0x00000000e36c6dc0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.646917: xhci_queue_trb: CTRL: Buffer 00000000ffffffff length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-209 [000] d.... 4.646919: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6de0(0x00000000e36c6000) deq 0x00000000e36c6dc0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.646920: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-209 [000] d.... 4.646922: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6df0(0x00000000e36c6000) deq 0x00000000e36c6dc0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.646923: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] d.h.. 4.646940: xhci_handle_event: EVENT: TRB 00000000e36c6de0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.646944: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-102 [000] d.h.. 4.646947: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6df0(0x00000000e36c6000) deq 0x00000000e36c6df0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-102 [000] d.h.. 4.646949: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-102 [000] d.h.. 4.646951: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47572a0(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] ..... 4.646976: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-209 [000] d.... 4.646980: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0000 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-209 [000] d.... 4.646982: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6e00(0x00000000e36c6000) deq 0x00000000e36c6df0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.646983: xhci_queue_trb: CTRL: Buffer 00000000e78c9400 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-209 [000] d.... 4.646986: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6e10(0x00000000e36c6000) deq 0x00000000e36c6df0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.646987: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-209 [000] d.... 4.646989: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6e20(0x00000000e36c6000) deq 0x00000000e36c6df0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.646990: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] d.h.. 4.647008: xhci_handle_event: EVENT: TRB 00000000e36c6e10 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.647012: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-102 [000] d.h.. 4.647015: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6e20(0x00000000e36c6000) deq 0x00000000e36c6e20(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-102 [000] d.h.. 4.647016: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-102 [000] d.h.. 4.647019: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47572b0(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] ..... 4.647048: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-209 [000] d.... 4.647051: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0024 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-209 [000] d.... 4.647053: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6e30(0x00000000e36c6000) deq 0x00000000e36c6e20(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.647055: xhci_queue_trb: CTRL: Buffer 00000000e78c9400 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-209 [000] d.... 4.647057: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6e40(0x00000000e36c6000) deq 0x00000000e36c6e20(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.647058: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-209 [000] d.... 4.647060: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6e50(0x00000000e36c6000) deq 0x00000000e36c6e20(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.647062: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] d.h.. 4.647079: xhci_handle_event: EVENT: TRB 00000000e36c6e40 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.647083: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-102 [000] d.h.. 4.647086: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6e50(0x00000000e36c6000) deq 0x00000000e36c6e50(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-102 [000] d.h.. 4.647089: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-102 [000] d.h.. 4.647092: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47572c0(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] ..... 4.647130: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-209 [000] d.... 4.647133: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0024 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-209 [000] d.... 4.647136: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6e60(0x00000000e36c6000) deq 0x00000000e36c6e50(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.647137: xhci_queue_trb: CTRL: Buffer 0000000001110007 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-209 [000] d.... 4.647139: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6e70(0x00000000e36c6000) deq 0x00000000e36c6e50(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.647141: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-209 [000] d.... 4.647143: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6e80(0x00000000e36c6000) deq 0x00000000e36c6e50(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.647144: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] d.h.. 4.647160: xhci_handle_event: EVENT: TRB 00000000e36c6e70 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.647163: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-102 [000] d.h.. 4.647166: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6e80(0x00000000e36c6000) deq 0x00000000e36c6e80(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-102 [000] d.h.. 4.647168: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-102 [000] d.h.. 4.647171: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47572d0(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] ..... 4.647194: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-209 [000] d.... 4.647200: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 011c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-209 [000] d.... 4.647202: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6e90(0x00000000e36c6000) deq 0x00000000e36c6e80(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.647203: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-209 [000] d.... 4.647205: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6ea0(0x00000000e36c6000) deq 0x00000000e36c6e80(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.647207: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-209 [000] d.... 4.647209: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6eb0(0x00000000e36c6000) deq 0x00000000e36c6e80(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.647210: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] d.h.. 4.647228: xhci_handle_event: EVENT: TRB 00000000e36c6ea0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.647231: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-102 [000] d.h.. 4.647235: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6eb0(0x00000000e36c6000) deq 0x00000000e36c6eb0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-102 [000] d.h.. 4.647237: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-102 [000] d.h.. 4.647240: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47572e0(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] ..... 4.647262: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-209 [000] d.... 4.647266: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 002c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-209 [000] d.... 4.647268: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6ec0(0x00000000e36c6000) deq 0x00000000e36c6eb0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.647269: xhci_queue_trb: CTRL: Buffer 0000000000f830a1 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-209 [000] d.... 4.647271: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6ed0(0x00000000e36c6000) deq 0x00000000e36c6eb0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.647273: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-209 [000] d.... 4.647275: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6ee0(0x00000000e36c6000) deq 0x00000000e36c6eb0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.647276: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] d.h.. 4.647294: xhci_handle_event: EVENT: TRB 00000000e36c6ed0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.647298: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-102 [000] d.h.. 4.647301: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6ee0(0x00000000e36c6000) deq 0x00000000e36c6ee0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-102 [000] d.h.. 4.647303: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-102 [000] d.h.. 4.647306: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47572f0(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] ..... 4.647332: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-209 [000] d.... 4.647335: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-209 [000] d.... 4.647337: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6ef0(0x00000000e36c6000) deq 0x00000000e36c6ee0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.647339: xhci_queue_trb: CTRL: Buffer 00000000e78c9400 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-209 [000] d.... 4.647341: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6f00(0x00000000e36c6000) deq 0x00000000e36c6ee0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.647342: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-209 [000] d.... 4.647344: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6f10(0x00000000e36c6000) deq 0x00000000e36c6ee0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.647346: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] d.h.. 4.647362: xhci_handle_event: EVENT: TRB 00000000e36c6f00 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.647366: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-102 [000] d.h.. 4.647369: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6f10(0x00000000e36c6000) deq 0x00000000e36c6f10(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-102 [000] d.h.. 4.647371: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-102 [000] d.h.. 4.647374: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757300(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] ..... 4.647400: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-209 [000] d.... 4.647405: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0120 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-209 [000] d.... 4.647407: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6f20(0x00000000e36c6000) deq 0x00000000e36c6f10(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.647409: xhci_queue_trb: CTRL: Buffer 0000000000008100 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-209 [000] d.... 4.647411: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6f30(0x00000000e36c6000) deq 0x00000000e36c6f10(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.647412: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-209 [000] d.... 4.647414: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6f40(0x00000000e36c6000) deq 0x00000000e36c6f10(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.647415: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] d.h.. 4.647434: xhci_handle_event: EVENT: TRB 00000000e36c6f30 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.647437: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-102 [000] d.h.. 4.647440: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6f40(0x00000000e36c6000) deq 0x00000000e36c6f40(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-102 [000] d.h.. 4.647442: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-102 [000] d.h.. 4.647445: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757310(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] ..... 4.647470: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-209 [000] d.... 4.647474: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0130 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-209 [000] d.... 4.647476: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6f50(0x00000000e36c6000) deq 0x00000000e36c6f40(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.647477: xhci_queue_trb: CTRL: Buffer 00000000e78c9400 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:C
<task>-209 [000] d.... 4.647480: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6f60(0x00000000e36c6000) deq 0x00000000e36c6f40(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.647482: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-209 [000] d.... 4.647484: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6f70(0x00000000e36c6000) deq 0x00000000e36c6f40(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.647485: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] d.h.. 4.647503: xhci_handle_event: EVENT: TRB 00000000e36c6f60 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.647507: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-102 [000] d.h.. 4.647510: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6f70(0x00000000e36c6000) deq 0x00000000e36c6f70(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-102 [000] d.h.. 4.647512: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-102 [000] d.h.. 4.647515: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757320(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] ..... 4.647539: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-209 [000] d.... 4.647544: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0130 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-209 [000] d.... 4.647546: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6f80(0x00000000e36c6000) deq 0x00000000e36c6f70(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.647548: xhci_queue_trb: CTRL: Buffer 0000000000010001 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-209 [000] d.... 4.647550: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6f90(0x00000000e36c6000) deq 0x00000000e36c6f70(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.647551: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-209 [000] d.... 4.647553: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6fa0(0x00000000e36c6000) deq 0x00000000e36c6f70(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.647555: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] d.h.. 4.647570: xhci_handle_event: EVENT: TRB 00000000e36c6f90 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.647574: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-102 [000] d.h.. 4.647577: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c6fa0(0x00000000e36c6000) deq 0x00000000e36c6fa0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-102 [000] d.h.. 4.647579: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-102 [000] d.h.. 4.647582: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757330(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] ..... 4.647608: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-209 [000] d.... 4.647611: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 010c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-209 [000] d.... 4.647613: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6fb0(0x00000000e36c6000) deq 0x00000000e36c6fa0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.647615: xhci_queue_trb: CTRL: Buffer 0000000040000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-209 [000] d.... 4.647617: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6fc0(0x00000000e36c6000) deq 0x00000000e36c6fa0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.647618: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-209 [000] d.... 4.647621: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6fd0(0x00000000e36c6000) deq 0x00000000e36c6fa0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.647622: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-209 [000] ..... 4.647627: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236c0900 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-209 [000] d.... 4.647629: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0110 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:c
<task>-209 [000] d.... 4.647637: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c6fe0(0x00000000e36c6000) deq 0x00000000e36c6fa0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.... 4.647639: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:C
<task>-209 [000] d.... 4.647642: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7000(0x00000000e36c7000) deq 0x00000000e36c6fa0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] d.... 4.647643: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-209 [000] d.... 4.647646: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7010(0x00000000e36c7000) deq 0x00000000e36c6fa0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] d.... 4.647647: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-209 [000] d.h.. 4.647652: xhci_handle_event: EVENT: TRB 00000000e36c6fc0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-209 [000] d.h.. 4.647655: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:C
<task>-209 [000] d.h.. 4.647658: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7010(0x00000000e36c7000) deq 0x00000000e36c6fd0(0x00000000e36c6000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] d.h.. 4.647660: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<task>-209 [000] d.h.. 4.647663: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757340(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.h.. 4.647664: xhci_handle_event: EVENT: TRB 00000000e36c7000 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-209 [000] d.h.. 4.647667: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-209 [000] d.h.. 4.647670: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7010(0x00000000e36c7000) deq 0x00000000e36c7010(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] d.h.. 4.647671: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236c0900 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<task>-209 [000] d.h.. 4.647672: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757350(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] ..... 4.647684: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236c0900 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-209 [000] d.... 4.647689: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-209 [000] d.... 4.647691: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7020(0x00000000e36c7000) deq 0x00000000e36c7010(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] d.... 4.647692: xhci_queue_trb: CTRL: Buffer 0000000000002000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-209 [000] d.... 4.647694: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7030(0x00000000e36c7000) deq 0x00000000e36c7010(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] d.... 4.647696: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-209 [000] d.... 4.647698: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7040(0x00000000e36c7000) deq 0x00000000e36c7010(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] d.... 4.647699: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-209 [000] ..... 4.647707: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-209 [000] d.... 4.647709: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0068 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-209 [000] d.... 4.647711: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7050(0x00000000e36c7000) deq 0x00000000e36c7010(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] d.... 4.647713: xhci_queue_trb: CTRL: Buffer 00000000e78c9480 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-209 [000] d.... 4.647718: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7060(0x00000000e36c7000) deq 0x00000000e36c7010(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] d.... 4.647719: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-209 [000] d.... 4.647721: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7070(0x00000000e36c7000) deq 0x00000000e36c7010(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] d.... 4.647723: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-209 [000] d.h.. 4.647727: xhci_handle_event: EVENT: TRB 00000000e36c7030 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-209 [000] d.h.. 4.647731: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-209 [000] d.h.. 4.647734: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7070(0x00000000e36c7000) deq 0x00000000e36c7040(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] d.h.. 4.647735: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236c0900 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<task>-209 [000] d.h.. 4.647738: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757360(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] d.h.. 4.647739: xhci_handle_event: EVENT: TRB 00000000e36c7060 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-209 [000] d.h.. 4.647742: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-209 [000] d.h.. 4.647745: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7070(0x00000000e36c7000) deq 0x00000000e36c7070(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] d.h.. 4.647747: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-209 [000] d.h.. 4.647750: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757370(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] .N... 4.653599: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-209 [000] dN... 4.653604: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0068 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-209 [000] dN... 4.653606: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7080(0x00000000e36c7000) deq 0x00000000e36c7070(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] dN... 4.653608: xhci_queue_trb: CTRL: Buffer 0000000000008000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-209 [000] dN... 4.653610: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7090(0x00000000e36c7000) deq 0x00000000e36c7070(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] dN... 4.653611: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-209 [000] dN... 4.653613: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c70a0(0x00000000e36c7000) deq 0x00000000e36c7070(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] dN... 4.653614: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] d.h.. 4.653637: xhci_handle_event: EVENT: TRB 00000000e36c7090 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.653640: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-102 [000] d.h.. 4.653644: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c70a0(0x00000000e36c7000) deq 0x00000000e36c70a0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-102 [000] d.h.. 4.653646: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-102 [000] d.h.. 4.653649: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757380(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] .N... 4.654000: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-209 [000] dN... 4.654009: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-209 [000] dN... 4.654011: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c70b0(0x00000000e36c7000) deq 0x00000000e36c70a0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] dN... 4.654013: xhci_queue_trb: CTRL: Buffer 0000000000002008 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-209 [000] dN... 4.654015: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c70c0(0x00000000e36c7000) deq 0x00000000e36c70a0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] dN... 4.654017: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-209 [000] dN... 4.654019: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c70d0(0x00000000e36c7000) deq 0x00000000e36c70a0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] dN... 4.654020: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] d.h.. 4.654043: xhci_handle_event: EVENT: TRB 00000000e36c70c0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.654047: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-102 [000] d.h.. 4.654051: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c70d0(0x00000000e36c7000) deq 0x00000000e36c70d0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-102 [000] d.h.. 4.654054: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-102 [000] d.h.. 4.654060: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757390(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] ..... 4.654210: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-209 [000] d.... 4.654215: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0010 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-209 [000] d.... 4.654217: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c70e0(0x00000000e36c7000) deq 0x00000000e36c70d0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] d.... 4.654219: xhci_queue_trb: CTRL: Buffer 0000000000000004 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-209 [000] d.... 4.654221: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c70f0(0x00000000e36c7000) deq 0x00000000e36c70d0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] d.... 4.654222: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-209 [000] d.... 4.654224: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7100(0x00000000e36c7000) deq 0x00000000e36c70d0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] d.... 4.654226: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.654249: xhci_handle_event: EVENT: TRB 00000000e36c70f0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.654253: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 4.654257: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7100(0x00000000e36c7000) deq 0x00000000e36c7100(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 4.654259: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.654264: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47573a0(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] ..... 4.654293: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-209 [000] d.... 4.654297: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-209 [000] d.... 4.654299: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7110(0x00000000e36c7000) deq 0x00000000e36c7100(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] d.... 4.654300: xhci_queue_trb: CTRL: Buffer 000000000000200c length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-209 [000] d.... 4.654303: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7120(0x00000000e36c7000) deq 0x00000000e36c7100(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] d.... 4.654304: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-209 [000] d.... 4.654306: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7130(0x00000000e36c7000) deq 0x00000000e36c7100(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] d.... 4.654307: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.654324: xhci_handle_event: EVENT: TRB 00000000e36c7120 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.654327: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 4.654331: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7130(0x00000000e36c7000) deq 0x00000000e36c7130(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 4.654333: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.654336: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47573b0(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] ..... 4.654376: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-209 [000] d.... 4.654380: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-209 [000] d.... 4.654382: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7140(0x00000000e36c7000) deq 0x00000000e36c7130(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] d.... 4.654384: xhci_queue_trb: CTRL: Buffer 00000000e78c9480 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-209 [000] d.... 4.654386: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7150(0x00000000e36c7000) deq 0x00000000e36c7130(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] d.... 4.654387: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-209 [000] d.... 4.654389: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7160(0x00000000e36c7000) deq 0x00000000e36c7130(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] d.... 4.654390: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.654409: xhci_handle_event: EVENT: TRB 00000000e36c7150 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.654413: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 4.654416: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7160(0x00000000e36c7000) deq 0x00000000e36c7160(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 4.654418: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.654421: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47573c0(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] ..... 4.654451: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-209 [000] d.... 4.654457: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-209 [000] d.... 4.654459: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7170(0x00000000e36c7000) deq 0x00000000e36c7160(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] d.... 4.654460: xhci_queue_trb: CTRL: Buffer 0000000000000801 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-209 [000] d.... 4.654462: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7180(0x00000000e36c7000) deq 0x00000000e36c7160(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] d.... 4.654464: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-209 [000] d.... 4.654469: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7190(0x00000000e36c7000) deq 0x00000000e36c7160(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] d.... 4.654470: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.654488: xhci_handle_event: EVENT: TRB 00000000e36c7180 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.654491: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 4.654494: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7190(0x00000000e36c7000) deq 0x00000000e36c7190(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 4.654496: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.654499: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47573d0(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] ..... 4.654525: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-209 [000] d.... 4.654529: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-209 [000] d.... 4.654531: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c71a0(0x00000000e36c7000) deq 0x00000000e36c7190(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] d.... 4.654532: xhci_queue_trb: CTRL: Buffer 00000000e78c9480 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-209 [000] d.... 4.654534: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c71b0(0x00000000e36c7000) deq 0x00000000e36c7190(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] d.... 4.654536: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-209 [000] d.... 4.654537: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c71c0(0x00000000e36c7000) deq 0x00000000e36c7190(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] d.... 4.654539: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.654555: xhci_handle_event: EVENT: TRB 00000000e36c71b0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.654559: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 4.654562: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c71c0(0x00000000e36c7000) deq 0x00000000e36c71c0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 4.654564: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.654567: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47573e0(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] ..... 4.654597: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-209 [000] d.... 4.654601: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-209 [000] d.... 4.654603: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c71d0(0x00000000e36c7000) deq 0x00000000e36c71c0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] d.... 4.654604: xhci_queue_trb: CTRL: Buffer 00000000e78c9480 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-209 [000] d.... 4.654606: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c71e0(0x00000000e36c7000) deq 0x00000000e36c71c0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] d.... 4.654607: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-209 [000] d.... 4.654610: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c71f0(0x00000000e36c7000) deq 0x00000000e36c71c0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] d.... 4.654611: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.654629: xhci_handle_event: EVENT: TRB 00000000e36c71e0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.654633: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 4.654636: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c71f0(0x00000000e36c7000) deq 0x00000000e36c71f0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 4.654638: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.654641: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47573f0(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] ..... 4.654671: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-209 [000] d.... 4.654675: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-209 [000] d.... 4.654677: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7200(0x00000000e36c7000) deq 0x00000000e36c71f0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] d.... 4.654678: xhci_queue_trb: CTRL: Buffer 00000000e78c9480 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-209 [000] d.... 4.654680: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7210(0x00000000e36c7000) deq 0x00000000e36c71f0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] d.... 4.654681: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-209 [000] d.... 4.654683: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7220(0x00000000e36c7000) deq 0x00000000e36c71f0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] d.... 4.654685: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.654701: xhci_handle_event: EVENT: TRB 00000000e36c7210 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.654704: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 4.654707: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7220(0x00000000e36c7000) deq 0x00000000e36c7220(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 4.654709: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.654712: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757400(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] ..... 4.654741: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-209 [000] d.... 4.654746: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-209 [000] d.... 4.654749: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7230(0x00000000e36c7000) deq 0x00000000e36c7220(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] d.... 4.654750: xhci_queue_trb: CTRL: Buffer 0000000000003000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-209 [000] d.... 4.654752: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7240(0x00000000e36c7000) deq 0x00000000e36c7220(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] d.... 4.654754: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-209 [000] d.... 4.654756: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7250(0x00000000e36c7000) deq 0x00000000e36c7220(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] d.... 4.654757: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.654776: xhci_handle_event: EVENT: TRB 00000000e36c7240 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.654779: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 4.654782: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7250(0x00000000e36c7000) deq 0x00000000e36c7250(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 4.654784: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.654787: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757410(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] ..... 4.654810: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-209 [000] d.... 4.654814: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-209 [000] d.... 4.654816: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7260(0x00000000e36c7000) deq 0x00000000e36c7250(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] d.... 4.654818: xhci_queue_trb: CTRL: Buffer 0000000000000803 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-209 [000] d.... 4.654820: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7270(0x00000000e36c7000) deq 0x00000000e36c7250(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] d.... 4.654821: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-209 [000] d.... 4.654823: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7280(0x00000000e36c7000) deq 0x00000000e36c7250(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] d.... 4.654824: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.654956: xhci_handle_event: EVENT: TRB 00000000e36c7270 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.654962: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 4.654965: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7280(0x00000000e36c7000) deq 0x00000000e36c7280(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 4.654968: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.654973: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757420(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] ..... 4.655013: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-209 [000] d.... 4.655017: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-209 [000] d.... 4.655024: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7290(0x00000000e36c7000) deq 0x00000000e36c7280(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] d.... 4.655025: xhci_queue_trb: CTRL: Buffer 00000000e78c9480 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-209 [000] d.... 4.655027: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c72a0(0x00000000e36c7000) deq 0x00000000e36c7280(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] d.... 4.655028: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-209 [000] d.... 4.655030: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c72b0(0x00000000e36c7000) deq 0x00000000e36c7280(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] d.... 4.655032: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.655052: xhci_handle_event: EVENT: TRB 00000000e36c72a0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.655056: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 4.655059: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c72b0(0x00000000e36c7000) deq 0x00000000e36c72b0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 4.655061: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<idle>-0 [000] d.h.. 4.655064: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757430(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] .N... 4.655251: xhci_urb_enqueue: 1-1.2.1 ep3in-intr: urb ffffff80236a0600 pipe 1073841280 slot 3 length 0/16 sgs 0/0 stream 0 flags 00010300
<task>-209 [000] dN... 4.655261: xhci_queue_trb: INTR: Buffer 00000000e36b5080 length 16 TD size 0 intr 0 type 'Normal' flags b:i:I:c:s:I:e:c
<task>-209 [000] dN... 4.655263: xhci_inc_enq: INTR ffffff802360e680: enq 0x00000000e36a9010(0x00000000e36a9000) deq 0x00000000e36a9000(0x00000000e36a9000) segs 2 stream 0 bounce 16 cycle 1
<task>-209 [000] dN... 4.655265: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep3in
<task>-209 [000] bN... 4.663322: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-209 [000] DN... 4.663326: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 010c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-209 [000] DN... 4.663329: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c72c0(0x00000000e36c7000) deq 0x00000000e36c72b0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] DN... 4.663330: xhci_queue_trb: CTRL: Buffer 0000000040000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-209 [000] DN... 4.663332: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c72d0(0x00000000e36c7000) deq 0x00000000e36c72b0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] DN... 4.663334: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-209 [000] DN... 4.663335: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c72e0(0x00000000e36c7000) deq 0x00000000e36c72b0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] DN... 4.663337: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-209 [000] bN... 4.663342: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80236c0900 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-209 [000] DN... 4.663345: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0110 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-209 [000] DN... 4.663351: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c72f0(0x00000000e36c7000) deq 0x00000000e36c72b0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] DN... 4.663352: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-209 [000] DN... 4.663354: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7300(0x00000000e36c7000) deq 0x00000000e36c72b0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] DN... 4.663355: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-209 [000] DN... 4.663357: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7310(0x00000000e36c7000) deq 0x00000000e36c72b0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] DN... 4.663359: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-209 [000] DNh.. 4.663366: xhci_handle_event: EVENT: TRB 00000000e36c72d0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-209 [000] DNh.. 4.663370: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-209 [000] DNh.. 4.663374: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7310(0x00000000e36c7000) deq 0x00000000e36c72e0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] DNh.. 4.663376: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236c0b00 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<task>-209 [000] DNh.. 4.663380: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757440(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] DNh.. 4.663381: xhci_handle_event: EVENT: TRB 00000000e36c7300 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-209 [000] DNh.. 4.663385: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-209 [000] DNh.. 4.663387: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7310(0x00000000e36c7000) deq 0x00000000e36c7310(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] DNh.. 4.663389: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80236c0900 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<task>-209 [000] DNh.. 4.663390: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757450(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] bN... 4.663408: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80278cb000 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-209 [000] DN... 4.663412: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-209 [000] DN... 4.663414: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7320(0x00000000e36c7000) deq 0x00000000e36c7310(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] DN... 4.663415: xhci_queue_trb: CTRL: Buffer 000000000000200c length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-209 [000] DN... 4.663417: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7330(0x00000000e36c7000) deq 0x00000000e36c7310(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] DN... 4.663418: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-209 [000] DN... 4.663420: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7340(0x00000000e36c7000) deq 0x00000000e36c7310(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] DN... 4.663422: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-209 [000] dNH1. 4.663438: xhci_handle_event: EVENT: TRB 00000000e36c7330 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-209 [000] dNH1. 4.663441: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-209 [000] dNH1. 4.663445: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7340(0x00000000e36c7000) deq 0x00000000e36c7340(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] dNH1. 4.663446: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80278cb000 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<task>-209 [000] dNH1. 4.663449: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757460(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] bN... 4.663588: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80278cb100 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-209 [000] DN... 4.663592: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 010c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-209 [000] DN... 4.663594: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7350(0x00000000e36c7000) deq 0x00000000e36c7340(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] DN... 4.663596: xhci_queue_trb: CTRL: Buffer 0000000040000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-209 [000] DN... 4.663598: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7360(0x00000000e36c7000) deq 0x00000000e36c7340(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] DN... 4.663599: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-209 [000] DN... 4.663601: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7370(0x00000000e36c7000) deq 0x00000000e36c7340(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] DN... 4.663602: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-209 [000] bN... 4.663607: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80278cb200 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-209 [000] DN... 4.663609: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0110 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-209 [000] DN... 4.663615: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7380(0x00000000e36c7000) deq 0x00000000e36c7340(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] DN... 4.663617: xhci_queue_trb: CTRL: Buffer 0000000080000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-209 [000] DN... 4.663619: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7390(0x00000000e36c7000) deq 0x00000000e36c7340(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] DN... 4.663620: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-209 [000] DN... 4.663622: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c73a0(0x00000000e36c7000) deq 0x00000000e36c7340(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] DN... 4.663623: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-209 [000] DNh.. 4.663629: xhci_handle_event: EVENT: TRB 00000000e36c7360 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-209 [000] DNh.. 4.663632: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-209 [000] DNh.. 4.663638: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c73a0(0x00000000e36c7000) deq 0x00000000e36c7370(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] DNh.. 4.663640: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80278cb100 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<task>-209 [000] DNh.. 4.663643: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757470(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] DNh.. 4.663644: xhci_handle_event: EVENT: TRB 00000000e36c7390 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-209 [000] DNh.. 4.663647: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-209 [000] DNh.. 4.663650: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c73a0(0x00000000e36c7000) deq 0x00000000e36c73a0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] DNh.. 4.663652: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80278cb200 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<task>-209 [000] DNh.. 4.663653: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757480(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [000] bN... 4.663660: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-209 [000] DN... 4.663663: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-209 [000] DN... 4.663665: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c73b0(0x00000000e36c7000) deq 0x00000000e36c73a0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] DN... 4.663667: xhci_queue_trb: CTRL: Buffer 000000000000200c length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-209 [000] DN... 4.663669: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c73c0(0x00000000e36c7000) deq 0x00000000e36c73a0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] DN... 4.663670: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-209 [000] DN... 4.663672: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c73d0(0x00000000e36c7000) deq 0x00000000e36c73a0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] DN... 4.663673: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-209 [000] dNh.. 4.663691: xhci_handle_event: EVENT: TRB 00000000e36c73c0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-209 [000] dNh.. 4.663695: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-209 [000] dNh.. 4.663698: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c73d0(0x00000000e36c7000) deq 0x00000000e36c73d0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [000] dNh.. 4.663700: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<task>-209 [000] dNh.. 4.663702: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757490(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-10 [000] ..... 4.663787: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-10 [000] d.... 4.663791: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-10 [000] d.... 4.663794: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c73e0(0x00000000e36c7000) deq 0x00000000e36c73d0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.663795: xhci_queue_trb: CTRL: Buffer 00000000e78c9580 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-10 [000] d.... 4.663797: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c73f0(0x00000000e36c7000) deq 0x00000000e36c73d0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.663798: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-10 [000] d.... 4.663801: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7400(0x00000000e36c7000) deq 0x00000000e36c73d0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.663802: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-14 [000] d.h.. 4.663824: xhci_handle_event: EVENT: TRB 00000000e36c73f0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-14 [000] d.h.. 4.663828: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-14 [000] d.h.. 4.663832: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7400(0x00000000e36c7000) deq 0x00000000e36c7400(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-14 [000] d.h.. 4.663834: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-14 [000] d.h.. 4.663837: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47574a0(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-10 [000] ..... 4.663869: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-10 [000] d.... 4.663872: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-10 [000] d.... 4.663875: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7410(0x00000000e36c7000) deq 0x00000000e36c7400(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.663876: xhci_queue_trb: CTRL: Buffer 0000000000000901 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-10 [000] d.... 4.663879: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7420(0x00000000e36c7000) deq 0x00000000e36c7400(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.663880: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-10 [000] d.... 4.663882: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7430(0x00000000e36c7000) deq 0x00000000e36c7400(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.663883: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] d.h.. 4.663909: xhci_handle_event: EVENT: TRB 00000000e36c7420 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.663912: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-102 [000] d.h.. 4.663915: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7430(0x00000000e36c7000) deq 0x00000000e36c7430(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-102 [000] d.h.. 4.663917: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-102 [000] d.h.. 4.663920: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47574b0(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-10 [000] ..... 4.664213: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-10 [000] d.... 4.664222: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-10 [000] d.... 4.664227: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7440(0x00000000e36c7000) deq 0x00000000e36c7430(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.664229: xhci_queue_trb: CTRL: Buffer 00000000e78c9580 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-10 [000] d.... 4.664231: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7450(0x00000000e36c7000) deq 0x00000000e36c7430(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.664232: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-10 [000] d.... 4.664234: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7460(0x00000000e36c7000) deq 0x00000000e36c7430(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.664236: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-10 [000] d.h.. 4.664261: xhci_handle_event: EVENT: TRB 00000000e36c7450 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-10 [000] d.h.. 4.664266: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-10 [000] d.h.. 4.664270: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7460(0x00000000e36c7000) deq 0x00000000e36c7460(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.h.. 4.664272: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-10 [000] d.h.. 4.664277: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47574c0(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-10 [000] ..... 4.664300: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-10 [000] d.... 4.664303: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-10 [000] d.... 4.664305: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7470(0x00000000e36c7000) deq 0x00000000e36c7460(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.664312: xhci_queue_trb: CTRL: Buffer 00000000e78c9580 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-10 [000] d.... 4.664315: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7480(0x00000000e36c7000) deq 0x00000000e36c7460(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.664316: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-10 [000] d.... 4.664318: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7490(0x00000000e36c7000) deq 0x00000000e36c7460(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.664320: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-179 [000] d.h.. 4.664343: xhci_handle_event: EVENT: TRB 00000000e36c7480 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-179 [000] d.h.. 4.664346: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-179 [000] d.h.. 4.664349: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7490(0x00000000e36c7000) deq 0x00000000e36c7490(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-179 [000] d.h.. 4.664354: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-179 [000] d.h.. 4.664357: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47574d0(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-10 [000] ..... 4.664612: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-10 [000] d.... 4.664619: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-10 [000] d.... 4.664622: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c74a0(0x00000000e36c7000) deq 0x00000000e36c7490(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.664623: xhci_queue_trb: CTRL: Buffer 00000000e78c9580 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-10 [000] d.... 4.664625: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c74b0(0x00000000e36c7000) deq 0x00000000e36c7490(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.664626: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-10 [000] d.... 4.664628: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c74c0(0x00000000e36c7000) deq 0x00000000e36c7490(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.664630: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] d.h.. 4.664650: xhci_handle_event: EVENT: TRB 00000000e36c74b0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.664655: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-102 [000] d.h.. 4.664658: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c74c0(0x00000000e36c7000) deq 0x00000000e36c74c0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-102 [000] d.h.. 4.664661: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-102 [000] d.h.. 4.664665: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47574e0(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-10 [000] ..... 4.664856: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-10 [000] d.... 4.664863: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-10 [000] d.... 4.664865: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c74d0(0x00000000e36c7000) deq 0x00000000e36c74c0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.664867: xhci_queue_trb: CTRL: Buffer 0000000000000841 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-10 [000] d.... 4.664868: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c74e0(0x00000000e36c7000) deq 0x00000000e36c74c0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.664870: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-10 [000] d.... 4.664872: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c74f0(0x00000000e36c7000) deq 0x00000000e36c74c0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.664873: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-179 [000] d.h.. 4.664895: xhci_handle_event: EVENT: TRB 00000000e36c74e0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-179 [000] d.h.. 4.664899: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-179 [000] d.h.. 4.664903: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c74f0(0x00000000e36c7000) deq 0x00000000e36c74f0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-179 [000] d.h.. 4.664905: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-179 [000] d.h.. 4.664910: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47574f0(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-10 [000] ..... 4.664951: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-10 [000] d.... 4.664955: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-10 [000] d.... 4.664957: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7500(0x00000000e36c7000) deq 0x00000000e36c74f0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.664959: xhci_queue_trb: CTRL: Buffer 00000000e78c9580 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-10 [000] d.... 4.664961: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7510(0x00000000e36c7000) deq 0x00000000e36c74f0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.664962: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-10 [000] d.... 4.664965: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7520(0x00000000e36c7000) deq 0x00000000e36c74f0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.664966: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] d.h.. 4.664983: xhci_handle_event: EVENT: TRB 00000000e36c7510 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.664986: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-102 [000] d.h.. 4.664989: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7520(0x00000000e36c7000) deq 0x00000000e36c7520(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-102 [000] d.h.. 4.664991: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-102 [000] d.h.. 4.664994: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757500(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-10 [000] ..... 4.665035: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-10 [000] d.... 4.665039: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-10 [000] d.... 4.665041: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7530(0x00000000e36c7000) deq 0x00000000e36c7520(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.665042: xhci_queue_trb: CTRL: Buffer 00000000e78c9580 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-10 [000] d.... 4.665044: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7540(0x00000000e36c7000) deq 0x00000000e36c7520(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.665045: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-10 [000] d.... 4.665047: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7550(0x00000000e36c7000) deq 0x00000000e36c7520(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.665049: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] d.h.. 4.665065: xhci_handle_event: EVENT: TRB 00000000e36c7540 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.665069: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-102 [000] d.h.. 4.665072: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7550(0x00000000e36c7000) deq 0x00000000e36c7550(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-102 [000] d.h.. 4.665074: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-102 [000] d.h.. 4.665077: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757510(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-10 [000] ..... 4.665113: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-10 [000] d.... 4.665117: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-10 [000] d.... 4.665119: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7560(0x00000000e36c7000) deq 0x00000000e36c7550(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.665121: xhci_queue_trb: CTRL: Buffer 00000000e78c9580 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-10 [000] d.... 4.665122: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7570(0x00000000e36c7000) deq 0x00000000e36c7550(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.665124: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-10 [000] d.... 4.665126: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7580(0x00000000e36c7000) deq 0x00000000e36c7550(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.665127: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] d.h.. 4.665145: xhci_handle_event: EVENT: TRB 00000000e36c7570 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.665148: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-102 [000] d.h.. 4.665152: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7580(0x00000000e36c7000) deq 0x00000000e36c7580(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-102 [000] d.h.. 4.665154: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-102 [000] d.h.. 4.665156: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757520(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-10 [000] ..... 4.665180: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-10 [000] d.... 4.665184: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-10 [000] d.... 4.665186: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7590(0x00000000e36c7000) deq 0x00000000e36c7580(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.665188: xhci_queue_trb: CTRL: Buffer 0000000000000801 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-10 [000] d.... 4.665194: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c75a0(0x00000000e36c7000) deq 0x00000000e36c7580(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.665195: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-10 [000] d.... 4.665197: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c75b0(0x00000000e36c7000) deq 0x00000000e36c7580(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.665199: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] d.h.. 4.665220: xhci_handle_event: EVENT: TRB 00000000e36c75a0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.665224: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-102 [000] d.h.. 4.665227: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c75b0(0x00000000e36c7000) deq 0x00000000e36c75b0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-102 [000] d.h.. 4.665229: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-102 [000] d.h.. 4.665232: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757530(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-10 [000] ..... 4.665262: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-10 [000] d.... 4.665266: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-10 [000] d.... 4.665268: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c75c0(0x00000000e36c7000) deq 0x00000000e36c75b0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.665269: xhci_queue_trb: CTRL: Buffer 00000000e78c9580 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-10 [000] d.... 4.665271: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c75d0(0x00000000e36c7000) deq 0x00000000e36c75b0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.665273: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-10 [000] d.... 4.665275: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c75e0(0x00000000e36c7000) deq 0x00000000e36c75b0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.665276: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] d.h.. 4.665294: xhci_handle_event: EVENT: TRB 00000000e36c75d0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.665297: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-102 [000] d.h.. 4.665300: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c75e0(0x00000000e36c7000) deq 0x00000000e36c75e0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-102 [000] d.h.. 4.665302: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-102 [000] d.h.. 4.665305: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757540(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-10 [000] ..... 4.665341: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-10 [000] d.... 4.665345: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-10 [000] d.... 4.665347: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c75f0(0x00000000e36c7000) deq 0x00000000e36c75e0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.665348: xhci_queue_trb: CTRL: Buffer 00000000e78c9580 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-10 [000] d.... 4.665350: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7600(0x00000000e36c7000) deq 0x00000000e36c75e0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.665352: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-10 [000] d.... 4.665354: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7610(0x00000000e36c7000) deq 0x00000000e36c75e0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.665355: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-141 [000] d.h.. 4.665374: xhci_handle_event: EVENT: TRB 00000000e36c7600 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-141 [000] d.h.. 4.665378: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-141 [000] d.h.. 4.665381: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7610(0x00000000e36c7000) deq 0x00000000e36c7610(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-141 [000] d.h.. 4.665383: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-141 [000] d.h.. 4.665386: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757550(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-10 [000] ..... 4.665716: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-10 [000] d.... 4.665723: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-10 [000] d.... 4.665726: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7620(0x00000000e36c7000) deq 0x00000000e36c7610(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.665727: xhci_queue_trb: CTRL: Buffer 00000000e78c9580 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-10 [000] d.... 4.665729: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7630(0x00000000e36c7000) deq 0x00000000e36c7610(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.665731: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-10 [000] d.... 4.665733: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7640(0x00000000e36c7000) deq 0x00000000e36c7610(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.665734: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-184 [000] d.h.. 4.665759: xhci_handle_event: EVENT: TRB 00000000e36c7630 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-184 [000] d.h.. 4.665764: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-184 [000] d.h.. 4.665767: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7640(0x00000000e36c7000) deq 0x00000000e36c7640(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-184 [000] d.h.. 4.665770: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-184 [000] d.h.. 4.665773: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757560(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-10 [000] ..... 4.665969: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-10 [000] d.... 4.665974: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-10 [000] d.... 4.665976: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7650(0x00000000e36c7000) deq 0x00000000e36c7640(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.665978: xhci_queue_trb: CTRL: Buffer 0000000000000801 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-10 [000] d.... 4.665980: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7660(0x00000000e36c7000) deq 0x00000000e36c7640(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.665981: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-10 [000] d.... 4.665983: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7670(0x00000000e36c7000) deq 0x00000000e36c7640(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.665985: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] d.h.. 4.666003: xhci_handle_event: EVENT: TRB 00000000e36c7660 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.666007: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-102 [000] d.h.. 4.666011: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7670(0x00000000e36c7000) deq 0x00000000e36c7670(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-102 [000] d.h.. 4.666013: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-102 [000] d.h.. 4.666016: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757570(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-10 [000] ..... 4.666044: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-10 [000] d.... 4.666048: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-10 [000] d.... 4.666050: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7680(0x00000000e36c7000) deq 0x00000000e36c7670(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.666051: xhci_queue_trb: CTRL: Buffer 00000000e78c9580 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-10 [000] d.... 4.666053: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7690(0x00000000e36c7000) deq 0x00000000e36c7670(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.666054: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-10 [000] d.... 4.666056: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c76a0(0x00000000e36c7000) deq 0x00000000e36c7670(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.666058: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] D.h.. 4.666074: xhci_handle_event: EVENT: TRB 00000000e36c7690 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] D.h.. 4.666078: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-102 [000] D.h.. 4.666081: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c76a0(0x00000000e36c7000) deq 0x00000000e36c76a0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-102 [000] D.h.. 4.666083: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-102 [000] D.h.. 4.666089: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757580(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-10 [000] ..... 4.666116: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-10 [000] d.... 4.666120: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-10 [000] d.... 4.666122: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c76b0(0x00000000e36c7000) deq 0x00000000e36c76a0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.666123: xhci_queue_trb: CTRL: Buffer 00000000e78c9580 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-10 [000] d.... 4.666125: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c76c0(0x00000000e36c7000) deq 0x00000000e36c76a0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.666127: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-10 [000] d.... 4.666128: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c76d0(0x00000000e36c7000) deq 0x00000000e36c76a0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.666130: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] d.h.. 4.666149: xhci_handle_event: EVENT: TRB 00000000e36c76c0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.666152: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-102 [000] d.h.. 4.666156: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c76d0(0x00000000e36c7000) deq 0x00000000e36c76d0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-102 [000] d.h.. 4.666158: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-102 [000] d.h.. 4.666160: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757590(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-10 [000] ..... 4.666192: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-10 [000] d.... 4.666195: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-10 [000] d.... 4.666197: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c76e0(0x00000000e36c7000) deq 0x00000000e36c76d0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.666199: xhci_queue_trb: CTRL: Buffer 00000000e78c9580 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-10 [000] d.... 4.666201: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c76f0(0x00000000e36c7000) deq 0x00000000e36c76d0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.666202: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-10 [000] d.... 4.666204: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7700(0x00000000e36c7000) deq 0x00000000e36c76d0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.666206: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] d.h.. 4.666222: xhci_handle_event: EVENT: TRB 00000000e36c76f0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.666225: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-102 [000] d.h.. 4.666229: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7700(0x00000000e36c7000) deq 0x00000000e36c7700(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-102 [000] d.h.. 4.666231: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-102 [000] d.h.. 4.666234: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47575a0(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-10 [000] ..... 4.666259: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-10 [000] d.... 4.666264: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-10 [000] d.... 4.666266: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7710(0x00000000e36c7000) deq 0x00000000e36c7700(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.666268: xhci_queue_trb: CTRL: Buffer 0000000000000841 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-10 [000] d.... 4.666270: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7720(0x00000000e36c7000) deq 0x00000000e36c7700(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.666271: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-10 [000] d.... 4.666273: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7730(0x00000000e36c7000) deq 0x00000000e36c7700(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.666275: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] d.h.. 4.666291: xhci_handle_event: EVENT: TRB 00000000e36c7720 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.666295: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-102 [000] d.h.. 4.666298: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7730(0x00000000e36c7000) deq 0x00000000e36c7730(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-102 [000] d.h.. 4.666300: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-102 [000] d.h.. 4.666303: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47575b0(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-10 [000] ..... 4.666327: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-10 [000] d.... 4.666331: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-10 [000] d.... 4.666333: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7740(0x00000000e36c7000) deq 0x00000000e36c7730(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.666334: xhci_queue_trb: CTRL: Buffer 00000000e78c9580 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-10 [000] d.... 4.666336: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7750(0x00000000e36c7000) deq 0x00000000e36c7730(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.666338: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-10 [000] d.... 4.666340: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7760(0x00000000e36c7000) deq 0x00000000e36c7730(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.666341: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] d.h.. 4.666359: xhci_handle_event: EVENT: TRB 00000000e36c7750 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.666363: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-102 [000] d.h.. 4.666366: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7760(0x00000000e36c7000) deq 0x00000000e36c7760(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-102 [000] d.h.. 4.666368: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-102 [000] d.h.. 4.666371: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47575c0(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-10 [000] ..... 4.666398: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-10 [000] d.... 4.666402: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-10 [000] d.... 4.666404: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7770(0x00000000e36c7000) deq 0x00000000e36c7760(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.666405: xhci_queue_trb: CTRL: Buffer 00000000e78c9580 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-10 [000] d.... 4.666407: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7780(0x00000000e36c7000) deq 0x00000000e36c7760(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.666409: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-10 [000] d.... 4.666411: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7790(0x00000000e36c7000) deq 0x00000000e36c7760(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.666412: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] d.h.. 4.666431: xhci_handle_event: EVENT: TRB 00000000e36c7780 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.666434: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-102 [000] d.h.. 4.666437: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7790(0x00000000e36c7000) deq 0x00000000e36c7790(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-102 [000] d.h.. 4.666439: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-102 [000] d.h.. 4.666442: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47575d0(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-10 [000] ..... 4.666468: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-10 [000] d.... 4.666472: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-10 [000] d.... 4.666474: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c77a0(0x00000000e36c7000) deq 0x00000000e36c7790(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.666476: xhci_queue_trb: CTRL: Buffer 00000000e78c9580 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-10 [000] d.... 4.666478: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c77b0(0x00000000e36c7000) deq 0x00000000e36c7790(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.666479: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-10 [000] d.... 4.666482: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c77c0(0x00000000e36c7000) deq 0x00000000e36c7790(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.666483: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] d.h.. 4.666501: xhci_handle_event: EVENT: TRB 00000000e36c77b0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.666505: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-102 [000] d.h.. 4.666508: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c77c0(0x00000000e36c7000) deq 0x00000000e36c77c0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-102 [000] d.h.. 4.666510: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-102 [000] d.h.. 4.666513: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47575e0(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-10 [000] ..... 4.666537: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-10 [000] d.... 4.666540: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-10 [000] d.... 4.666542: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c77d0(0x00000000e36c7000) deq 0x00000000e36c77c0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.666544: xhci_queue_trb: CTRL: Buffer 0000000000000841 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-10 [000] d.... 4.666546: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c77e0(0x00000000e36c7000) deq 0x00000000e36c77c0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.666547: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-10 [000] d.... 4.666549: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c77f0(0x00000000e36c7000) deq 0x00000000e36c77c0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.666550: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] d.h.. 4.666568: xhci_handle_event: EVENT: TRB 00000000e36c77e0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.666572: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-102 [000] d.h.. 4.666575: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c77f0(0x00000000e36c7000) deq 0x00000000e36c77f0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-102 [000] d.h.. 4.666577: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-102 [000] d.h.. 4.666580: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47575f0(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-10 [000] ..... 4.666604: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-10 [000] d.... 4.666607: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0114 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-10 [000] d.... 4.666610: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7800(0x00000000e36c7000) deq 0x00000000e36c77f0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.666611: xhci_queue_trb: CTRL: Buffer 00000000e78c9580 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-10 [000] d.... 4.666613: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7810(0x00000000e36c7000) deq 0x00000000e36c77f0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.666615: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-10 [000] d.... 4.666617: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7820(0x00000000e36c7000) deq 0x00000000e36c77f0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.666618: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] d.h.. 4.666636: xhci_handle_event: EVENT: TRB 00000000e36c7810 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.666639: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-102 [000] d.h.. 4.666643: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7820(0x00000000e36c7000) deq 0x00000000e36c7820(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-102 [000] d.h.. 4.666644: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-102 [000] d.h.. 4.666647: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757600(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-10 [000] ..... 4.666673: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-10 [000] d.... 4.666677: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 0118 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-10 [000] d.... 4.666679: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7830(0x00000000e36c7000) deq 0x00000000e36c7820(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.666681: xhci_queue_trb: CTRL: Buffer 00000000e78c9580 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-10 [000] d.... 4.666683: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7840(0x00000000e36c7000) deq 0x00000000e36c7820(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.666684: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-10 [000] d.... 4.666686: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7850(0x00000000e36c7000) deq 0x00000000e36c7820(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.666687: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] d.h.. 4.666704: xhci_handle_event: EVENT: TRB 00000000e36c7840 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.666707: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-102 [000] d.h.. 4.666710: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7850(0x00000000e36c7000) deq 0x00000000e36c7850(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-102 [000] d.h.. 4.666712: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-102 [000] d.h.. 4.666715: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757610(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-10 [000] .N... 4.677765: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-10 [000] dN... 4.677862: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-10 [000] dN... 4.677955: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7860(0x00000000e36c7000) deq 0x00000000e36c7850(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] dN... 4.677957: xhci_queue_trb: CTRL: Buffer 000000000080200c length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-10 [000] dN... 4.678050: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7870(0x00000000e36c7000) deq 0x00000000e36c7850(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] dN... 4.678052: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-10 [000] dN... 4.678054: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7880(0x00000000e36c7000) deq 0x00000000e36c7850(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] dN... 4.678144: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-10 [000] dNh.. 4.678341: xhci_handle_event: EVENT: TRB 00000000e36c7870 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-10 [000] dNh.. 4.678437: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-10 [000] dNh.. 4.678531: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7880(0x00000000e36c7000) deq 0x00000000e36c7880(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] dNh.. 4.678720: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<task>-10 [000] dNh.. 4.678814: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757620(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-10 [000] .N... 4.679200: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484800 slot 3 length 0/4 sgs 0/0 stream 0 flags 00110200
<task>-10 [000] dN... 4.679295: xhci_queue_trb: CTRL: bRequestType c0 bRequest a1 wValue 0000 wIndex 002c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-10 [000] dN... 4.679297: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7890(0x00000000e36c7000) deq 0x00000000e36c7880(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] dN... 4.679387: xhci_queue_trb: CTRL: Buffer 00000000e78c9580 length 4 TD size 0 intr 0 type 'Data Stage' flags i:i:c:s:I:e:c
<task>-10 [000] dN... 4.679391: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c78a0(0x00000000e36c7000) deq 0x00000000e36c7880(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] dN... 4.679392: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-10 [000] dN... 4.679485: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c78b0(0x00000000e36c7000) deq 0x00000000e36c7880(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] dN... 4.679486: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-10 [000] dNh.. 4.679583: xhci_handle_event: EVENT: TRB 00000000e36c78a0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-10 [000] dNh.. 4.679677: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-10 [000] dNh.. 4.679771: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c78b0(0x00000000e36c7000) deq 0x00000000e36c78b0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] dNh.. 4.679773: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484800 slot 3 length 4/4 sgs 0/0 stream 0 flags 00110200
<task>-10 [000] dNh.. 4.679865: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757630(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-10 [000] ..... 4.684232: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-10 [000] d.... 4.684246: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 011c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-10 [000] d.... 4.684251: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c78c0(0x00000000e36c7000) deq 0x00000000e36c78b0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.684253: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-10 [000] d.... 4.684256: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c78d0(0x00000000e36c7000) deq 0x00000000e36c78b0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.684257: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-10 [000] d.... 4.684259: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c78e0(0x00000000e36c7000) deq 0x00000000e36c78b0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.684261: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.684297: xhci_handle_event: EVENT: TRB 00000000e36c78d0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.684305: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 4.684318: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c78e0(0x00000000e36c7000) deq 0x00000000e36c78e0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 4.684322: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.684331: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757640(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-10 [000] ..... 4.684374: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000000
<task>-10 [000] d.... 4.684378: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 002c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-10 [000] d.... 4.684380: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c78f0(0x00000000e36c7000) deq 0x00000000e36c78e0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.684382: xhci_queue_trb: CTRL: Buffer 0000000000f830af length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-10 [000] d.... 4.684384: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7900(0x00000000e36c7000) deq 0x00000000e36c78e0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.684385: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-10 [000] d.... 4.684387: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7910(0x00000000e36c7000) deq 0x00000000e36c78e0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-10 [000] d.... 4.684388: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<idle>-0 [000] d.h.. 4.684407: xhci_handle_event: EVENT: TRB 00000000e36c7900 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<idle>-0 [000] d.h.. 4.684410: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<idle>-0 [000] d.h.. 4.684414: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7910(0x00000000e36c7000) deq 0x00000000e36c7910(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<idle>-0 [000] d.h.. 4.684416: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff80278cb300 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000000
<idle>-0 [000] d.h.. 4.684419: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757650(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [001] bN... 4.730332: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024417c00 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-209 [001] DN... 4.730352: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 010c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-209 [001] DN... 4.730357: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7920(0x00000000e36c7000) deq 0x00000000e36c7910(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [001] DN... 4.730359: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-209 [001] DN... 4.730361: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7930(0x00000000e36c7000) deq 0x00000000e36c7910(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [001] DN... 4.730362: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-209 [001] DN... 4.730364: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7940(0x00000000e36c7000) deq 0x00000000e36c7910(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [001] DN... 4.730367: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-209 [001] bN... 4.730374: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024417d00 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-209 [001] DN... 4.730377: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0110 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-209 [001] DN... 4.730379: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7950(0x00000000e36c7000) deq 0x00000000e36c7910(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [001] DN... 4.730380: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-209 [001] DN... 4.730382: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7960(0x00000000e36c7000) deq 0x00000000e36c7910(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [001] DN... 4.730383: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-209 [001] DN... 4.730385: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7970(0x00000000e36c7000) deq 0x00000000e36c7910(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [001] DN... 4.730387: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-209 [001] bN... 4.730391: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024417e00 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-209 [001] DN... 4.730394: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-209 [001] DN... 4.730396: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7980(0x00000000e36c7000) deq 0x00000000e36c7910(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [001] DN... 4.730397: xhci_queue_trb: CTRL: Buffer 000000000088000c length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-209 [001] DN... 4.730399: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7990(0x00000000e36c7000) deq 0x00000000e36c7910(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [001] DN... 4.730400: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-209 [001] DN... 4.730402: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c79a0(0x00000000e36c7000) deq 0x00000000e36c7910(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [001] DN... 4.730403: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-102 [000] d.h.. 4.730440: xhci_handle_event: EVENT: TRB 00000000e36c7930 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.730450: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-102 [000] d.h.. 4.730456: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c79a0(0x00000000e36c7000) deq 0x00000000e36c7940(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-102 [000] d.h.. 4.730463: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024417c00 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<task>-102 [000] d.h.. 4.730472: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757660(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-102 [000] d.h.. 4.730474: xhci_handle_event: EVENT: TRB 00000000e36c7960 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.730477: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-102 [000] d.h.. 4.730480: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c79a0(0x00000000e36c7000) deq 0x00000000e36c7970(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-102 [000] d.h.. 4.730482: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024417d00 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<task>-102 [000] d.h.. 4.730483: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757670(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-102 [000] d.h.. 4.730484: xhci_handle_event: EVENT: TRB 00000000e36c7990 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-102 [000] d.h.. 4.730487: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-102 [000] d.h.. 4.730490: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c79a0(0x00000000e36c7000) deq 0x00000000e36c79a0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-102 [000] d.h.. 4.730491: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024417e00 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<task>-102 [000] d.h.. 4.730493: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757680(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [001] bN... 4.737405: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024417f00 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-209 [001] DN... 4.737419: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 010c wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-209 [001] DN... 4.737426: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c79b0(0x00000000e36c7000) deq 0x00000000e36c79a0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [001] DN... 4.737429: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-209 [001] DN... 4.737431: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c79c0(0x00000000e36c7000) deq 0x00000000e36c79a0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [001] DN... 4.737432: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-209 [001] DN... 4.737434: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c79d0(0x00000000e36c7000) deq 0x00000000e36c79a0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [001] DN... 4.737436: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-209 [001] bN... 4.737444: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024417e00 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-209 [001] DN... 4.737446: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0110 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-209 [001] DN... 4.737448: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c79e0(0x00000000e36c7000) deq 0x00000000e36c79a0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [001] DN... 4.737450: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-209 [001] DN... 4.737452: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c79f0(0x00000000e36c7000) deq 0x00000000e36c79a0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [001] DN... 4.737453: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-209 [001] DN... 4.737455: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7a00(0x00000000e36c7000) deq 0x00000000e36c79a0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [001] DN... 4.737456: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-209 [001] bN... 4.737461: xhci_urb_enqueue: 1-1.2.1 ep0out-control: urb ffffff8024417d00 pipe 2147484672 slot 3 length 0/4 sgs 0/0 stream 0 flags 00000100
<task>-126 [000] d.h.. 4.737469: xhci_handle_event: EVENT: TRB 00000000e36c79c0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-126 [000] d.h.. 4.737477: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-126 [000] d.h.. 4.737483: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7a00(0x00000000e36c7000) deq 0x00000000e36c79d0(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-126 [000] d.h.. 4.737487: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024417f00 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<task>-126 [000] d.h.. 4.737498: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e4757690(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-126 [000] d.h.. 4.737500: xhci_handle_event: EVENT: TRB 00000000e36c79f0 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-126 [000] d.h.. 4.737503: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-126 [000] d.h.. 4.737506: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7a00(0x00000000e36c7000) deq 0x00000000e36c7a00(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-126 [000] d.h.. 4.737507: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024417e00 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<task>-126 [000] d.h.. 4.737509: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47576a0(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
<task>-209 [001] DN... 4.737515: xhci_queue_trb: CTRL: bRequestType 40 bRequest a0 wValue 0000 wIndex 0100 wLength 4 length 8 TD size 0 intr 0 type 'Setup Stage' flags I:i:C
<task>-209 [001] DN... 4.737518: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7a10(0x00000000e36c7000) deq 0x00000000e36c7a00(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [001] DN... 4.737520: xhci_queue_trb: CTRL: Buffer 000000000084000c length 4 TD size 0 intr 0 type 'Data Stage' flags I:i:c:s:i:e:c
<task>-209 [001] DN... 4.737522: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7a20(0x00000000e36c7000) deq 0x00000000e36c7a00(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [001] DN... 4.737523: xhci_queue_trb: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-209 [001] DN... 4.737525: xhci_inc_enq: CTRL ffffff8025cd7380: enq 0x00000000e36c7a30(0x00000000e36c7000) deq 0x00000000e36c7a00(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-209 [001] DN... 4.737527: xhci_ring_ep_doorbell: Ring doorbell for Slot 3 ep0in
<task>-126 [000] d.h.. 4.737542: xhci_handle_event: EVENT: TRB 00000000e36c7a20 status 'Success' len 0 slot 3 ep 1 type 'Transfer Event' flags e:C
<task>-126 [000] d.h.. 4.737546: xhci_handle_transfer: CTRL: Buffer 0000000000000000 length 0 TD size 0 intr 0 type 'Status Stage' flags I:c:e:c
<task>-126 [000] d.h.. 4.737549: xhci_inc_deq: CTRL ffffff8025cd7380: enq 0x00000000e36c7a30(0x00000000e36c7000) deq 0x00000000e36c7a30(0x00000000e36c7000) segs 2 stream 0 bounce 0 cycle 0
<task>-126 [000] d.h.. 4.737551: xhci_urb_giveback: 1-1.2.1 ep0out-control: urb ffffff8024417d00 pipe 2147484672 slot 3 length 4/4 sgs 0/0 stream 0 flags 00000100
<task>-126 [000] d.h.. 4.737554: xhci_inc_deq: EVENT ffffff8022b53c00: enq 0x00000000e4758000(0x00000000e4758000) deq 0x00000000e47576b0(0x00000000e4757000) segs 2 stream 0 bounce 0 cycle 1
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH v7 00/17] mm, dma, arm64: Reduce ARCH_KMALLOC_MINALIGN to 8
2025-03-28 16:41 ` John Ernberg
2025-03-28 19:38 ` Frank Li
@ 2025-04-01 16:43 ` Catalin Marinas
2025-04-02 10:35 ` John Ernberg
2025-05-02 12:02 ` John Ernberg
1 sibling, 2 replies; 34+ messages in thread
From: Catalin Marinas @ 2025-04-01 16:43 UTC (permalink / raw)
To: John Ernberg
Cc: Peter Chen, Pawel Laszczak, Roger Quadros, linux-mm,
linux-arm-kernel, linux-usb, imx, Jonas Blixt
On Fri, Mar 28, 2025 at 04:41:05PM +0000, John Ernberg wrote:
> On 6/12/23 5:31 PM, Catalin Marinas wrote:
> > That's v7 of the series reducing the kmalloc() minimum alignment on
> > arm64 to 8 (from 128). There's no new/different functionality, mostly
> > cosmetic changes and acks/tested-bys.
> >
> > Andrew, if there are no further comments or objections to this version,
> > are you ok to take the series through the mm tree? The arm64 changes are
> > fairly small. Alternatively, I can push it into linux-next now to give
> > it some wider exposure and decide whether to upstream it when the
> > merging window opens. Thanks.
> >
> > The updated patches are also available on this branch:
> >
> > git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux devel/kmalloc-minalign
> >
[...]
> Seen on Linux 6.12.20, it is not trivial for us to test later kernels so
> if the issue is potentially fixed we are more than happy to cherry-pick
> the potential fixes and give them a go.
I'm not aware of any recent fix for this, so I doubt testing a newer
kernel would make a difference.
> Having an SMSC9512 (smsc95xx) USB Ethernet/Hub chip attached to the armv8
> SoC iMX8QXP over the Cadence USB3 USB2 interface (cdns3-imx) will since
> the patch set at [0] cause random interrupt storms over the SMSC9512 INT
> EP.
>
> The reason for the storm is that the async URBs queued at [1] right before
> the interrupt configuration [2] in the driver.
> With [0] applied, those async URBs are likely clobbering any URB located
> after them in memory somewhere in the xhci memory space.
> The memory corruption only happens if there is more than one URB in the
> queue at the same time, making these async URBs a good trigger of the
> problem.
> If we force those URBs to be sync or use the hack inlined below, the
> problem goes away.
I'm not really familiar with this area. My only drivers/usb/ change
related to ARCH_KMALLOC_MINALIGN was commit 075efe7c1656 ("drivers/usb:
use ARCH_DMA_MINALIGN instead of ARCH_KMALLOC_MINALIGN"). I wouldn't be
surprised if I missed other things that rely on the kmalloc() alignment
rather than explicit macros.
> The content of read_buf in the interrupt configuration read at [2] looks
> to be the lo-part of a pointer +-20 bytes distance from the pointers
> present in the async URBs queued from [1] when we dumped the URB structures
> instead of the expected register contents.
It might be worth enabling CONFIG_DMA_API_DEBUG to see if it complains.
I lost myself in the call paths on how read_buf gets populated. In
principle, the DMA API should handle bouncing (swiotlb) even if you pass
it a buffer smaller than the required alignment
Random shot, untested and not an actual fix but some ideas for
debugging:
------------------8<-------------------------------
diff --git a/drivers/net/usb/usbnet.c b/drivers/net/usb/usbnet.c
index 44179f4e807f..06d5f9bfef75 100644
--- a/drivers/net/usb/usbnet.c
+++ b/drivers/net/usb/usbnet.c
@@ -2024,7 +2024,7 @@ static int __usbnet_read_cmd(struct usbnet *dev, u8 cmd, u8 reqtype,
cmd, reqtype, value, index, size);
if (size) {
- buf = kmalloc(size, GFP_NOIO);
+ buf = kmalloc(ALIGN(size, dma_get_cache_alignment()), GFP_NOIO);
if (!buf)
goto out;
}
@@ -2171,12 +2171,13 @@ int usbnet_write_cmd_async(struct usbnet *dev, u8 cmd, u8 reqtype,
goto fail;
if (data) {
- buf = kmemdup(data, size, GFP_ATOMIC);
+ buf = kmalloc(ALIGN(size, dma_get_cache_alignment()), GFP_ATOMIC);
if (!buf) {
netdev_err(dev->net, "Error allocating buffer"
" in %s!\n", __func__);
goto fail_free_urb;
}
+ memcpy(buf, data, size);
}
req = kmalloc(sizeof(struct usb_ctrlrequest), GFP_ATOMIC);
diff --git a/drivers/usb/cdns3/cdnsp-mem.c b/drivers/usb/cdns3/cdnsp-mem.c
index 97866bfb2da9..226ac7af6511 100644
--- a/drivers/usb/cdns3/cdnsp-mem.c
+++ b/drivers/usb/cdns3/cdnsp-mem.c
@@ -45,6 +45,7 @@ static struct cdnsp_segment *cdnsp_segment_alloc(struct cdnsp_device *pdev,
return NULL;
}
+ max_packet = ALIGN(max_packet, dma_get_cache_alignment());
if (max_packet) {
seg->bounce_buf = kzalloc(max_packet, flags | GFP_DMA);
if (!seg->bounce_buf)
------------------8<-------------------------------
Even without the above, my reading of the code is that it is safe since
the buffers eventually end up in dma_map_single() which would do
bouncing via an aligned buffer.
Try to track down call paths from smsc95xx_read_reg() and
smsc95xx_write_reg_async() to usbnet_{read,wrote}_cmd* etc. and see how
the DMA transfers happen, whether it's missing some dma_map_* call. The
dma_map_* bouncing logic relies on the size, see
dma_kmalloc_needs_bounce().
Is there an iommu between the usb host controller and memory? The iommu
code should do similar bouncing but it's had minimal testing.
--
Catalin
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH v7 00/17] mm, dma, arm64: Reduce ARCH_KMALLOC_MINALIGN to 8
2025-04-01 16:43 ` Catalin Marinas
@ 2025-04-02 10:35 ` John Ernberg
2025-05-02 12:02 ` John Ernberg
1 sibling, 0 replies; 34+ messages in thread
From: John Ernberg @ 2025-04-02 10:35 UTC (permalink / raw)
To: Catalin Marinas
Cc: Peter Chen, Pawel Laszczak, Roger Quadros, linux-mm,
linux-arm-kernel, linux-usb, imx, Jonas Blixt
Hi Catalin,
On 4/1/25 6:43 PM, Catalin Marinas wrote:
> On Fri, Mar 28, 2025 at 04:41:05PM +0000, John Ernberg wrote:
>> On 6/12/23 5:31 PM, Catalin Marinas wrote:
>>> That's v7 of the series reducing the kmalloc() minimum alignment on
>>> arm64 to 8 (from 128). There's no new/different functionality, mostly
>>> cosmetic changes and acks/tested-bys.
>>>
>>> Andrew, if there are no further comments or objections to this version,
>>> are you ok to take the series through the mm tree? The arm64 changes are
>>> fairly small. Alternatively, I can push it into linux-next now to give
>>> it some wider exposure and decide whether to upstream it when the
>>> merging window opens. Thanks.
>>>
>>> The updated patches are also available on this branch:
>>>
>>> git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux devel/kmalloc-minalign
>>>
> [...]
>> Seen on Linux 6.12.20, it is not trivial for us to test later kernels so
>> if the issue is potentially fixed we are more than happy to cherry-pick
>> the potential fixes and give them a go.
>
> I'm not aware of any recent fix for this, so I doubt testing a newer
> kernel would make a difference.
>
>> Having an SMSC9512 (smsc95xx) USB Ethernet/Hub chip attached to the armv8
>> SoC iMX8QXP over the Cadence USB3 USB2 interface (cdns3-imx) will since
>> the patch set at [0] cause random interrupt storms over the SMSC9512 INT
>> EP.
>>
>> The reason for the storm is that the async URBs queued at [1] right before
>> the interrupt configuration [2] in the driver.
>> With [0] applied, those async URBs are likely clobbering any URB located
>> after them in memory somewhere in the xhci memory space.
>> The memory corruption only happens if there is more than one URB in the
>> queue at the same time, making these async URBs a good trigger of the
>> problem.
>> If we force those URBs to be sync or use the hack inlined below, the
>> problem goes away.
>
> I'm not really familiar with this area. My only drivers/usb/ change
> related to ARCH_KMALLOC_MINALIGN was commit 075efe7c1656 ("drivers/usb:
> use ARCH_DMA_MINALIGN instead of ARCH_KMALLOC_MINALIGN"). I wouldn't be
> surprised if I missed other things that rely on the kmalloc() alignment
> rather than explicit macros.
We tried hacking the outcome of the function back to how it ran on the
vendor 6.1 kernel and it did not have an effect on the bug.
>
>> The content of read_buf in the interrupt configuration read at [2] looks
>> to be the lo-part of a pointer +-20 bytes distance from the pointers
>> present in the async URBs queued from [1] when we dumped the URB structures
>> instead of the expected register contents.
>
> It might be worth enabling CONFIG_DMA_API_DEBUG to see if it complains.
> I lost myself in the call paths on how read_buf gets populated. In
> principle, the DMA API should handle bouncing (swiotlb) even if you pass
> it a buffer smaller than the required alignment
>
> Random shot, untested and not an actual fix but some ideas for
> debugging:
>
> ------------------8<-------------------------------
> diff --git a/drivers/net/usb/usbnet.c b/drivers/net/usb/usbnet.c
> index 44179f4e807f..06d5f9bfef75 100644
> --- a/drivers/net/usb/usbnet.c
> +++ b/drivers/net/usb/usbnet.c
> @@ -2024,7 +2024,7 @@ static int __usbnet_read_cmd(struct usbnet *dev, u8 cmd, u8 reqtype,
> cmd, reqtype, value, index, size);
>
> if (size) {
> - buf = kmalloc(size, GFP_NOIO);
> + buf = kmalloc(ALIGN(size, dma_get_cache_alignment()), GFP_NOIO);
> if (!buf)
> goto out;
> }
> @@ -2171,12 +2171,13 @@ int usbnet_write_cmd_async(struct usbnet *dev, u8 cmd, u8 reqtype,
> goto fail;
>
> if (data) {
> - buf = kmemdup(data, size, GFP_ATOMIC);
> + buf = kmalloc(ALIGN(size, dma_get_cache_alignment()), GFP_ATOMIC);
> if (!buf) {
> netdev_err(dev->net, "Error allocating buffer"
> " in %s!\n", __func__);
> goto fail_free_urb;
> }
> + memcpy(buf, data, size);
> }
>
> req = kmalloc(sizeof(struct usb_ctrlrequest), GFP_ATOMIC);
> diff --git a/drivers/usb/cdns3/cdnsp-mem.c b/drivers/usb/cdns3/cdnsp-mem.c
> index 97866bfb2da9..226ac7af6511 100644
> --- a/drivers/usb/cdns3/cdnsp-mem.c
> +++ b/drivers/usb/cdns3/cdnsp-mem.c
> @@ -45,6 +45,7 @@ static struct cdnsp_segment *cdnsp_segment_alloc(struct cdnsp_device *pdev,
> return NULL;
> }
>
> + max_packet = ALIGN(max_packet, dma_get_cache_alignment());
> if (max_packet) {
> seg->bounce_buf = kzalloc(max_packet, flags | GFP_DMA);
> if (!seg->bounce_buf)
> ------------------8<-------------------------------
>
> Even without the above, my reading of the code is that it is safe since
> the buffers eventually end up in dma_map_single() which would do
> bouncing via an aligned buffer.
>
> Try to track down call paths from smsc95xx_read_reg() and
> smsc95xx_write_reg_async() to usbnet_{read,wrote}_cmd* etc. and see how
> the DMA transfers happen, whether it's missing some dma_map_* call. The
> dma_map_* bouncing logic relies on the size, see
> dma_kmalloc_needs_bounce().
>
> Is there an iommu between the usb host controller and memory? The iommu
> code should do similar bouncing but it's had minimal testing.
The iMX8QXP does not come with an iommu.>
> --
> Catalin
>
Thank you for the many debugging pointers, it will take me at least a
few days to get through them all and produce results.
Best regards // John Ernberg
^ permalink raw reply [flat|nested] 34+ messages in thread
* Re: [PATCH v7 00/17] mm, dma, arm64: Reduce ARCH_KMALLOC_MINALIGN to 8
2025-04-01 16:43 ` Catalin Marinas
2025-04-02 10:35 ` John Ernberg
@ 2025-05-02 12:02 ` John Ernberg
1 sibling, 0 replies; 34+ messages in thread
From: John Ernberg @ 2025-05-02 12:02 UTC (permalink / raw)
To: Catalin Marinas
Cc: Peter Chen, Pawel Laszczak, Roger Quadros, linux-mm,
linux-arm-kernel, linux-usb, imx, Jonas Blixt
Hi Catalin,
On 4/1/25 6:43 PM, Catalin Marinas wrote:
> On Fri, Mar 28, 2025 at 04:41:05PM +0000, John Ernberg wrote:
>> On 6/12/23 5:31 PM, Catalin Marinas wrote:
>>> That's v7 of the series reducing the kmalloc() minimum alignment on
>>> arm64 to 8 (from 128). There's no new/different functionality, mostly
>>> cosmetic changes and acks/tested-bys.
>>>
>>> Andrew, if there are no further comments or objections to this version,
>>> are you ok to take the series through the mm tree? The arm64 changes are
>>> fairly small. Alternatively, I can push it into linux-next now to give
>>> it some wider exposure and decide whether to upstream it when the
>>> merging window opens. Thanks.
>>>
>>> The updated patches are also available on this branch:
>>>
>>> git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux devel/kmalloc-minalign
>>>
> [...]
>> Seen on Linux 6.12.20, it is not trivial for us to test later kernels so
>> if the issue is potentially fixed we are more than happy to cherry-pick
>> the potential fixes and give them a go.
>
> I'm not aware of any recent fix for this, so I doubt testing a newer
> kernel would make a difference.
>
>> Having an SMSC9512 (smsc95xx) USB Ethernet/Hub chip attached to the armv8
>> SoC iMX8QXP over the Cadence USB3 USB2 interface (cdns3-imx) will since
>> the patch set at [0] cause random interrupt storms over the SMSC9512 INT
>> EP.
>>
>> The reason for the storm is that the async URBs queued at [1] right before
>> the interrupt configuration [2] in the driver.
>> With [0] applied, those async URBs are likely clobbering any URB located
>> after them in memory somewhere in the xhci memory space.
>> The memory corruption only happens if there is more than one URB in the
>> queue at the same time, making these async URBs a good trigger of the
>> problem.
>> If we force those URBs to be sync or use the hack inlined below, the
>> problem goes away.
>
> I'm not really familiar with this area. My only drivers/usb/ change
> related to ARCH_KMALLOC_MINALIGN was commit 075efe7c1656 ("drivers/usb:
> use ARCH_DMA_MINALIGN instead of ARCH_KMALLOC_MINALIGN"). I wouldn't be
> surprised if I missed other things that rely on the kmalloc() alignment
> rather than explicit macros.
>
>> The content of read_buf in the interrupt configuration read at [2] looks
>> to be the lo-part of a pointer +-20 bytes distance from the pointers
>> present in the async URBs queued from [1] when we dumped the URB structures
>> instead of the expected register contents.
>
> It might be worth enabling CONFIG_DMA_API_DEBUG to see if it complains.
> I lost myself in the call paths on how read_buf gets populated. In
> principle, the DMA API should handle bouncing (swiotlb) even if you pass
> it a buffer smaller than the required alignment
>
> Random shot, untested and not an actual fix but some ideas for
> debugging:
>
> ------------------8<-------------------------------
> diff --git a/drivers/net/usb/usbnet.c b/drivers/net/usb/usbnet.c
> index 44179f4e807f..06d5f9bfef75 100644
> --- a/drivers/net/usb/usbnet.c
> +++ b/drivers/net/usb/usbnet.c
> @@ -2024,7 +2024,7 @@ static int __usbnet_read_cmd(struct usbnet *dev, u8 cmd, u8 reqtype,
> cmd, reqtype, value, index, size);
>
> if (size) {
> - buf = kmalloc(size, GFP_NOIO);
> + buf = kmalloc(ALIGN(size, dma_get_cache_alignment()), GFP_NOIO);
> if (!buf)
> goto out;
> }
> @@ -2171,12 +2171,13 @@ int usbnet_write_cmd_async(struct usbnet *dev, u8 cmd, u8 reqtype,
> goto fail;
>
> if (data) {
> - buf = kmemdup(data, size, GFP_ATOMIC);
> + buf = kmalloc(ALIGN(size, dma_get_cache_alignment()), GFP_ATOMIC);
> if (!buf) {
> netdev_err(dev->net, "Error allocating buffer"
> " in %s!\n", __func__);
> goto fail_free_urb;
> }
> + memcpy(buf, data, size);
> }
>
> req = kmalloc(sizeof(struct usb_ctrlrequest), GFP_ATOMIC);
> diff --git a/drivers/usb/cdns3/cdnsp-mem.c b/drivers/usb/cdns3/cdnsp-mem.c
> index 97866bfb2da9..226ac7af6511 100644
> --- a/drivers/usb/cdns3/cdnsp-mem.c
> +++ b/drivers/usb/cdns3/cdnsp-mem.c
> @@ -45,6 +45,7 @@ static struct cdnsp_segment *cdnsp_segment_alloc(struct cdnsp_device *pdev,
> return NULL;
> }
>
> + max_packet = ALIGN(max_packet, dma_get_cache_alignment());
> if (max_packet) {
> seg->bounce_buf = kzalloc(max_packet, flags | GFP_DMA);
> if (!seg->bounce_buf)
> ------------------8<-------------------------------
>
> Even without the above, my reading of the code is that it is safe since
> the buffers eventually end up in dma_map_single() which would do
> bouncing via an aligned buffer.
>
> Try to track down call paths from smsc95xx_read_reg() and
> smsc95xx_write_reg_async() to usbnet_{read,wrote}_cmd* etc. and see how
> the DMA transfers happen, whether it's missing some dma_map_* call. The
> dma_map_* bouncing logic relies on the size, see
> dma_kmalloc_needs_bounce().
>
> Is there an iommu between the usb host controller and memory? The iommu
> code should do similar bouncing but it's had minimal testing.
>
> --
> Catalin
>
(Finally finished up this issue after being assigned some higher
priority tasks)
Thank you again for the very helpful debug advice, I was able to track
down the problem to be a Xen swiotlb problem (I had not realized Xen had
its own swiotlb), and I managed to identify another DMA issue as well
due to that. Series at [1].
Thanks! // John Ernberg
[1]:
https://lore.kernel.org/xen-devel/20250502114043.1968976-1-john.ernberg@actia.se/
^ permalink raw reply [flat|nested] 34+ messages in thread
end of thread, other threads:[~2025-05-02 12:02 UTC | newest]
Thread overview: 34+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-12 15:31 [PATCH v7 00/17] mm, dma, arm64: Reduce ARCH_KMALLOC_MINALIGN to 8 Catalin Marinas
2023-06-12 15:31 ` [PATCH v7 01/17] mm/slab: Decouple ARCH_KMALLOC_MINALIGN from ARCH_DMA_MINALIGN Catalin Marinas
2023-06-13 9:46 ` Vlastimil Babka
2023-06-13 11:13 ` Catalin Marinas
2023-06-12 15:31 ` [PATCH v7 02/17] dma: Allow dma_get_cache_alignment() to be overridden by the arch code Catalin Marinas
2023-06-12 15:31 ` [PATCH v7 03/17] mm/slab: Simplify create_kmalloc_cache() args and make it static Catalin Marinas
2023-06-12 15:31 ` [PATCH v7 04/17] mm/slab: Limit kmalloc() minimum alignment to dma_get_cache_alignment() Catalin Marinas
2023-06-12 15:31 ` [PATCH v7 05/17] drivers/base: Use ARCH_DMA_MINALIGN instead of ARCH_KMALLOC_MINALIGN Catalin Marinas
2023-06-12 15:31 ` [PATCH v7 06/17] drivers/gpu: " Catalin Marinas
2023-06-12 15:31 ` [PATCH v7 07/17] drivers/usb: " Catalin Marinas
2023-06-12 15:31 ` [PATCH v7 08/17] drivers/spi: " Catalin Marinas
2023-06-12 15:31 ` [PATCH v7 09/17] dm-crypt: " Catalin Marinas
2023-06-12 15:31 ` [PATCH v7 10/17] iio: core: " Catalin Marinas
2023-06-12 15:31 ` [PATCH v7 11/17] arm64: Allow kmalloc() caches aligned to the smaller cache_line_size() Catalin Marinas
2023-06-12 15:31 ` [PATCH v7 12/17] scatterlist: Add dedicated config for DMA flags Catalin Marinas
2023-06-12 15:31 ` [PATCH v7 13/17] dma-mapping: Name SG DMA flag helpers consistently Catalin Marinas
2023-06-12 15:31 ` [PATCH v7 14/17] dma-mapping: Force bouncing if the kmalloc() size is not cache-line-aligned Catalin Marinas
2023-06-12 15:31 ` [PATCH v7 15/17] iommu/dma: Force bouncing if the size is not cacheline-aligned Catalin Marinas
2023-06-12 15:32 ` [PATCH v7 16/17] mm: slab: Reduce the kmalloc() minimum alignment if DMA bouncing possible Catalin Marinas
2023-06-12 15:32 ` [PATCH v7 17/17] arm64: Enable ARCH_WANT_KMALLOC_DMA_BOUNCE for arm64 Catalin Marinas
2023-07-05 13:40 ` [PATCH v7 00/17] mm, dma, arm64: Reduce ARCH_KMALLOC_MINALIGN to 8 Amit Pundir
2023-07-07 0:41 ` Isaac Manjarres
2023-07-08 13:02 ` Amit Pundir
2023-07-11 19:44 ` Isaac Manjarres
2023-07-12 4:57 ` Amit Pundir
2023-07-09 3:27 ` Catalin Marinas
2025-03-28 16:41 ` John Ernberg
2025-03-28 19:38 ` Frank Li
2025-03-31 8:02 ` John Ernberg
2025-03-31 16:21 ` Frank Li
2025-04-01 12:56 ` John Ernberg
2025-04-01 16:43 ` Catalin Marinas
2025-04-02 10:35 ` John Ernberg
2025-05-02 12:02 ` John Ernberg
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox