AR-1 - Adding support category for distributions AR-4 - Remove Allwinner legacy AR-5 - Drop Udoo family and move Udoo board into newly created imx6 family AR-9 - Rename sunxi-next to sunxi-legacy AR-10 - Rename sunxi-dev to sunxi-current AR-11 - Adding Radxa Rockpi S support AR-13 - Rename rockchip64-default to rockchip64-legacy AR-14 - Add rockchip64-current as mainline source AR-15 - Drop Rockchip 4.19.y NEXT, current become 5.3.y AR-16 - Rename RK3399 default to legacy AR-17 - Rename Odroid XU4 next and default to legacy 4.14.y, add DEV 5.4.y AR-18 - Add Odroid N2 current mainline AR-19 - Move Odroid C1 to meson family AR-20 - Rename mvebu64-default to mvebu64-legacy AR-21 - Rename mvebu-default to mvebu-legacy AR-22 - Rename mvebu-next to mvebu-current AR-23 - Drop meson64 default and next, current becomes former DEV 5.3.y AR-24 - Drop cubox family and move Cubox/Hummingboard boards under imx6 AR-26 - Adjust motd AR-27 - Enabling distribution release status AR-28 - Added new GCC compilers AR-29 - Implementing Ubuntu Eoan AR-30 - Add desktop packages per board or family AR-31 - Remove (Ubuntu/Debian) distribution name from image filename AR-32 - Move arch configs from configuration.sh to separate arm64 and armhf config files AR-33 - Revision numbers for beta builds changed to day_in_the_year AR-34 - Patches support linked patches AR-35 - Break meson64 family into gxbb and gxl AR-36 - Add Nanopineo2 Black AR-38 - Upgrade option from old branches to new one via armbian-config AR-41 - Show full timezone info AR-43 - Merge Odroid N2 to meson64 AR-44 - Enable FORCE_BOOTSCRIPT_UPDATE for all builds
2563 lines
101 KiB
Diff
2563 lines
101 KiB
Diff
diff --git a/Makefile b/Makefile
|
|
index 248b99283f71..6eede39f898a 100644
|
|
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -1,7 +1,7 @@
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
VERSION = 4
|
|
PATCHLEVEL = 14
|
|
-SUBLEVEL = 39
|
|
+SUBLEVEL = 40
|
|
EXTRAVERSION =
|
|
NAME = Petit Gorille
|
|
|
|
diff --git a/drivers/acpi/button.c b/drivers/acpi/button.c
|
|
index ef1856b15488..9e80802e3603 100644
|
|
--- a/drivers/acpi/button.c
|
|
+++ b/drivers/acpi/button.c
|
|
@@ -595,4 +595,26 @@ module_param_call(lid_init_state,
|
|
NULL, 0644);
|
|
MODULE_PARM_DESC(lid_init_state, "Behavior for reporting LID initial state");
|
|
|
|
-module_acpi_driver(acpi_button_driver);
|
|
+static int acpi_button_register_driver(struct acpi_driver *driver)
|
|
+{
|
|
+ /*
|
|
+ * Modules such as nouveau.ko and i915.ko have a link time dependency
|
|
+ * on acpi_lid_open(), and would therefore not be loadable on ACPI
|
|
+ * capable kernels booted in non-ACPI mode if the return value of
|
|
+ * acpi_bus_register_driver() is returned from here with ACPI disabled
|
|
+ * when this driver is built as a module.
|
|
+ */
|
|
+ if (acpi_disabled)
|
|
+ return 0;
|
|
+
|
|
+ return acpi_bus_register_driver(driver);
|
|
+}
|
|
+
|
|
+static void acpi_button_unregister_driver(struct acpi_driver *driver)
|
|
+{
|
|
+ if (!acpi_disabled)
|
|
+ acpi_bus_unregister_driver(driver);
|
|
+}
|
|
+
|
|
+module_driver(acpi_button_driver, acpi_button_register_driver,
|
|
+ acpi_button_unregister_driver);
|
|
diff --git a/drivers/crypto/talitos.c b/drivers/crypto/talitos.c
|
|
index ceae25112acd..57e1b203cf36 100644
|
|
--- a/drivers/crypto/talitos.c
|
|
+++ b/drivers/crypto/talitos.c
|
|
@@ -1116,10 +1116,10 @@ static int sg_to_link_tbl_offset(struct scatterlist *sg, int sg_count,
|
|
return count;
|
|
}
|
|
|
|
-int talitos_sg_map(struct device *dev, struct scatterlist *src,
|
|
- unsigned int len, struct talitos_edesc *edesc,
|
|
- struct talitos_ptr *ptr,
|
|
- int sg_count, unsigned int offset, int tbl_off)
|
|
+static int talitos_sg_map_ext(struct device *dev, struct scatterlist *src,
|
|
+ unsigned int len, struct talitos_edesc *edesc,
|
|
+ struct talitos_ptr *ptr, int sg_count,
|
|
+ unsigned int offset, int tbl_off, int elen)
|
|
{
|
|
struct talitos_private *priv = dev_get_drvdata(dev);
|
|
bool is_sec1 = has_ftr_sec1(priv);
|
|
@@ -1130,7 +1130,7 @@ int talitos_sg_map(struct device *dev, struct scatterlist *src,
|
|
}
|
|
|
|
to_talitos_ptr_len(ptr, len, is_sec1);
|
|
- to_talitos_ptr_ext_set(ptr, 0, is_sec1);
|
|
+ to_talitos_ptr_ext_set(ptr, elen, is_sec1);
|
|
|
|
if (sg_count == 1) {
|
|
to_talitos_ptr(ptr, sg_dma_address(src) + offset, is_sec1);
|
|
@@ -1140,7 +1140,7 @@ int talitos_sg_map(struct device *dev, struct scatterlist *src,
|
|
to_talitos_ptr(ptr, edesc->dma_link_tbl + offset, is_sec1);
|
|
return sg_count;
|
|
}
|
|
- sg_count = sg_to_link_tbl_offset(src, sg_count, offset, len,
|
|
+ sg_count = sg_to_link_tbl_offset(src, sg_count, offset, len + elen,
|
|
&edesc->link_tbl[tbl_off]);
|
|
if (sg_count == 1) {
|
|
/* Only one segment now, so no link tbl needed*/
|
|
@@ -1154,6 +1154,15 @@ int talitos_sg_map(struct device *dev, struct scatterlist *src,
|
|
return sg_count;
|
|
}
|
|
|
|
+static int talitos_sg_map(struct device *dev, struct scatterlist *src,
|
|
+ unsigned int len, struct talitos_edesc *edesc,
|
|
+ struct talitos_ptr *ptr, int sg_count,
|
|
+ unsigned int offset, int tbl_off)
|
|
+{
|
|
+ return talitos_sg_map_ext(dev, src, len, edesc, ptr, sg_count, offset,
|
|
+ tbl_off, 0);
|
|
+}
|
|
+
|
|
/*
|
|
* fill in and submit ipsec_esp descriptor
|
|
*/
|
|
@@ -1171,7 +1180,7 @@ static int ipsec_esp(struct talitos_edesc *edesc, struct aead_request *areq,
|
|
unsigned int ivsize = crypto_aead_ivsize(aead);
|
|
int tbl_off = 0;
|
|
int sg_count, ret;
|
|
- int sg_link_tbl_len;
|
|
+ int elen = 0;
|
|
bool sync_needed = false;
|
|
struct talitos_private *priv = dev_get_drvdata(dev);
|
|
bool is_sec1 = has_ftr_sec1(priv);
|
|
@@ -1225,20 +1234,12 @@ static int ipsec_esp(struct talitos_edesc *edesc, struct aead_request *areq,
|
|
* extent is bytes of HMAC postpended to ciphertext,
|
|
* typically 12 for ipsec
|
|
*/
|
|
- to_talitos_ptr_len(&desc->ptr[4], cryptlen, is_sec1);
|
|
- to_talitos_ptr_ext_set(&desc->ptr[4], 0, is_sec1);
|
|
-
|
|
- sg_link_tbl_len = cryptlen;
|
|
-
|
|
- if (desc->hdr & DESC_HDR_TYPE_IPSEC_ESP) {
|
|
- to_talitos_ptr_ext_set(&desc->ptr[4], authsize, is_sec1);
|
|
-
|
|
- if (edesc->desc.hdr & DESC_HDR_MODE1_MDEU_CICV)
|
|
- sg_link_tbl_len += authsize;
|
|
- }
|
|
+ if ((desc->hdr & DESC_HDR_TYPE_IPSEC_ESP) &&
|
|
+ (desc->hdr & DESC_HDR_MODE1_MDEU_CICV))
|
|
+ elen = authsize;
|
|
|
|
- ret = talitos_sg_map(dev, areq->src, sg_link_tbl_len, edesc,
|
|
- &desc->ptr[4], sg_count, areq->assoclen, tbl_off);
|
|
+ ret = talitos_sg_map_ext(dev, areq->src, cryptlen, edesc, &desc->ptr[4],
|
|
+ sg_count, areq->assoclen, tbl_off, elen);
|
|
|
|
if (ret > 1) {
|
|
tbl_off += ret;
|
|
diff --git a/drivers/gpu/drm/bridge/dumb-vga-dac.c b/drivers/gpu/drm/bridge/dumb-vga-dac.c
|
|
index de5e7dee7ad6..2e6c61d9b8ea 100644
|
|
--- a/drivers/gpu/drm/bridge/dumb-vga-dac.c
|
|
+++ b/drivers/gpu/drm/bridge/dumb-vga-dac.c
|
|
@@ -55,7 +55,9 @@ static int dumb_vga_get_modes(struct drm_connector *connector)
|
|
}
|
|
|
|
drm_mode_connector_update_edid_property(connector, edid);
|
|
- return drm_add_edid_modes(connector, edid);
|
|
+ ret = drm_add_edid_modes(connector, edid);
|
|
+ kfree(edid);
|
|
+ return ret;
|
|
|
|
fallback:
|
|
/*
|
|
diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c b/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c
|
|
index 9e010f8c36a1..11f1c30ead54 100644
|
|
--- a/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c
|
|
+++ b/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c
|
|
@@ -2612,6 +2612,7 @@ void vmw_kms_helper_resource_finish(struct vmw_validation_ctx *ctx,
|
|
vmw_kms_helper_buffer_finish(res->dev_priv, NULL, ctx->buf,
|
|
out_fence, NULL);
|
|
|
|
+ vmw_dmabuf_unreference(&ctx->buf);
|
|
vmw_resource_unreserve(res, false, NULL, 0);
|
|
mutex_unlock(&res->dev_priv->cmdbuf_mutex);
|
|
}
|
|
diff --git a/drivers/infiniband/core/ucma.c b/drivers/infiniband/core/ucma.c
|
|
index 0698d92e2656..c65f0e8ecbd6 100644
|
|
--- a/drivers/infiniband/core/ucma.c
|
|
+++ b/drivers/infiniband/core/ucma.c
|
|
@@ -678,7 +678,7 @@ static ssize_t ucma_resolve_ip(struct ucma_file *file,
|
|
if (copy_from_user(&cmd, inbuf, sizeof(cmd)))
|
|
return -EFAULT;
|
|
|
|
- if (!rdma_addr_size_in6(&cmd.src_addr) ||
|
|
+ if ((cmd.src_addr.sin6_family && !rdma_addr_size_in6(&cmd.src_addr)) ||
|
|
!rdma_addr_size_in6(&cmd.dst_addr))
|
|
return -EINVAL;
|
|
|
|
diff --git a/drivers/infiniband/hw/cxgb4/cq.c b/drivers/infiniband/hw/cxgb4/cq.c
|
|
index 73feeeeb4283..6b15508ce17e 100644
|
|
--- a/drivers/infiniband/hw/cxgb4/cq.c
|
|
+++ b/drivers/infiniband/hw/cxgb4/cq.c
|
|
@@ -330,7 +330,7 @@ static void advance_oldest_read(struct t4_wq *wq)
|
|
* Deal with out-of-order and/or completions that complete
|
|
* prior unsignalled WRs.
|
|
*/
|
|
-void c4iw_flush_hw_cq(struct c4iw_cq *chp)
|
|
+void c4iw_flush_hw_cq(struct c4iw_cq *chp, struct c4iw_qp *flush_qhp)
|
|
{
|
|
struct t4_cqe *hw_cqe, *swcqe, read_cqe;
|
|
struct c4iw_qp *qhp;
|
|
@@ -354,6 +354,13 @@ void c4iw_flush_hw_cq(struct c4iw_cq *chp)
|
|
if (qhp == NULL)
|
|
goto next_cqe;
|
|
|
|
+ if (flush_qhp != qhp) {
|
|
+ spin_lock(&qhp->lock);
|
|
+
|
|
+ if (qhp->wq.flushed == 1)
|
|
+ goto next_cqe;
|
|
+ }
|
|
+
|
|
if (CQE_OPCODE(hw_cqe) == FW_RI_TERMINATE)
|
|
goto next_cqe;
|
|
|
|
@@ -405,6 +412,8 @@ void c4iw_flush_hw_cq(struct c4iw_cq *chp)
|
|
next_cqe:
|
|
t4_hwcq_consume(&chp->cq);
|
|
ret = t4_next_hw_cqe(&chp->cq, &hw_cqe);
|
|
+ if (qhp && flush_qhp != qhp)
|
|
+ spin_unlock(&qhp->lock);
|
|
}
|
|
}
|
|
|
|
diff --git a/drivers/infiniband/hw/cxgb4/device.c b/drivers/infiniband/hw/cxgb4/device.c
|
|
index fc886f81b885..99f232e3ea93 100644
|
|
--- a/drivers/infiniband/hw/cxgb4/device.c
|
|
+++ b/drivers/infiniband/hw/cxgb4/device.c
|
|
@@ -884,6 +884,11 @@ static int c4iw_rdev_open(struct c4iw_rdev *rdev)
|
|
|
|
rdev->status_page->db_off = 0;
|
|
|
|
+ init_completion(&rdev->rqt_compl);
|
|
+ init_completion(&rdev->pbl_compl);
|
|
+ kref_init(&rdev->rqt_kref);
|
|
+ kref_init(&rdev->pbl_kref);
|
|
+
|
|
return 0;
|
|
err_free_status_page_and_wr_log:
|
|
if (c4iw_wr_log && rdev->wr_log)
|
|
@@ -902,13 +907,15 @@ static int c4iw_rdev_open(struct c4iw_rdev *rdev)
|
|
|
|
static void c4iw_rdev_close(struct c4iw_rdev *rdev)
|
|
{
|
|
- destroy_workqueue(rdev->free_workq);
|
|
kfree(rdev->wr_log);
|
|
c4iw_release_dev_ucontext(rdev, &rdev->uctx);
|
|
free_page((unsigned long)rdev->status_page);
|
|
c4iw_pblpool_destroy(rdev);
|
|
c4iw_rqtpool_destroy(rdev);
|
|
+ wait_for_completion(&rdev->pbl_compl);
|
|
+ wait_for_completion(&rdev->rqt_compl);
|
|
c4iw_ocqp_pool_destroy(rdev);
|
|
+ destroy_workqueue(rdev->free_workq);
|
|
c4iw_destroy_resource(&rdev->resource);
|
|
}
|
|
|
|
diff --git a/drivers/infiniband/hw/cxgb4/iw_cxgb4.h b/drivers/infiniband/hw/cxgb4/iw_cxgb4.h
|
|
index 20c481115a99..f52779871d04 100644
|
|
--- a/drivers/infiniband/hw/cxgb4/iw_cxgb4.h
|
|
+++ b/drivers/infiniband/hw/cxgb4/iw_cxgb4.h
|
|
@@ -185,6 +185,10 @@ struct c4iw_rdev {
|
|
struct wr_log_entry *wr_log;
|
|
int wr_log_size;
|
|
struct workqueue_struct *free_workq;
|
|
+ struct completion rqt_compl;
|
|
+ struct completion pbl_compl;
|
|
+ struct kref rqt_kref;
|
|
+ struct kref pbl_kref;
|
|
};
|
|
|
|
static inline int c4iw_fatal_error(struct c4iw_rdev *rdev)
|
|
@@ -989,7 +993,7 @@ void c4iw_pblpool_free(struct c4iw_rdev *rdev, u32 addr, int size);
|
|
u32 c4iw_ocqp_pool_alloc(struct c4iw_rdev *rdev, int size);
|
|
void c4iw_ocqp_pool_free(struct c4iw_rdev *rdev, u32 addr, int size);
|
|
int c4iw_ofld_send(struct c4iw_rdev *rdev, struct sk_buff *skb);
|
|
-void c4iw_flush_hw_cq(struct c4iw_cq *chp);
|
|
+void c4iw_flush_hw_cq(struct c4iw_cq *chp, struct c4iw_qp *flush_qhp);
|
|
void c4iw_count_rcqes(struct t4_cq *cq, struct t4_wq *wq, int *count);
|
|
int c4iw_ep_disconnect(struct c4iw_ep *ep, int abrupt, gfp_t gfp);
|
|
int c4iw_flush_rq(struct t4_wq *wq, struct t4_cq *cq, int count);
|
|
diff --git a/drivers/infiniband/hw/cxgb4/qp.c b/drivers/infiniband/hw/cxgb4/qp.c
|
|
index f311ea73c806..a8a8f65a1e51 100644
|
|
--- a/drivers/infiniband/hw/cxgb4/qp.c
|
|
+++ b/drivers/infiniband/hw/cxgb4/qp.c
|
|
@@ -1349,12 +1349,12 @@ static void __flush_qp(struct c4iw_qp *qhp, struct c4iw_cq *rchp,
|
|
qhp->wq.flushed = 1;
|
|
t4_set_wq_in_error(&qhp->wq);
|
|
|
|
- c4iw_flush_hw_cq(rchp);
|
|
+ c4iw_flush_hw_cq(rchp, qhp);
|
|
c4iw_count_rcqes(&rchp->cq, &qhp->wq, &count);
|
|
rq_flushed = c4iw_flush_rq(&qhp->wq, &rchp->cq, count);
|
|
|
|
if (schp != rchp)
|
|
- c4iw_flush_hw_cq(schp);
|
|
+ c4iw_flush_hw_cq(schp, qhp);
|
|
sq_flushed = c4iw_flush_sq(qhp);
|
|
|
|
spin_unlock(&qhp->lock);
|
|
diff --git a/drivers/infiniband/hw/cxgb4/resource.c b/drivers/infiniband/hw/cxgb4/resource.c
|
|
index 8ff0cbe5cb16..755a77a9178b 100644
|
|
--- a/drivers/infiniband/hw/cxgb4/resource.c
|
|
+++ b/drivers/infiniband/hw/cxgb4/resource.c
|
|
@@ -260,12 +260,22 @@ u32 c4iw_pblpool_alloc(struct c4iw_rdev *rdev, int size)
|
|
rdev->stats.pbl.cur += roundup(size, 1 << MIN_PBL_SHIFT);
|
|
if (rdev->stats.pbl.cur > rdev->stats.pbl.max)
|
|
rdev->stats.pbl.max = rdev->stats.pbl.cur;
|
|
+ kref_get(&rdev->pbl_kref);
|
|
} else
|
|
rdev->stats.pbl.fail++;
|
|
mutex_unlock(&rdev->stats.lock);
|
|
return (u32)addr;
|
|
}
|
|
|
|
+static void destroy_pblpool(struct kref *kref)
|
|
+{
|
|
+ struct c4iw_rdev *rdev;
|
|
+
|
|
+ rdev = container_of(kref, struct c4iw_rdev, pbl_kref);
|
|
+ gen_pool_destroy(rdev->pbl_pool);
|
|
+ complete(&rdev->pbl_compl);
|
|
+}
|
|
+
|
|
void c4iw_pblpool_free(struct c4iw_rdev *rdev, u32 addr, int size)
|
|
{
|
|
pr_debug("%s addr 0x%x size %d\n", __func__, addr, size);
|
|
@@ -273,6 +283,7 @@ void c4iw_pblpool_free(struct c4iw_rdev *rdev, u32 addr, int size)
|
|
rdev->stats.pbl.cur -= roundup(size, 1 << MIN_PBL_SHIFT);
|
|
mutex_unlock(&rdev->stats.lock);
|
|
gen_pool_free(rdev->pbl_pool, (unsigned long)addr, size);
|
|
+ kref_put(&rdev->pbl_kref, destroy_pblpool);
|
|
}
|
|
|
|
int c4iw_pblpool_create(struct c4iw_rdev *rdev)
|
|
@@ -310,7 +321,7 @@ int c4iw_pblpool_create(struct c4iw_rdev *rdev)
|
|
|
|
void c4iw_pblpool_destroy(struct c4iw_rdev *rdev)
|
|
{
|
|
- gen_pool_destroy(rdev->pbl_pool);
|
|
+ kref_put(&rdev->pbl_kref, destroy_pblpool);
|
|
}
|
|
|
|
/*
|
|
@@ -331,12 +342,22 @@ u32 c4iw_rqtpool_alloc(struct c4iw_rdev *rdev, int size)
|
|
rdev->stats.rqt.cur += roundup(size << 6, 1 << MIN_RQT_SHIFT);
|
|
if (rdev->stats.rqt.cur > rdev->stats.rqt.max)
|
|
rdev->stats.rqt.max = rdev->stats.rqt.cur;
|
|
+ kref_get(&rdev->rqt_kref);
|
|
} else
|
|
rdev->stats.rqt.fail++;
|
|
mutex_unlock(&rdev->stats.lock);
|
|
return (u32)addr;
|
|
}
|
|
|
|
+static void destroy_rqtpool(struct kref *kref)
|
|
+{
|
|
+ struct c4iw_rdev *rdev;
|
|
+
|
|
+ rdev = container_of(kref, struct c4iw_rdev, rqt_kref);
|
|
+ gen_pool_destroy(rdev->rqt_pool);
|
|
+ complete(&rdev->rqt_compl);
|
|
+}
|
|
+
|
|
void c4iw_rqtpool_free(struct c4iw_rdev *rdev, u32 addr, int size)
|
|
{
|
|
pr_debug("%s addr 0x%x size %d\n", __func__, addr, size << 6);
|
|
@@ -344,6 +365,7 @@ void c4iw_rqtpool_free(struct c4iw_rdev *rdev, u32 addr, int size)
|
|
rdev->stats.rqt.cur -= roundup(size << 6, 1 << MIN_RQT_SHIFT);
|
|
mutex_unlock(&rdev->stats.lock);
|
|
gen_pool_free(rdev->rqt_pool, (unsigned long)addr, size << 6);
|
|
+ kref_put(&rdev->rqt_kref, destroy_rqtpool);
|
|
}
|
|
|
|
int c4iw_rqtpool_create(struct c4iw_rdev *rdev)
|
|
@@ -380,7 +402,7 @@ int c4iw_rqtpool_create(struct c4iw_rdev *rdev)
|
|
|
|
void c4iw_rqtpool_destroy(struct c4iw_rdev *rdev)
|
|
{
|
|
- gen_pool_destroy(rdev->rqt_pool);
|
|
+ kref_put(&rdev->rqt_kref, destroy_rqtpool);
|
|
}
|
|
|
|
/*
|
|
diff --git a/drivers/infiniband/hw/hfi1/driver.c b/drivers/infiniband/hw/hfi1/driver.c
|
|
index 7372cc00cb2d..72c836b826ca 100644
|
|
--- a/drivers/infiniband/hw/hfi1/driver.c
|
|
+++ b/drivers/infiniband/hw/hfi1/driver.c
|
|
@@ -437,31 +437,43 @@ void hfi1_process_ecn_slowpath(struct rvt_qp *qp, struct hfi1_packet *pkt,
|
|
bool do_cnp)
|
|
{
|
|
struct hfi1_ibport *ibp = to_iport(qp->ibqp.device, qp->port_num);
|
|
+ struct hfi1_pportdata *ppd = ppd_from_ibp(ibp);
|
|
struct ib_other_headers *ohdr = pkt->ohdr;
|
|
struct ib_grh *grh = pkt->grh;
|
|
u32 rqpn = 0, bth1;
|
|
- u16 pkey, rlid, dlid = ib_get_dlid(pkt->hdr);
|
|
+ u16 pkey;
|
|
+ u32 rlid, slid, dlid = 0;
|
|
u8 hdr_type, sc, svc_type;
|
|
bool is_mcast = false;
|
|
|
|
+ /* can be called from prescan */
|
|
if (pkt->etype == RHF_RCV_TYPE_BYPASS) {
|
|
is_mcast = hfi1_is_16B_mcast(dlid);
|
|
pkey = hfi1_16B_get_pkey(pkt->hdr);
|
|
sc = hfi1_16B_get_sc(pkt->hdr);
|
|
+ dlid = hfi1_16B_get_dlid(pkt->hdr);
|
|
+ slid = hfi1_16B_get_slid(pkt->hdr);
|
|
hdr_type = HFI1_PKT_TYPE_16B;
|
|
} else {
|
|
is_mcast = (dlid > be16_to_cpu(IB_MULTICAST_LID_BASE)) &&
|
|
(dlid != be16_to_cpu(IB_LID_PERMISSIVE));
|
|
pkey = ib_bth_get_pkey(ohdr);
|
|
sc = hfi1_9B_get_sc5(pkt->hdr, pkt->rhf);
|
|
+ dlid = ib_get_dlid(pkt->hdr);
|
|
+ slid = ib_get_slid(pkt->hdr);
|
|
hdr_type = HFI1_PKT_TYPE_9B;
|
|
}
|
|
|
|
switch (qp->ibqp.qp_type) {
|
|
+ case IB_QPT_UD:
|
|
+ dlid = ppd->lid;
|
|
+ rlid = slid;
|
|
+ rqpn = ib_get_sqpn(pkt->ohdr);
|
|
+ svc_type = IB_CC_SVCTYPE_UD;
|
|
+ break;
|
|
case IB_QPT_SMI:
|
|
case IB_QPT_GSI:
|
|
- case IB_QPT_UD:
|
|
- rlid = ib_get_slid(pkt->hdr);
|
|
+ rlid = slid;
|
|
rqpn = ib_get_sqpn(pkt->ohdr);
|
|
svc_type = IB_CC_SVCTYPE_UD;
|
|
break;
|
|
@@ -486,7 +498,6 @@ void hfi1_process_ecn_slowpath(struct rvt_qp *qp, struct hfi1_packet *pkt,
|
|
dlid, rlid, sc, grh);
|
|
|
|
if (!is_mcast && (bth1 & IB_BECN_SMASK)) {
|
|
- struct hfi1_pportdata *ppd = ppd_from_ibp(ibp);
|
|
u32 lqpn = bth1 & RVT_QPN_MASK;
|
|
u8 sl = ibp->sc_to_sl[sc];
|
|
|
|
diff --git a/drivers/infiniband/hw/hfi1/hfi.h b/drivers/infiniband/hw/hfi1/hfi.h
|
|
index dc9c951ef946..ccc7b9b8637e 100644
|
|
--- a/drivers/infiniband/hw/hfi1/hfi.h
|
|
+++ b/drivers/infiniband/hw/hfi1/hfi.h
|
|
@@ -1523,13 +1523,13 @@ void set_link_ipg(struct hfi1_pportdata *ppd);
|
|
void process_becn(struct hfi1_pportdata *ppd, u8 sl, u32 rlid, u32 lqpn,
|
|
u32 rqpn, u8 svc_type);
|
|
void return_cnp(struct hfi1_ibport *ibp, struct rvt_qp *qp, u32 remote_qpn,
|
|
- u32 pkey, u32 slid, u32 dlid, u8 sc5,
|
|
+ u16 pkey, u32 slid, u32 dlid, u8 sc5,
|
|
const struct ib_grh *old_grh);
|
|
void return_cnp_16B(struct hfi1_ibport *ibp, struct rvt_qp *qp,
|
|
- u32 remote_qpn, u32 pkey, u32 slid, u32 dlid,
|
|
+ u32 remote_qpn, u16 pkey, u32 slid, u32 dlid,
|
|
u8 sc5, const struct ib_grh *old_grh);
|
|
typedef void (*hfi1_handle_cnp)(struct hfi1_ibport *ibp, struct rvt_qp *qp,
|
|
- u32 remote_qpn, u32 pkey, u32 slid, u32 dlid,
|
|
+ u32 remote_qpn, u16 pkey, u32 slid, u32 dlid,
|
|
u8 sc5, const struct ib_grh *old_grh);
|
|
|
|
/* We support only two types - 9B and 16B for now */
|
|
@@ -2431,7 +2431,7 @@ static inline void hfi1_make_16b_hdr(struct hfi1_16b_header *hdr,
|
|
((slid >> OPA_16B_SLID_SHIFT) << OPA_16B_SLID_HIGH_SHIFT);
|
|
lrh2 = (lrh2 & ~OPA_16B_DLID_MASK) |
|
|
((dlid >> OPA_16B_DLID_SHIFT) << OPA_16B_DLID_HIGH_SHIFT);
|
|
- lrh2 = (lrh2 & ~OPA_16B_PKEY_MASK) | (pkey << OPA_16B_PKEY_SHIFT);
|
|
+ lrh2 = (lrh2 & ~OPA_16B_PKEY_MASK) | ((u32)pkey << OPA_16B_PKEY_SHIFT);
|
|
lrh2 = (lrh2 & ~OPA_16B_L4_MASK) | l4;
|
|
|
|
hdr->lrh[0] = lrh0;
|
|
diff --git a/drivers/infiniband/hw/hfi1/init.c b/drivers/infiniband/hw/hfi1/init.c
|
|
index d4fc8795cdf6..d5c6ff843fc6 100644
|
|
--- a/drivers/infiniband/hw/hfi1/init.c
|
|
+++ b/drivers/infiniband/hw/hfi1/init.c
|
|
@@ -1234,6 +1234,8 @@ struct hfi1_devdata *hfi1_alloc_devdata(struct pci_dev *pdev, size_t extra)
|
|
return ERR_PTR(-ENOMEM);
|
|
dd->num_pports = nports;
|
|
dd->pport = (struct hfi1_pportdata *)(dd + 1);
|
|
+ dd->pcidev = pdev;
|
|
+ pci_set_drvdata(pdev, dd);
|
|
|
|
INIT_LIST_HEAD(&dd->list);
|
|
idr_preload(GFP_KERNEL);
|
|
diff --git a/drivers/infiniband/hw/hfi1/pcie.c b/drivers/infiniband/hw/hfi1/pcie.c
|
|
index 8c7e7a60b715..51a5416b1da4 100644
|
|
--- a/drivers/infiniband/hw/hfi1/pcie.c
|
|
+++ b/drivers/infiniband/hw/hfi1/pcie.c
|
|
@@ -163,9 +163,6 @@ int hfi1_pcie_ddinit(struct hfi1_devdata *dd, struct pci_dev *pdev)
|
|
resource_size_t addr;
|
|
int ret = 0;
|
|
|
|
- dd->pcidev = pdev;
|
|
- pci_set_drvdata(pdev, dd);
|
|
-
|
|
addr = pci_resource_start(pdev, 0);
|
|
len = pci_resource_len(pdev, 0);
|
|
|
|
diff --git a/drivers/infiniband/hw/hfi1/ruc.c b/drivers/infiniband/hw/hfi1/ruc.c
|
|
index b3291f0fde9a..5866ccc0fc21 100644
|
|
--- a/drivers/infiniband/hw/hfi1/ruc.c
|
|
+++ b/drivers/infiniband/hw/hfi1/ruc.c
|
|
@@ -745,6 +745,20 @@ static inline void hfi1_make_ruc_bth(struct rvt_qp *qp,
|
|
ohdr->bth[2] = cpu_to_be32(bth2);
|
|
}
|
|
|
|
+/**
|
|
+ * hfi1_make_ruc_header_16B - build a 16B header
|
|
+ * @qp: the queue pair
|
|
+ * @ohdr: a pointer to the destination header memory
|
|
+ * @bth0: bth0 passed in from the RC/UC builder
|
|
+ * @bth2: bth2 passed in from the RC/UC builder
|
|
+ * @middle: non zero implies indicates ahg "could" be used
|
|
+ * @ps: the current packet state
|
|
+ *
|
|
+ * This routine may disarm ahg under these situations:
|
|
+ * - packet needs a GRH
|
|
+ * - BECN needed
|
|
+ * - migration state not IB_MIG_MIGRATED
|
|
+ */
|
|
static inline void hfi1_make_ruc_header_16B(struct rvt_qp *qp,
|
|
struct ib_other_headers *ohdr,
|
|
u32 bth0, u32 bth2, int middle,
|
|
@@ -789,6 +803,12 @@ static inline void hfi1_make_ruc_header_16B(struct rvt_qp *qp,
|
|
else
|
|
middle = 0;
|
|
|
|
+ if (qp->s_flags & RVT_S_ECN) {
|
|
+ qp->s_flags &= ~RVT_S_ECN;
|
|
+ /* we recently received a FECN, so return a BECN */
|
|
+ becn = true;
|
|
+ middle = 0;
|
|
+ }
|
|
if (middle)
|
|
build_ahg(qp, bth2);
|
|
else
|
|
@@ -796,11 +816,6 @@ static inline void hfi1_make_ruc_header_16B(struct rvt_qp *qp,
|
|
|
|
bth0 |= pkey;
|
|
bth0 |= extra_bytes << 20;
|
|
- if (qp->s_flags & RVT_S_ECN) {
|
|
- qp->s_flags &= ~RVT_S_ECN;
|
|
- /* we recently received a FECN, so return a BECN */
|
|
- becn = 1;
|
|
- }
|
|
hfi1_make_ruc_bth(qp, ohdr, bth0, bth1, bth2);
|
|
|
|
if (!ppd->lid)
|
|
@@ -818,6 +833,20 @@ static inline void hfi1_make_ruc_header_16B(struct rvt_qp *qp,
|
|
pkey, becn, 0, l4, priv->s_sc);
|
|
}
|
|
|
|
+/**
|
|
+ * hfi1_make_ruc_header_9B - build a 9B header
|
|
+ * @qp: the queue pair
|
|
+ * @ohdr: a pointer to the destination header memory
|
|
+ * @bth0: bth0 passed in from the RC/UC builder
|
|
+ * @bth2: bth2 passed in from the RC/UC builder
|
|
+ * @middle: non zero implies indicates ahg "could" be used
|
|
+ * @ps: the current packet state
|
|
+ *
|
|
+ * This routine may disarm ahg under these situations:
|
|
+ * - packet needs a GRH
|
|
+ * - BECN needed
|
|
+ * - migration state not IB_MIG_MIGRATED
|
|
+ */
|
|
static inline void hfi1_make_ruc_header_9B(struct rvt_qp *qp,
|
|
struct ib_other_headers *ohdr,
|
|
u32 bth0, u32 bth2, int middle,
|
|
@@ -853,6 +882,12 @@ static inline void hfi1_make_ruc_header_9B(struct rvt_qp *qp,
|
|
else
|
|
middle = 0;
|
|
|
|
+ if (qp->s_flags & RVT_S_ECN) {
|
|
+ qp->s_flags &= ~RVT_S_ECN;
|
|
+ /* we recently received a FECN, so return a BECN */
|
|
+ bth1 |= (IB_BECN_MASK << IB_BECN_SHIFT);
|
|
+ middle = 0;
|
|
+ }
|
|
if (middle)
|
|
build_ahg(qp, bth2);
|
|
else
|
|
@@ -860,11 +895,6 @@ static inline void hfi1_make_ruc_header_9B(struct rvt_qp *qp,
|
|
|
|
bth0 |= pkey;
|
|
bth0 |= extra_bytes << 20;
|
|
- if (qp->s_flags & RVT_S_ECN) {
|
|
- qp->s_flags &= ~RVT_S_ECN;
|
|
- /* we recently received a FECN, so return a BECN */
|
|
- bth1 |= (IB_BECN_MASK << IB_BECN_SHIFT);
|
|
- }
|
|
hfi1_make_ruc_bth(qp, ohdr, bth0, bth1, bth2);
|
|
|
|
if (!ppd->lid)
|
|
diff --git a/drivers/infiniband/hw/hfi1/ud.c b/drivers/infiniband/hw/hfi1/ud.c
|
|
index 2ba74fdd6f15..38c7d9c456fe 100644
|
|
--- a/drivers/infiniband/hw/hfi1/ud.c
|
|
+++ b/drivers/infiniband/hw/hfi1/ud.c
|
|
@@ -630,7 +630,7 @@ int hfi1_lookup_pkey_idx(struct hfi1_ibport *ibp, u16 pkey)
|
|
}
|
|
|
|
void return_cnp_16B(struct hfi1_ibport *ibp, struct rvt_qp *qp,
|
|
- u32 remote_qpn, u32 pkey, u32 slid, u32 dlid,
|
|
+ u32 remote_qpn, u16 pkey, u32 slid, u32 dlid,
|
|
u8 sc5, const struct ib_grh *old_grh)
|
|
{
|
|
u64 pbc, pbc_flags = 0;
|
|
@@ -688,7 +688,7 @@ void return_cnp_16B(struct hfi1_ibport *ibp, struct rvt_qp *qp,
|
|
}
|
|
|
|
void return_cnp(struct hfi1_ibport *ibp, struct rvt_qp *qp, u32 remote_qpn,
|
|
- u32 pkey, u32 slid, u32 dlid, u8 sc5,
|
|
+ u16 pkey, u32 slid, u32 dlid, u8 sc5,
|
|
const struct ib_grh *old_grh)
|
|
{
|
|
u64 pbc, pbc_flags = 0;
|
|
diff --git a/drivers/infiniband/hw/mlx5/mr.c b/drivers/infiniband/hw/mlx5/mr.c
|
|
index 538f1784863a..9866c5d1b99f 100644
|
|
--- a/drivers/infiniband/hw/mlx5/mr.c
|
|
+++ b/drivers/infiniband/hw/mlx5/mr.c
|
|
@@ -833,25 +833,28 @@ static int mr_umem_get(struct ib_pd *pd, u64 start, u64 length,
|
|
int *order)
|
|
{
|
|
struct mlx5_ib_dev *dev = to_mdev(pd->device);
|
|
+ struct ib_umem *u;
|
|
int err;
|
|
|
|
- *umem = ib_umem_get(pd->uobject->context, start, length,
|
|
- access_flags, 0);
|
|
- err = PTR_ERR_OR_ZERO(*umem);
|
|
+ *umem = NULL;
|
|
+
|
|
+ u = ib_umem_get(pd->uobject->context, start, length, access_flags, 0);
|
|
+ err = PTR_ERR_OR_ZERO(u);
|
|
if (err) {
|
|
- *umem = NULL;
|
|
- mlx5_ib_err(dev, "umem get failed (%d)\n", err);
|
|
+ mlx5_ib_dbg(dev, "umem get failed (%d)\n", err);
|
|
return err;
|
|
}
|
|
|
|
- mlx5_ib_cont_pages(*umem, start, MLX5_MKEY_PAGE_SHIFT_MASK, npages,
|
|
+ mlx5_ib_cont_pages(u, start, MLX5_MKEY_PAGE_SHIFT_MASK, npages,
|
|
page_shift, ncont, order);
|
|
if (!*npages) {
|
|
mlx5_ib_warn(dev, "avoid zero region\n");
|
|
- ib_umem_release(*umem);
|
|
+ ib_umem_release(u);
|
|
return -EINVAL;
|
|
}
|
|
|
|
+ *umem = u;
|
|
+
|
|
mlx5_ib_dbg(dev, "npages %d, ncont %d, order %d, page_shift %d\n",
|
|
*npages, *ncont, *order, *page_shift);
|
|
|
|
@@ -1340,13 +1343,12 @@ int mlx5_ib_rereg_user_mr(struct ib_mr *ib_mr, int flags, u64 start,
|
|
int access_flags = flags & IB_MR_REREG_ACCESS ?
|
|
new_access_flags :
|
|
mr->access_flags;
|
|
- u64 addr = (flags & IB_MR_REREG_TRANS) ? virt_addr : mr->umem->address;
|
|
- u64 len = (flags & IB_MR_REREG_TRANS) ? length : mr->umem->length;
|
|
int page_shift = 0;
|
|
int upd_flags = 0;
|
|
int npages = 0;
|
|
int ncont = 0;
|
|
int order = 0;
|
|
+ u64 addr, len;
|
|
int err;
|
|
|
|
mlx5_ib_dbg(dev, "start 0x%llx, virt_addr 0x%llx, length 0x%llx, access_flags 0x%x\n",
|
|
@@ -1354,6 +1356,17 @@ int mlx5_ib_rereg_user_mr(struct ib_mr *ib_mr, int flags, u64 start,
|
|
|
|
atomic_sub(mr->npages, &dev->mdev->priv.reg_pages);
|
|
|
|
+ if (!mr->umem)
|
|
+ return -EINVAL;
|
|
+
|
|
+ if (flags & IB_MR_REREG_TRANS) {
|
|
+ addr = virt_addr;
|
|
+ len = length;
|
|
+ } else {
|
|
+ addr = mr->umem->address;
|
|
+ len = mr->umem->length;
|
|
+ }
|
|
+
|
|
if (flags != IB_MR_REREG_PD) {
|
|
/*
|
|
* Replace umem. This needs to be done whether or not UMR is
|
|
@@ -1361,6 +1374,7 @@ int mlx5_ib_rereg_user_mr(struct ib_mr *ib_mr, int flags, u64 start,
|
|
*/
|
|
flags |= IB_MR_REREG_TRANS;
|
|
ib_umem_release(mr->umem);
|
|
+ mr->umem = NULL;
|
|
err = mr_umem_get(pd, addr, len, access_flags, &mr->umem,
|
|
&npages, &page_shift, &ncont, &order);
|
|
if (err < 0) {
|
|
diff --git a/drivers/infiniband/hw/mlx5/qp.c b/drivers/infiniband/hw/mlx5/qp.c
|
|
index 464c78f8cec9..749fe906a5b6 100644
|
|
--- a/drivers/infiniband/hw/mlx5/qp.c
|
|
+++ b/drivers/infiniband/hw/mlx5/qp.c
|
|
@@ -256,7 +256,11 @@ static int set_rq_size(struct mlx5_ib_dev *dev, struct ib_qp_cap *cap,
|
|
} else {
|
|
if (ucmd) {
|
|
qp->rq.wqe_cnt = ucmd->rq_wqe_count;
|
|
+ if (ucmd->rq_wqe_shift > BITS_PER_BYTE * sizeof(ucmd->rq_wqe_shift))
|
|
+ return -EINVAL;
|
|
qp->rq.wqe_shift = ucmd->rq_wqe_shift;
|
|
+ if ((1 << qp->rq.wqe_shift) / sizeof(struct mlx5_wqe_data_seg) < qp->wq_sig)
|
|
+ return -EINVAL;
|
|
qp->rq.max_gs = (1 << qp->rq.wqe_shift) / sizeof(struct mlx5_wqe_data_seg) - qp->wq_sig;
|
|
qp->rq.max_post = qp->rq.wqe_cnt;
|
|
} else {
|
|
@@ -2195,18 +2199,18 @@ enum {
|
|
|
|
static int ib_rate_to_mlx5(struct mlx5_ib_dev *dev, u8 rate)
|
|
{
|
|
- if (rate == IB_RATE_PORT_CURRENT) {
|
|
+ if (rate == IB_RATE_PORT_CURRENT)
|
|
return 0;
|
|
- } else if (rate < IB_RATE_2_5_GBPS || rate > IB_RATE_300_GBPS) {
|
|
+
|
|
+ if (rate < IB_RATE_2_5_GBPS || rate > IB_RATE_300_GBPS)
|
|
return -EINVAL;
|
|
- } else {
|
|
- while (rate != IB_RATE_2_5_GBPS &&
|
|
- !(1 << (rate + MLX5_STAT_RATE_OFFSET) &
|
|
- MLX5_CAP_GEN(dev->mdev, stat_rate_support)))
|
|
- --rate;
|
|
- }
|
|
|
|
- return rate + MLX5_STAT_RATE_OFFSET;
|
|
+ while (rate != IB_RATE_PORT_CURRENT &&
|
|
+ !(1 << (rate + MLX5_STAT_RATE_OFFSET) &
|
|
+ MLX5_CAP_GEN(dev->mdev, stat_rate_support)))
|
|
+ --rate;
|
|
+
|
|
+ return rate ? rate + MLX5_STAT_RATE_OFFSET : rate;
|
|
}
|
|
|
|
static int modify_raw_packet_eth_prio(struct mlx5_core_dev *dev,
|
|
diff --git a/drivers/infiniband/ulp/ipoib/ipoib_cm.c b/drivers/infiniband/ulp/ipoib/ipoib_cm.c
|
|
index 7774654c2ccb..7a5ed5a5391e 100644
|
|
--- a/drivers/infiniband/ulp/ipoib/ipoib_cm.c
|
|
+++ b/drivers/infiniband/ulp/ipoib/ipoib_cm.c
|
|
@@ -1447,8 +1447,7 @@ void ipoib_cm_skb_too_long(struct net_device *dev, struct sk_buff *skb,
|
|
struct ipoib_dev_priv *priv = ipoib_priv(dev);
|
|
int e = skb_queue_empty(&priv->cm.skb_queue);
|
|
|
|
- if (skb_dst(skb))
|
|
- skb_dst(skb)->ops->update_pmtu(skb_dst(skb), NULL, skb, mtu);
|
|
+ skb_dst_update_pmtu(skb, mtu);
|
|
|
|
skb_queue_tail(&priv->cm.skb_queue, skb);
|
|
if (e)
|
|
diff --git a/drivers/input/input-leds.c b/drivers/input/input-leds.c
|
|
index 766bf2660116..5f04b2d94635 100644
|
|
--- a/drivers/input/input-leds.c
|
|
+++ b/drivers/input/input-leds.c
|
|
@@ -88,6 +88,7 @@ static int input_leds_connect(struct input_handler *handler,
|
|
const struct input_device_id *id)
|
|
{
|
|
struct input_leds *leds;
|
|
+ struct input_led *led;
|
|
unsigned int num_leds;
|
|
unsigned int led_code;
|
|
int led_no;
|
|
@@ -119,14 +120,13 @@ static int input_leds_connect(struct input_handler *handler,
|
|
|
|
led_no = 0;
|
|
for_each_set_bit(led_code, dev->ledbit, LED_CNT) {
|
|
- struct input_led *led = &leds->leds[led_no];
|
|
+ if (!input_led_info[led_code].name)
|
|
+ continue;
|
|
|
|
+ led = &leds->leds[led_no];
|
|
led->handle = &leds->handle;
|
|
led->code = led_code;
|
|
|
|
- if (!input_led_info[led_code].name)
|
|
- continue;
|
|
-
|
|
led->cdev.name = kasprintf(GFP_KERNEL, "%s::%s",
|
|
dev_name(&dev->dev),
|
|
input_led_info[led_code].name);
|
|
diff --git a/drivers/input/touchscreen/atmel_mxt_ts.c b/drivers/input/touchscreen/atmel_mxt_ts.c
|
|
index 7659bc48f1db..429b694405c7 100644
|
|
--- a/drivers/input/touchscreen/atmel_mxt_ts.c
|
|
+++ b/drivers/input/touchscreen/atmel_mxt_ts.c
|
|
@@ -3030,6 +3030,15 @@ static const struct dmi_system_id mxt_dmi_table[] = {
|
|
},
|
|
.driver_data = samus_platform_data,
|
|
},
|
|
+ {
|
|
+ /* Samsung Chromebook Pro */
|
|
+ .ident = "Samsung Chromebook Pro",
|
|
+ .matches = {
|
|
+ DMI_MATCH(DMI_SYS_VENDOR, "Google"),
|
|
+ DMI_MATCH(DMI_PRODUCT_NAME, "Caroline"),
|
|
+ },
|
|
+ .driver_data = samus_platform_data,
|
|
+ },
|
|
{
|
|
/* Other Google Chromebooks */
|
|
.ident = "Chromebook",
|
|
diff --git a/drivers/irqchip/qcom-irq-combiner.c b/drivers/irqchip/qcom-irq-combiner.c
|
|
index f31265937439..7f0c0be322e0 100644
|
|
--- a/drivers/irqchip/qcom-irq-combiner.c
|
|
+++ b/drivers/irqchip/qcom-irq-combiner.c
|
|
@@ -1,4 +1,4 @@
|
|
-/* Copyright (c) 2015-2016, The Linux Foundation. All rights reserved.
|
|
+/* Copyright (c) 2015-2018, The Linux Foundation. All rights reserved.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 and
|
|
@@ -68,7 +68,7 @@ static void combiner_handle_irq(struct irq_desc *desc)
|
|
|
|
bit = readl_relaxed(combiner->regs[reg].addr);
|
|
status = bit & combiner->regs[reg].enabled;
|
|
- if (!status)
|
|
+ if (bit && !status)
|
|
pr_warn_ratelimited("Unexpected IRQ on CPU%d: (%08x %08lx %p)\n",
|
|
smp_processor_id(), bit,
|
|
combiner->regs[reg].enabled,
|
|
diff --git a/drivers/net/geneve.c b/drivers/net/geneve.c
|
|
index b9d8d71a6ecc..fbc825ac97ab 100644
|
|
--- a/drivers/net/geneve.c
|
|
+++ b/drivers/net/geneve.c
|
|
@@ -825,6 +825,13 @@ static int geneve_xmit_skb(struct sk_buff *skb, struct net_device *dev,
|
|
if (IS_ERR(rt))
|
|
return PTR_ERR(rt);
|
|
|
|
+ if (skb_dst(skb)) {
|
|
+ int mtu = dst_mtu(&rt->dst) - sizeof(struct iphdr) -
|
|
+ GENEVE_BASE_HLEN - info->options_len - 14;
|
|
+
|
|
+ skb_dst_update_pmtu(skb, mtu);
|
|
+ }
|
|
+
|
|
sport = udp_flow_src_port(geneve->net, skb, 1, USHRT_MAX, true);
|
|
if (geneve->collect_md) {
|
|
tos = ip_tunnel_ecn_encap(key->tos, ip_hdr(skb), skb);
|
|
@@ -864,6 +871,13 @@ static int geneve6_xmit_skb(struct sk_buff *skb, struct net_device *dev,
|
|
if (IS_ERR(dst))
|
|
return PTR_ERR(dst);
|
|
|
|
+ if (skb_dst(skb)) {
|
|
+ int mtu = dst_mtu(dst) - sizeof(struct ipv6hdr) -
|
|
+ GENEVE_BASE_HLEN - info->options_len - 14;
|
|
+
|
|
+ skb_dst_update_pmtu(skb, mtu);
|
|
+ }
|
|
+
|
|
sport = udp_flow_src_port(geneve->net, skb, 1, USHRT_MAX, true);
|
|
if (geneve->collect_md) {
|
|
prio = ip_tunnel_ecn_encap(key->tos, ip_hdr(skb), skb);
|
|
diff --git a/drivers/net/usb/qmi_wwan.c b/drivers/net/usb/qmi_wwan.c
|
|
index 5d3d31f5933b..1aad0568dcc6 100644
|
|
--- a/drivers/net/usb/qmi_wwan.c
|
|
+++ b/drivers/net/usb/qmi_wwan.c
|
|
@@ -1098,6 +1098,7 @@ static const struct usb_device_id products[] = {
|
|
{QMI_FIXED_INTF(0x05c6, 0x9080, 8)},
|
|
{QMI_FIXED_INTF(0x05c6, 0x9083, 3)},
|
|
{QMI_FIXED_INTF(0x05c6, 0x9084, 4)},
|
|
+ {QMI_FIXED_INTF(0x05c6, 0x90b2, 3)}, /* ublox R410M */
|
|
{QMI_FIXED_INTF(0x05c6, 0x920d, 0)},
|
|
{QMI_FIXED_INTF(0x05c6, 0x920d, 5)},
|
|
{QMI_QUIRK_SET_DTR(0x05c6, 0x9625, 4)}, /* YUGA CLM920-NC5 */
|
|
diff --git a/drivers/net/vxlan.c b/drivers/net/vxlan.c
|
|
index bb44f0c6891f..3d9c5b35a4a7 100644
|
|
--- a/drivers/net/vxlan.c
|
|
+++ b/drivers/net/vxlan.c
|
|
@@ -2158,8 +2158,7 @@ static void vxlan_xmit_one(struct sk_buff *skb, struct net_device *dev,
|
|
if (skb_dst(skb)) {
|
|
int mtu = dst_mtu(ndst) - VXLAN_HEADROOM;
|
|
|
|
- skb_dst(skb)->ops->update_pmtu(skb_dst(skb), NULL,
|
|
- skb, mtu);
|
|
+ skb_dst_update_pmtu(skb, mtu);
|
|
}
|
|
|
|
tos = ip_tunnel_ecn_encap(tos, old_iph, skb);
|
|
@@ -2200,8 +2199,7 @@ static void vxlan_xmit_one(struct sk_buff *skb, struct net_device *dev,
|
|
if (skb_dst(skb)) {
|
|
int mtu = dst_mtu(ndst) - VXLAN6_HEADROOM;
|
|
|
|
- skb_dst(skb)->ops->update_pmtu(skb_dst(skb), NULL,
|
|
- skb, mtu);
|
|
+ skb_dst_update_pmtu(skb, mtu);
|
|
}
|
|
|
|
tos = ip_tunnel_ecn_encap(tos, old_iph, skb);
|
|
diff --git a/drivers/net/wireless/realtek/rtlwifi/btcoexist/halbtcoutsrc.c b/drivers/net/wireless/realtek/rtlwifi/btcoexist/halbtcoutsrc.c
|
|
index b5e9877d935c..a9e1239ff21b 100644
|
|
--- a/drivers/net/wireless/realtek/rtlwifi/btcoexist/halbtcoutsrc.c
|
|
+++ b/drivers/net/wireless/realtek/rtlwifi/btcoexist/halbtcoutsrc.c
|
|
@@ -173,16 +173,6 @@ static u8 halbtc_get_wifi_central_chnl(struct btc_coexist *btcoexist)
|
|
|
|
u8 rtl_get_hwpg_single_ant_path(struct rtl_priv *rtlpriv)
|
|
{
|
|
- struct rtl_mod_params *mod_params = rtlpriv->cfg->mod_params;
|
|
-
|
|
- /* override ant_num / ant_path */
|
|
- if (mod_params->ant_sel) {
|
|
- rtlpriv->btcoexist.btc_info.ant_num =
|
|
- (mod_params->ant_sel == 1 ? ANT_X2 : ANT_X1);
|
|
-
|
|
- rtlpriv->btcoexist.btc_info.single_ant_path =
|
|
- (mod_params->ant_sel == 1 ? 0 : 1);
|
|
- }
|
|
return rtlpriv->btcoexist.btc_info.single_ant_path;
|
|
}
|
|
|
|
@@ -193,7 +183,6 @@ u8 rtl_get_hwpg_bt_type(struct rtl_priv *rtlpriv)
|
|
|
|
u8 rtl_get_hwpg_ant_num(struct rtl_priv *rtlpriv)
|
|
{
|
|
- struct rtl_mod_params *mod_params = rtlpriv->cfg->mod_params;
|
|
u8 num;
|
|
|
|
if (rtlpriv->btcoexist.btc_info.ant_num == ANT_X2)
|
|
@@ -201,10 +190,6 @@ u8 rtl_get_hwpg_ant_num(struct rtl_priv *rtlpriv)
|
|
else
|
|
num = 1;
|
|
|
|
- /* override ant_num / ant_path */
|
|
- if (mod_params->ant_sel)
|
|
- num = (mod_params->ant_sel == 1 ? ANT_X2 : ANT_X1) + 1;
|
|
-
|
|
return num;
|
|
}
|
|
|
|
diff --git a/drivers/net/wireless/realtek/rtlwifi/btcoexist/halbtcoutsrc.h b/drivers/net/wireless/realtek/rtlwifi/btcoexist/halbtcoutsrc.h
|
|
index f9b87c12db09..ed1725cf091c 100644
|
|
--- a/drivers/net/wireless/realtek/rtlwifi/btcoexist/halbtcoutsrc.h
|
|
+++ b/drivers/net/wireless/realtek/rtlwifi/btcoexist/halbtcoutsrc.h
|
|
@@ -601,6 +601,7 @@ extern struct btc_coexist gl_bt_coexist;
|
|
|
|
bool exhalbtc_initlize_variables(void);
|
|
bool exhalbtc_bind_bt_coex_withadapter(void *adapter);
|
|
+void exhalbtc_power_on_setting(struct btc_coexist *btcoexist);
|
|
void exhalbtc_init_hw_config(struct btc_coexist *btcoexist, bool wifi_only);
|
|
void exhalbtc_init_coex_dm(struct btc_coexist *btcoexist);
|
|
void exhalbtc_ips_notify(struct btc_coexist *btcoexist, u8 type);
|
|
diff --git a/drivers/net/wireless/realtek/rtlwifi/btcoexist/rtl_btc.c b/drivers/net/wireless/realtek/rtlwifi/btcoexist/rtl_btc.c
|
|
index 7d296a401b6f..c394e0412982 100644
|
|
--- a/drivers/net/wireless/realtek/rtlwifi/btcoexist/rtl_btc.c
|
|
+++ b/drivers/net/wireless/realtek/rtlwifi/btcoexist/rtl_btc.c
|
|
@@ -32,6 +32,7 @@
|
|
static struct rtl_btc_ops rtl_btc_operation = {
|
|
.btc_init_variables = rtl_btc_init_variables,
|
|
.btc_init_hal_vars = rtl_btc_init_hal_vars,
|
|
+ .btc_power_on_setting = rtl_btc_power_on_setting,
|
|
.btc_init_hw_config = rtl_btc_init_hw_config,
|
|
.btc_ips_notify = rtl_btc_ips_notify,
|
|
.btc_lps_notify = rtl_btc_lps_notify,
|
|
@@ -110,6 +111,11 @@ void rtl_btc_init_hal_vars(struct rtl_priv *rtlpriv)
|
|
*/
|
|
}
|
|
|
|
+void rtl_btc_power_on_setting(struct rtl_priv *rtlpriv)
|
|
+{
|
|
+ exhalbtc_power_on_setting(&gl_bt_coexist);
|
|
+}
|
|
+
|
|
void rtl_btc_init_hw_config(struct rtl_priv *rtlpriv)
|
|
{
|
|
u8 bt_exist;
|
|
diff --git a/drivers/net/wireless/realtek/rtlwifi/btcoexist/rtl_btc.h b/drivers/net/wireless/realtek/rtlwifi/btcoexist/rtl_btc.h
|
|
index ac1253c46f44..c2735e4fa5d3 100644
|
|
--- a/drivers/net/wireless/realtek/rtlwifi/btcoexist/rtl_btc.h
|
|
+++ b/drivers/net/wireless/realtek/rtlwifi/btcoexist/rtl_btc.h
|
|
@@ -29,6 +29,7 @@
|
|
|
|
void rtl_btc_init_variables(struct rtl_priv *rtlpriv);
|
|
void rtl_btc_init_hal_vars(struct rtl_priv *rtlpriv);
|
|
+void rtl_btc_power_on_setting(struct rtl_priv *rtlpriv);
|
|
void rtl_btc_init_hw_config(struct rtl_priv *rtlpriv);
|
|
void rtl_btc_ips_notify(struct rtl_priv *rtlpriv, u8 type);
|
|
void rtl_btc_lps_notify(struct rtl_priv *rtlpriv, u8 type);
|
|
diff --git a/drivers/net/wireless/realtek/rtlwifi/rtl8723be/hw.c b/drivers/net/wireless/realtek/rtlwifi/rtl8723be/hw.c
|
|
index 0034ebd3e5ba..f019eebe41d1 100644
|
|
--- a/drivers/net/wireless/realtek/rtlwifi/rtl8723be/hw.c
|
|
+++ b/drivers/net/wireless/realtek/rtlwifi/rtl8723be/hw.c
|
|
@@ -846,6 +846,9 @@ static bool _rtl8723be_init_mac(struct ieee80211_hw *hw)
|
|
return false;
|
|
}
|
|
|
|
+ if (rtlpriv->cfg->ops->get_btc_status())
|
|
+ rtlpriv->btcoexist.btc_ops->btc_power_on_setting(rtlpriv);
|
|
+
|
|
bytetmp = rtl_read_byte(rtlpriv, REG_MULTI_FUNC_CTRL);
|
|
rtl_write_byte(rtlpriv, REG_MULTI_FUNC_CTRL, bytetmp | BIT(3));
|
|
|
|
@@ -2696,21 +2699,21 @@ void rtl8723be_read_bt_coexist_info_from_hwpg(struct ieee80211_hw *hw,
|
|
rtlpriv->btcoexist.btc_info.bt_type = BT_RTL8723B;
|
|
rtlpriv->btcoexist.btc_info.ant_num = (value & 0x1);
|
|
rtlpriv->btcoexist.btc_info.single_ant_path =
|
|
- (value & 0x40); /*0xc3[6]*/
|
|
+ (value & 0x40 ? ANT_AUX : ANT_MAIN); /*0xc3[6]*/
|
|
} else {
|
|
rtlpriv->btcoexist.btc_info.btcoexist = 0;
|
|
rtlpriv->btcoexist.btc_info.bt_type = BT_RTL8723B;
|
|
rtlpriv->btcoexist.btc_info.ant_num = ANT_X2;
|
|
- rtlpriv->btcoexist.btc_info.single_ant_path = 0;
|
|
+ rtlpriv->btcoexist.btc_info.single_ant_path = ANT_MAIN;
|
|
}
|
|
|
|
/* override ant_num / ant_path */
|
|
if (mod_params->ant_sel) {
|
|
rtlpriv->btcoexist.btc_info.ant_num =
|
|
- (mod_params->ant_sel == 1 ? ANT_X2 : ANT_X1);
|
|
+ (mod_params->ant_sel == 1 ? ANT_X1 : ANT_X2);
|
|
|
|
rtlpriv->btcoexist.btc_info.single_ant_path =
|
|
- (mod_params->ant_sel == 1 ? 0 : 1);
|
|
+ (mod_params->ant_sel == 1 ? ANT_AUX : ANT_MAIN);
|
|
}
|
|
}
|
|
|
|
diff --git a/drivers/net/wireless/realtek/rtlwifi/wifi.h b/drivers/net/wireless/realtek/rtlwifi/wifi.h
|
|
index 25c4e3e55921..c73ce334ce6c 100644
|
|
--- a/drivers/net/wireless/realtek/rtlwifi/wifi.h
|
|
+++ b/drivers/net/wireless/realtek/rtlwifi/wifi.h
|
|
@@ -2545,6 +2545,7 @@ struct bt_coexist_info {
|
|
struct rtl_btc_ops {
|
|
void (*btc_init_variables) (struct rtl_priv *rtlpriv);
|
|
void (*btc_init_hal_vars) (struct rtl_priv *rtlpriv);
|
|
+ void (*btc_power_on_setting)(struct rtl_priv *rtlpriv);
|
|
void (*btc_init_hw_config) (struct rtl_priv *rtlpriv);
|
|
void (*btc_ips_notify) (struct rtl_priv *rtlpriv, u8 type);
|
|
void (*btc_lps_notify)(struct rtl_priv *rtlpriv, u8 type);
|
|
@@ -2707,6 +2708,11 @@ enum bt_ant_num {
|
|
ANT_X1 = 1,
|
|
};
|
|
|
|
+enum bt_ant_path {
|
|
+ ANT_MAIN = 0,
|
|
+ ANT_AUX = 1,
|
|
+};
|
|
+
|
|
enum bt_co_type {
|
|
BT_2WIRE = 0,
|
|
BT_ISSC_3WIRE = 1,
|
|
diff --git a/drivers/platform/x86/asus-wireless.c b/drivers/platform/x86/asus-wireless.c
|
|
index d4aeac3477f5..f086469ea740 100644
|
|
--- a/drivers/platform/x86/asus-wireless.c
|
|
+++ b/drivers/platform/x86/asus-wireless.c
|
|
@@ -178,8 +178,10 @@ static int asus_wireless_remove(struct acpi_device *adev)
|
|
{
|
|
struct asus_wireless_data *data = acpi_driver_data(adev);
|
|
|
|
- if (data->wq)
|
|
+ if (data->wq) {
|
|
+ devm_led_classdev_unregister(&adev->dev, &data->led);
|
|
destroy_workqueue(data->wq);
|
|
+ }
|
|
return 0;
|
|
}
|
|
|
|
diff --git a/drivers/target/target_core_iblock.c b/drivers/target/target_core_iblock.c
|
|
index 07c814c42648..60429011292a 100644
|
|
--- a/drivers/target/target_core_iblock.c
|
|
+++ b/drivers/target/target_core_iblock.c
|
|
@@ -427,8 +427,8 @@ iblock_execute_zero_out(struct block_device *bdev, struct se_cmd *cmd)
|
|
{
|
|
struct se_device *dev = cmd->se_dev;
|
|
struct scatterlist *sg = &cmd->t_data_sg[0];
|
|
- unsigned char *buf, zero = 0x00, *p = &zero;
|
|
- int rc, ret;
|
|
+ unsigned char *buf, *not_zero;
|
|
+ int ret;
|
|
|
|
buf = kmap(sg_page(sg)) + sg->offset;
|
|
if (!buf)
|
|
@@ -437,10 +437,10 @@ iblock_execute_zero_out(struct block_device *bdev, struct se_cmd *cmd)
|
|
* Fall back to block_execute_write_same() slow-path if
|
|
* incoming WRITE_SAME payload does not contain zeros.
|
|
*/
|
|
- rc = memcmp(buf, p, cmd->data_length);
|
|
+ not_zero = memchr_inv(buf, 0x00, cmd->data_length);
|
|
kunmap(sg_page(sg));
|
|
|
|
- if (rc)
|
|
+ if (not_zero)
|
|
return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
|
|
|
|
ret = blkdev_issue_zeroout(bdev,
|
|
diff --git a/drivers/usb/core/config.c b/drivers/usb/core/config.c
|
|
index 9e3355b97396..bd749e78df59 100644
|
|
--- a/drivers/usb/core/config.c
|
|
+++ b/drivers/usb/core/config.c
|
|
@@ -191,7 +191,9 @@ static const unsigned short full_speed_maxpacket_maxes[4] = {
|
|
static const unsigned short high_speed_maxpacket_maxes[4] = {
|
|
[USB_ENDPOINT_XFER_CONTROL] = 64,
|
|
[USB_ENDPOINT_XFER_ISOC] = 1024,
|
|
- [USB_ENDPOINT_XFER_BULK] = 512,
|
|
+
|
|
+ /* Bulk should be 512, but some devices use 1024: we will warn below */
|
|
+ [USB_ENDPOINT_XFER_BULK] = 1024,
|
|
[USB_ENDPOINT_XFER_INT] = 1024,
|
|
};
|
|
static const unsigned short super_speed_maxpacket_maxes[4] = {
|
|
diff --git a/drivers/usb/dwc3/gadget.c b/drivers/usb/dwc3/gadget.c
|
|
index fe75e969f5ac..d7fae66a0681 100644
|
|
--- a/drivers/usb/dwc3/gadget.c
|
|
+++ b/drivers/usb/dwc3/gadget.c
|
|
@@ -1444,7 +1444,7 @@ static int dwc3_gadget_ep_dequeue(struct usb_ep *ep,
|
|
dwc->lock);
|
|
|
|
if (!r->trb)
|
|
- goto out1;
|
|
+ goto out0;
|
|
|
|
if (r->num_pending_sgs) {
|
|
struct dwc3_trb *trb;
|
|
diff --git a/drivers/usb/musb/musb_gadget.c b/drivers/usb/musb/musb_gadget.c
|
|
index bc6d1717c9ec..87f932d4b72c 100644
|
|
--- a/drivers/usb/musb/musb_gadget.c
|
|
+++ b/drivers/usb/musb/musb_gadget.c
|
|
@@ -442,7 +442,6 @@ void musb_g_tx(struct musb *musb, u8 epnum)
|
|
req = next_request(musb_ep);
|
|
request = &req->request;
|
|
|
|
- trace_musb_req_tx(req);
|
|
csr = musb_readw(epio, MUSB_TXCSR);
|
|
musb_dbg(musb, "<== %s, txcsr %04x", musb_ep->end_point.name, csr);
|
|
|
|
@@ -481,6 +480,8 @@ void musb_g_tx(struct musb *musb, u8 epnum)
|
|
u8 is_dma = 0;
|
|
bool short_packet = false;
|
|
|
|
+ trace_musb_req_tx(req);
|
|
+
|
|
if (dma && (csr & MUSB_TXCSR_DMAENAB)) {
|
|
is_dma = 1;
|
|
csr |= MUSB_TXCSR_P_WZC_BITS;
|
|
diff --git a/drivers/usb/musb/musb_host.c b/drivers/usb/musb/musb_host.c
|
|
index b5cc08d8aa22..5a6dca01a1d0 100644
|
|
--- a/drivers/usb/musb/musb_host.c
|
|
+++ b/drivers/usb/musb/musb_host.c
|
|
@@ -1023,7 +1023,9 @@ static void musb_bulk_nak_timeout(struct musb *musb, struct musb_hw_ep *ep,
|
|
/* set tx_reinit and schedule the next qh */
|
|
ep->tx_reinit = 1;
|
|
}
|
|
- musb_start_urb(musb, is_in, next_qh);
|
|
+
|
|
+ if (next_qh)
|
|
+ musb_start_urb(musb, is_in, next_qh);
|
|
}
|
|
}
|
|
|
|
diff --git a/drivers/usb/serial/option.c b/drivers/usb/serial/option.c
|
|
index dcf78a498927..d4124551fb56 100644
|
|
--- a/drivers/usb/serial/option.c
|
|
+++ b/drivers/usb/serial/option.c
|
|
@@ -236,6 +236,8 @@ static void option_instat_callback(struct urb *urb);
|
|
/* These Quectel products use Qualcomm's vendor ID */
|
|
#define QUECTEL_PRODUCT_UC20 0x9003
|
|
#define QUECTEL_PRODUCT_UC15 0x9090
|
|
+/* These u-blox products use Qualcomm's vendor ID */
|
|
+#define UBLOX_PRODUCT_R410M 0x90b2
|
|
/* These Yuga products use Qualcomm's vendor ID */
|
|
#define YUGA_PRODUCT_CLM920_NC5 0x9625
|
|
|
|
@@ -244,6 +246,7 @@ static void option_instat_callback(struct urb *urb);
|
|
#define QUECTEL_PRODUCT_EC21 0x0121
|
|
#define QUECTEL_PRODUCT_EC25 0x0125
|
|
#define QUECTEL_PRODUCT_BG96 0x0296
|
|
+#define QUECTEL_PRODUCT_EP06 0x0306
|
|
|
|
#define CMOTECH_VENDOR_ID 0x16d8
|
|
#define CMOTECH_PRODUCT_6001 0x6001
|
|
@@ -550,147 +553,15 @@ static void option_instat_callback(struct urb *urb);
|
|
#define WETELECOM_PRODUCT_6802 0x6802
|
|
#define WETELECOM_PRODUCT_WMD300 0x6803
|
|
|
|
-struct option_blacklist_info {
|
|
- /* bitmask of interface numbers blacklisted for send_setup */
|
|
- const unsigned long sendsetup;
|
|
- /* bitmask of interface numbers that are reserved */
|
|
- const unsigned long reserved;
|
|
-};
|
|
-
|
|
-static const struct option_blacklist_info four_g_w14_blacklist = {
|
|
- .sendsetup = BIT(0) | BIT(1),
|
|
-};
|
|
-
|
|
-static const struct option_blacklist_info four_g_w100_blacklist = {
|
|
- .sendsetup = BIT(1) | BIT(2),
|
|
- .reserved = BIT(3),
|
|
-};
|
|
-
|
|
-static const struct option_blacklist_info alcatel_x200_blacklist = {
|
|
- .sendsetup = BIT(0) | BIT(1),
|
|
- .reserved = BIT(4),
|
|
-};
|
|
-
|
|
-static const struct option_blacklist_info zte_0037_blacklist = {
|
|
- .sendsetup = BIT(0) | BIT(1),
|
|
-};
|
|
-
|
|
-static const struct option_blacklist_info zte_k3765_z_blacklist = {
|
|
- .sendsetup = BIT(0) | BIT(1) | BIT(2),
|
|
- .reserved = BIT(4),
|
|
-};
|
|
-
|
|
-static const struct option_blacklist_info zte_ad3812_z_blacklist = {
|
|
- .sendsetup = BIT(0) | BIT(1) | BIT(2),
|
|
-};
|
|
-
|
|
-static const struct option_blacklist_info zte_mc2718_z_blacklist = {
|
|
- .sendsetup = BIT(1) | BIT(2) | BIT(3) | BIT(4),
|
|
-};
|
|
-
|
|
-static const struct option_blacklist_info zte_mc2716_z_blacklist = {
|
|
- .sendsetup = BIT(1) | BIT(2) | BIT(3),
|
|
-};
|
|
-
|
|
-static const struct option_blacklist_info zte_me3620_mbim_blacklist = {
|
|
- .reserved = BIT(2) | BIT(3) | BIT(4),
|
|
-};
|
|
-
|
|
-static const struct option_blacklist_info zte_me3620_xl_blacklist = {
|
|
- .reserved = BIT(3) | BIT(4) | BIT(5),
|
|
-};
|
|
-
|
|
-static const struct option_blacklist_info zte_zm8620_x_blacklist = {
|
|
- .reserved = BIT(3) | BIT(4) | BIT(5),
|
|
-};
|
|
-
|
|
-static const struct option_blacklist_info huawei_cdc12_blacklist = {
|
|
- .reserved = BIT(1) | BIT(2),
|
|
-};
|
|
-
|
|
-static const struct option_blacklist_info net_intf0_blacklist = {
|
|
- .reserved = BIT(0),
|
|
-};
|
|
|
|
-static const struct option_blacklist_info net_intf1_blacklist = {
|
|
- .reserved = BIT(1),
|
|
-};
|
|
+/* Device flags */
|
|
|
|
-static const struct option_blacklist_info net_intf2_blacklist = {
|
|
- .reserved = BIT(2),
|
|
-};
|
|
+/* Interface does not support modem-control requests */
|
|
+#define NCTRL(ifnum) ((BIT(ifnum) & 0xff) << 8)
|
|
|
|
-static const struct option_blacklist_info net_intf3_blacklist = {
|
|
- .reserved = BIT(3),
|
|
-};
|
|
+/* Interface is reserved */
|
|
+#define RSVD(ifnum) ((BIT(ifnum) & 0xff) << 0)
|
|
|
|
-static const struct option_blacklist_info net_intf4_blacklist = {
|
|
- .reserved = BIT(4),
|
|
-};
|
|
-
|
|
-static const struct option_blacklist_info net_intf5_blacklist = {
|
|
- .reserved = BIT(5),
|
|
-};
|
|
-
|
|
-static const struct option_blacklist_info net_intf6_blacklist = {
|
|
- .reserved = BIT(6),
|
|
-};
|
|
-
|
|
-static const struct option_blacklist_info zte_mf626_blacklist = {
|
|
- .sendsetup = BIT(0) | BIT(1),
|
|
- .reserved = BIT(4),
|
|
-};
|
|
-
|
|
-static const struct option_blacklist_info zte_1255_blacklist = {
|
|
- .reserved = BIT(3) | BIT(4),
|
|
-};
|
|
-
|
|
-static const struct option_blacklist_info simcom_sim7100e_blacklist = {
|
|
- .reserved = BIT(5) | BIT(6),
|
|
-};
|
|
-
|
|
-static const struct option_blacklist_info telit_me910_blacklist = {
|
|
- .sendsetup = BIT(0),
|
|
- .reserved = BIT(1) | BIT(3),
|
|
-};
|
|
-
|
|
-static const struct option_blacklist_info telit_me910_dual_modem_blacklist = {
|
|
- .sendsetup = BIT(0),
|
|
- .reserved = BIT(3),
|
|
-};
|
|
-
|
|
-static const struct option_blacklist_info telit_le910_blacklist = {
|
|
- .sendsetup = BIT(0),
|
|
- .reserved = BIT(1) | BIT(2),
|
|
-};
|
|
-
|
|
-static const struct option_blacklist_info telit_le920_blacklist = {
|
|
- .sendsetup = BIT(0),
|
|
- .reserved = BIT(1) | BIT(5),
|
|
-};
|
|
-
|
|
-static const struct option_blacklist_info telit_le920a4_blacklist_1 = {
|
|
- .sendsetup = BIT(0),
|
|
- .reserved = BIT(1),
|
|
-};
|
|
-
|
|
-static const struct option_blacklist_info telit_le922_blacklist_usbcfg0 = {
|
|
- .sendsetup = BIT(2),
|
|
- .reserved = BIT(0) | BIT(1) | BIT(3),
|
|
-};
|
|
-
|
|
-static const struct option_blacklist_info telit_le922_blacklist_usbcfg3 = {
|
|
- .sendsetup = BIT(0),
|
|
- .reserved = BIT(1) | BIT(2) | BIT(3),
|
|
-};
|
|
-
|
|
-static const struct option_blacklist_info cinterion_rmnet2_blacklist = {
|
|
- .reserved = BIT(4) | BIT(5),
|
|
-};
|
|
-
|
|
-static const struct option_blacklist_info yuga_clm920_nc5_blacklist = {
|
|
- .reserved = BIT(1) | BIT(4),
|
|
-};
|
|
|
|
static const struct usb_device_id option_ids[] = {
|
|
{ USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COLT) },
|
|
@@ -724,26 +595,26 @@ static const struct usb_device_id option_ids[] = {
|
|
{ USB_DEVICE(QUANTA_VENDOR_ID, QUANTA_PRODUCT_GKE) },
|
|
{ USB_DEVICE(QUANTA_VENDOR_ID, QUANTA_PRODUCT_GLE) },
|
|
{ USB_DEVICE(QUANTA_VENDOR_ID, 0xea42),
|
|
- .driver_info = (kernel_ulong_t)&net_intf4_blacklist },
|
|
+ .driver_info = RSVD(4) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, 0x1c05, USB_CLASS_COMM, 0x02, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, 0x1c1f, USB_CLASS_COMM, 0x02, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, 0x1c23, USB_CLASS_COMM, 0x02, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E173, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t) &net_intf1_blacklist },
|
|
+ .driver_info = RSVD(1) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E173S6, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t) &net_intf1_blacklist },
|
|
+ .driver_info = RSVD(1) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E1750, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t) &net_intf2_blacklist },
|
|
+ .driver_info = RSVD(2) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, 0x1441, USB_CLASS_COMM, 0x02, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, 0x1442, USB_CLASS_COMM, 0x02, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_K4505, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t) &huawei_cdc12_blacklist },
|
|
+ .driver_info = RSVD(1) | RSVD(2) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_K3765, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t) &huawei_cdc12_blacklist },
|
|
+ .driver_info = RSVD(1) | RSVD(2) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, 0x14ac, 0xff, 0xff, 0xff), /* Huawei E1820 */
|
|
- .driver_info = (kernel_ulong_t) &net_intf1_blacklist },
|
|
+ .driver_info = RSVD(1) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_K4605, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t) &huawei_cdc12_blacklist },
|
|
+ .driver_info = RSVD(1) | RSVD(2) },
|
|
{ USB_VENDOR_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, 0xff, 0xff, 0xff) },
|
|
{ USB_VENDOR_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, 0xff, 0x01, 0x01) },
|
|
{ USB_VENDOR_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, 0xff, 0x01, 0x02) },
|
|
@@ -1188,65 +1059,70 @@ static const struct usb_device_id option_ids[] = {
|
|
{ USB_DEVICE(KYOCERA_VENDOR_ID, KYOCERA_PRODUCT_KPC680) },
|
|
{ USB_DEVICE(QUALCOMM_VENDOR_ID, 0x6000)}, /* ZTE AC8700 */
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(QUALCOMM_VENDOR_ID, 0x6001, 0xff, 0xff, 0xff), /* 4G LTE usb-modem U901 */
|
|
- .driver_info = (kernel_ulong_t)&net_intf3_blacklist },
|
|
+ .driver_info = RSVD(3) },
|
|
{ USB_DEVICE(QUALCOMM_VENDOR_ID, 0x6613)}, /* Onda H600/ZTE MF330 */
|
|
{ USB_DEVICE(QUALCOMM_VENDOR_ID, 0x0023)}, /* ONYX 3G device */
|
|
{ USB_DEVICE(QUALCOMM_VENDOR_ID, 0x9000)}, /* SIMCom SIM5218 */
|
|
/* Quectel products using Qualcomm vendor ID */
|
|
{ USB_DEVICE(QUALCOMM_VENDOR_ID, QUECTEL_PRODUCT_UC15)},
|
|
{ USB_DEVICE(QUALCOMM_VENDOR_ID, QUECTEL_PRODUCT_UC20),
|
|
- .driver_info = (kernel_ulong_t)&net_intf4_blacklist },
|
|
+ .driver_info = RSVD(4) },
|
|
/* Yuga products use Qualcomm vendor ID */
|
|
{ USB_DEVICE(QUALCOMM_VENDOR_ID, YUGA_PRODUCT_CLM920_NC5),
|
|
- .driver_info = (kernel_ulong_t)&yuga_clm920_nc5_blacklist },
|
|
+ .driver_info = RSVD(1) | RSVD(4) },
|
|
+ /* u-blox products using Qualcomm vendor ID */
|
|
+ { USB_DEVICE(QUALCOMM_VENDOR_ID, UBLOX_PRODUCT_R410M),
|
|
+ .driver_info = RSVD(1) | RSVD(3) },
|
|
/* Quectel products using Quectel vendor ID */
|
|
{ USB_DEVICE(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_EC21),
|
|
- .driver_info = (kernel_ulong_t)&net_intf4_blacklist },
|
|
+ .driver_info = RSVD(4) },
|
|
{ USB_DEVICE(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_EC25),
|
|
- .driver_info = (kernel_ulong_t)&net_intf4_blacklist },
|
|
+ .driver_info = RSVD(4) },
|
|
{ USB_DEVICE(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_BG96),
|
|
- .driver_info = (kernel_ulong_t)&net_intf4_blacklist },
|
|
+ .driver_info = RSVD(4) },
|
|
+ { USB_DEVICE(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_EP06),
|
|
+ .driver_info = RSVD(4) | RSVD(5) },
|
|
{ USB_DEVICE(CMOTECH_VENDOR_ID, CMOTECH_PRODUCT_6001) },
|
|
{ USB_DEVICE(CMOTECH_VENDOR_ID, CMOTECH_PRODUCT_CMU_300) },
|
|
{ USB_DEVICE(CMOTECH_VENDOR_ID, CMOTECH_PRODUCT_6003),
|
|
- .driver_info = (kernel_ulong_t)&net_intf0_blacklist },
|
|
+ .driver_info = RSVD(0) },
|
|
{ USB_DEVICE(CMOTECH_VENDOR_ID, CMOTECH_PRODUCT_6004) },
|
|
{ USB_DEVICE(CMOTECH_VENDOR_ID, CMOTECH_PRODUCT_6005) },
|
|
{ USB_DEVICE(CMOTECH_VENDOR_ID, CMOTECH_PRODUCT_CGU_628A) },
|
|
{ USB_DEVICE(CMOTECH_VENDOR_ID, CMOTECH_PRODUCT_CHE_628S),
|
|
- .driver_info = (kernel_ulong_t)&net_intf0_blacklist },
|
|
+ .driver_info = RSVD(0) },
|
|
{ USB_DEVICE(CMOTECH_VENDOR_ID, CMOTECH_PRODUCT_CMU_301),
|
|
- .driver_info = (kernel_ulong_t)&net_intf0_blacklist },
|
|
+ .driver_info = RSVD(0) },
|
|
{ USB_DEVICE(CMOTECH_VENDOR_ID, CMOTECH_PRODUCT_CHU_628),
|
|
- .driver_info = (kernel_ulong_t)&net_intf0_blacklist },
|
|
+ .driver_info = RSVD(0) },
|
|
{ USB_DEVICE(CMOTECH_VENDOR_ID, CMOTECH_PRODUCT_CHU_628S) },
|
|
{ USB_DEVICE(CMOTECH_VENDOR_ID, CMOTECH_PRODUCT_CDU_680) },
|
|
{ USB_DEVICE(CMOTECH_VENDOR_ID, CMOTECH_PRODUCT_CDU_685A) },
|
|
{ USB_DEVICE(CMOTECH_VENDOR_ID, CMOTECH_PRODUCT_CHU_720S),
|
|
- .driver_info = (kernel_ulong_t)&net_intf0_blacklist },
|
|
+ .driver_info = RSVD(0) },
|
|
{ USB_DEVICE(CMOTECH_VENDOR_ID, CMOTECH_PRODUCT_7002),
|
|
- .driver_info = (kernel_ulong_t)&net_intf0_blacklist },
|
|
+ .driver_info = RSVD(0) },
|
|
{ USB_DEVICE(CMOTECH_VENDOR_ID, CMOTECH_PRODUCT_CHU_629K),
|
|
- .driver_info = (kernel_ulong_t)&net_intf4_blacklist },
|
|
+ .driver_info = RSVD(4) },
|
|
{ USB_DEVICE(CMOTECH_VENDOR_ID, CMOTECH_PRODUCT_7004),
|
|
- .driver_info = (kernel_ulong_t)&net_intf3_blacklist },
|
|
+ .driver_info = RSVD(3) },
|
|
{ USB_DEVICE(CMOTECH_VENDOR_ID, CMOTECH_PRODUCT_7005) },
|
|
{ USB_DEVICE(CMOTECH_VENDOR_ID, CMOTECH_PRODUCT_CGU_629),
|
|
- .driver_info = (kernel_ulong_t)&net_intf5_blacklist },
|
|
+ .driver_info = RSVD(5) },
|
|
{ USB_DEVICE(CMOTECH_VENDOR_ID, CMOTECH_PRODUCT_CHU_629S),
|
|
- .driver_info = (kernel_ulong_t)&net_intf4_blacklist },
|
|
+ .driver_info = RSVD(4) },
|
|
{ USB_DEVICE(CMOTECH_VENDOR_ID, CMOTECH_PRODUCT_CHU_720I),
|
|
- .driver_info = (kernel_ulong_t)&net_intf0_blacklist },
|
|
+ .driver_info = RSVD(0) },
|
|
{ USB_DEVICE(CMOTECH_VENDOR_ID, CMOTECH_PRODUCT_7212),
|
|
- .driver_info = (kernel_ulong_t)&net_intf0_blacklist },
|
|
+ .driver_info = RSVD(0) },
|
|
{ USB_DEVICE(CMOTECH_VENDOR_ID, CMOTECH_PRODUCT_7213),
|
|
- .driver_info = (kernel_ulong_t)&net_intf0_blacklist },
|
|
+ .driver_info = RSVD(0) },
|
|
{ USB_DEVICE(CMOTECH_VENDOR_ID, CMOTECH_PRODUCT_7251),
|
|
- .driver_info = (kernel_ulong_t)&net_intf1_blacklist },
|
|
+ .driver_info = RSVD(1) },
|
|
{ USB_DEVICE(CMOTECH_VENDOR_ID, CMOTECH_PRODUCT_7252),
|
|
- .driver_info = (kernel_ulong_t)&net_intf1_blacklist },
|
|
+ .driver_info = RSVD(1) },
|
|
{ USB_DEVICE(CMOTECH_VENDOR_ID, CMOTECH_PRODUCT_7253),
|
|
- .driver_info = (kernel_ulong_t)&net_intf1_blacklist },
|
|
+ .driver_info = RSVD(1) },
|
|
{ USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_UC864E) },
|
|
{ USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_UC864G) },
|
|
{ USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_CC864_DUAL) },
|
|
@@ -1254,38 +1130,38 @@ static const struct usb_device_id option_ids[] = {
|
|
{ USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_DE910_DUAL) },
|
|
{ USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_UE910_V2) },
|
|
{ USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_LE922_USBCFG0),
|
|
- .driver_info = (kernel_ulong_t)&telit_le922_blacklist_usbcfg0 },
|
|
+ .driver_info = RSVD(0) | RSVD(1) | NCTRL(2) | RSVD(3) },
|
|
{ USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_LE922_USBCFG1),
|
|
- .driver_info = (kernel_ulong_t)&telit_le910_blacklist },
|
|
+ .driver_info = NCTRL(0) | RSVD(1) | RSVD(2) },
|
|
{ USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_LE922_USBCFG2),
|
|
- .driver_info = (kernel_ulong_t)&telit_le922_blacklist_usbcfg3 },
|
|
+ .driver_info = NCTRL(0) | RSVD(1) | RSVD(2) | RSVD(3) },
|
|
{ USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_LE922_USBCFG3),
|
|
- .driver_info = (kernel_ulong_t)&telit_le922_blacklist_usbcfg3 },
|
|
+ .driver_info = NCTRL(0) | RSVD(1) | RSVD(2) | RSVD(3) },
|
|
{ USB_DEVICE_INTERFACE_CLASS(TELIT_VENDOR_ID, TELIT_PRODUCT_LE922_USBCFG5, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&telit_le922_blacklist_usbcfg0 },
|
|
+ .driver_info = RSVD(0) | RSVD(1) | NCTRL(2) | RSVD(3) },
|
|
{ USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_ME910),
|
|
- .driver_info = (kernel_ulong_t)&telit_me910_blacklist },
|
|
+ .driver_info = NCTRL(0) | RSVD(1) | RSVD(3) },
|
|
{ USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_ME910_DUAL_MODEM),
|
|
- .driver_info = (kernel_ulong_t)&telit_me910_dual_modem_blacklist },
|
|
+ .driver_info = NCTRL(0) | RSVD(3) },
|
|
{ USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_LE910),
|
|
- .driver_info = (kernel_ulong_t)&telit_le910_blacklist },
|
|
+ .driver_info = NCTRL(0) | RSVD(1) | RSVD(2) },
|
|
{ USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_LE910_USBCFG4),
|
|
- .driver_info = (kernel_ulong_t)&telit_le922_blacklist_usbcfg3 },
|
|
+ .driver_info = NCTRL(0) | RSVD(1) | RSVD(2) | RSVD(3) },
|
|
{ USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_LE920),
|
|
- .driver_info = (kernel_ulong_t)&telit_le920_blacklist },
|
|
+ .driver_info = NCTRL(0) | RSVD(1) | RSVD(5) },
|
|
{ USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_LE920A4_1207) },
|
|
{ USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_LE920A4_1208),
|
|
- .driver_info = (kernel_ulong_t)&telit_le920a4_blacklist_1 },
|
|
+ .driver_info = NCTRL(0) | RSVD(1) },
|
|
{ USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_LE920A4_1211),
|
|
- .driver_info = (kernel_ulong_t)&telit_le922_blacklist_usbcfg3 },
|
|
+ .driver_info = NCTRL(0) | RSVD(1) | RSVD(2) | RSVD(3) },
|
|
{ USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_LE920A4_1212),
|
|
- .driver_info = (kernel_ulong_t)&telit_le920a4_blacklist_1 },
|
|
+ .driver_info = NCTRL(0) | RSVD(1) },
|
|
{ USB_DEVICE_INTERFACE_CLASS(TELIT_VENDOR_ID, TELIT_PRODUCT_LE920A4_1213, 0xff) },
|
|
{ USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_LE920A4_1214),
|
|
- .driver_info = (kernel_ulong_t)&telit_le922_blacklist_usbcfg3 },
|
|
+ .driver_info = NCTRL(0) | RSVD(1) | RSVD(2) | RSVD(3) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, ZTE_PRODUCT_MF622, 0xff, 0xff, 0xff) }, /* ZTE WCDMA products */
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0002, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf1_blacklist },
|
|
+ .driver_info = RSVD(1) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0003, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0004, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0005, 0xff, 0xff, 0xff) },
|
|
@@ -1301,58 +1177,58 @@ static const struct usb_device_id option_ids[] = {
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0010, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0011, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0012, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf1_blacklist },
|
|
+ .driver_info = RSVD(1) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0013, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, ZTE_PRODUCT_MF628, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0016, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0017, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf3_blacklist },
|
|
+ .driver_info = RSVD(3) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0018, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0019, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf3_blacklist },
|
|
+ .driver_info = RSVD(3) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0020, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0021, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf4_blacklist },
|
|
+ .driver_info = RSVD(4) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0022, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0023, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0024, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0025, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf1_blacklist },
|
|
+ .driver_info = RSVD(1) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0028, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0029, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0030, 0xff, 0xff, 0xff) },
|
|
- { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, ZTE_PRODUCT_MF626, 0xff,
|
|
- 0xff, 0xff), .driver_info = (kernel_ulong_t)&zte_mf626_blacklist },
|
|
+ { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, ZTE_PRODUCT_MF626, 0xff, 0xff, 0xff),
|
|
+ .driver_info = NCTRL(0) | NCTRL(1) | RSVD(4) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0032, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0033, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0034, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0037, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&zte_0037_blacklist },
|
|
+ .driver_info = NCTRL(0) | NCTRL(1) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0038, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0039, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0040, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0042, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf4_blacklist },
|
|
+ .driver_info = RSVD(4) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0043, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0044, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0048, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0049, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf5_blacklist },
|
|
+ .driver_info = RSVD(5) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0050, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0051, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0052, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf4_blacklist },
|
|
+ .driver_info = RSVD(4) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0054, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0055, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf1_blacklist },
|
|
+ .driver_info = RSVD(1) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0056, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0057, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0058, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf4_blacklist },
|
|
+ .driver_info = RSVD(4) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0061, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0062, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0063, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf4_blacklist },
|
|
+ .driver_info = RSVD(4) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0064, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0065, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0066, 0xff, 0xff, 0xff) },
|
|
@@ -1377,26 +1253,26 @@ static const struct usb_device_id option_ids[] = {
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0096, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0097, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0104, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf4_blacklist },
|
|
+ .driver_info = RSVD(4) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0105, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0106, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0108, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0113, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf5_blacklist },
|
|
+ .driver_info = RSVD(5) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0117, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0118, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf5_blacklist },
|
|
+ .driver_info = RSVD(5) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0121, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf5_blacklist },
|
|
+ .driver_info = RSVD(5) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0122, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0123, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf4_blacklist },
|
|
+ .driver_info = RSVD(4) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0124, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf5_blacklist },
|
|
+ .driver_info = RSVD(5) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0125, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf6_blacklist },
|
|
+ .driver_info = RSVD(6) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0126, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf5_blacklist },
|
|
+ .driver_info = RSVD(5) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0128, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0135, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0136, 0xff, 0xff, 0xff) },
|
|
@@ -1412,50 +1288,50 @@ static const struct usb_device_id option_ids[] = {
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0155, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0156, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0157, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf5_blacklist },
|
|
+ .driver_info = RSVD(5) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0158, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf3_blacklist },
|
|
+ .driver_info = RSVD(3) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0159, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0161, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0162, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0164, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0165, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0167, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf4_blacklist },
|
|
+ .driver_info = RSVD(4) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0189, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0191, 0xff, 0xff, 0xff), /* ZTE EuFi890 */
|
|
- .driver_info = (kernel_ulong_t)&net_intf4_blacklist },
|
|
+ .driver_info = RSVD(4) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0196, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0197, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0199, 0xff, 0xff, 0xff), /* ZTE MF820S */
|
|
- .driver_info = (kernel_ulong_t)&net_intf1_blacklist },
|
|
+ .driver_info = RSVD(1) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0200, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0201, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0254, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0257, 0xff, 0xff, 0xff), /* ZTE MF821 */
|
|
- .driver_info = (kernel_ulong_t)&net_intf3_blacklist },
|
|
+ .driver_info = RSVD(3) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0265, 0xff, 0xff, 0xff), /* ONDA MT8205 */
|
|
- .driver_info = (kernel_ulong_t)&net_intf4_blacklist },
|
|
+ .driver_info = RSVD(4) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0284, 0xff, 0xff, 0xff), /* ZTE MF880 */
|
|
- .driver_info = (kernel_ulong_t)&net_intf4_blacklist },
|
|
+ .driver_info = RSVD(4) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0317, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0326, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf4_blacklist },
|
|
+ .driver_info = RSVD(4) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0330, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0395, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0412, 0xff, 0xff, 0xff), /* Telewell TW-LTE 4G */
|
|
- .driver_info = (kernel_ulong_t)&net_intf4_blacklist },
|
|
+ .driver_info = RSVD(4) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0414, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0417, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1008, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf4_blacklist },
|
|
+ .driver_info = RSVD(4) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1010, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf4_blacklist },
|
|
+ .driver_info = RSVD(4) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1012, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf4_blacklist },
|
|
+ .driver_info = RSVD(4) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1018, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1021, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf2_blacklist },
|
|
+ .driver_info = RSVD(2) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1057, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1058, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1059, 0xff, 0xff, 0xff) },
|
|
@@ -1572,23 +1448,23 @@ static const struct usb_device_id option_ids[] = {
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1170, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1244, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1245, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf4_blacklist },
|
|
+ .driver_info = RSVD(4) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1246, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1247, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf4_blacklist },
|
|
+ .driver_info = RSVD(4) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1248, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1249, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1250, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1251, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1252, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf4_blacklist },
|
|
+ .driver_info = RSVD(4) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1253, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1254, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf4_blacklist },
|
|
+ .driver_info = RSVD(4) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1255, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&zte_1255_blacklist },
|
|
+ .driver_info = RSVD(3) | RSVD(4) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1256, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf4_blacklist },
|
|
+ .driver_info = RSVD(4) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1257, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1258, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1259, 0xff, 0xff, 0xff) },
|
|
@@ -1603,7 +1479,7 @@ static const struct usb_device_id option_ids[] = {
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1268, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1269, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1270, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf5_blacklist },
|
|
+ .driver_info = RSVD(5) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1271, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1272, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1273, 0xff, 0xff, 0xff) },
|
|
@@ -1639,17 +1515,17 @@ static const struct usb_device_id option_ids[] = {
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1303, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1333, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1401, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf2_blacklist },
|
|
+ .driver_info = RSVD(2) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1402, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf2_blacklist },
|
|
+ .driver_info = RSVD(2) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1424, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf2_blacklist },
|
|
+ .driver_info = RSVD(2) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1425, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf2_blacklist },
|
|
+ .driver_info = RSVD(2) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1426, 0xff, 0xff, 0xff), /* ZTE MF91 */
|
|
- .driver_info = (kernel_ulong_t)&net_intf2_blacklist },
|
|
+ .driver_info = RSVD(2) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1428, 0xff, 0xff, 0xff), /* Telewell TW-LTE 4G v2 */
|
|
- .driver_info = (kernel_ulong_t)&net_intf2_blacklist },
|
|
+ .driver_info = RSVD(2) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1533, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1534, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1535, 0xff, 0xff, 0xff) },
|
|
@@ -1667,8 +1543,8 @@ static const struct usb_device_id option_ids[] = {
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1596, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1598, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1600, 0xff, 0xff, 0xff) },
|
|
- { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x2002, 0xff,
|
|
- 0xff, 0xff), .driver_info = (kernel_ulong_t)&zte_k3765_z_blacklist },
|
|
+ { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x2002, 0xff, 0xff, 0xff),
|
|
+ .driver_info = NCTRL(0) | NCTRL(1) | NCTRL(2) | RSVD(4) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x2003, 0xff, 0xff, 0xff) },
|
|
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0014, 0xff, 0xff, 0xff) }, /* ZTE CDMA products */
|
|
@@ -1679,20 +1555,20 @@ static const struct usb_device_id option_ids[] = {
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0073, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0094, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0130, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf1_blacklist },
|
|
+ .driver_info = RSVD(1) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0133, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf3_blacklist },
|
|
+ .driver_info = RSVD(3) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0141, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf5_blacklist },
|
|
+ .driver_info = RSVD(5) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0147, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0152, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0168, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf4_blacklist },
|
|
+ .driver_info = RSVD(4) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0170, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0176, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf3_blacklist },
|
|
+ .driver_info = RSVD(3) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0178, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf3_blacklist },
|
|
+ .driver_info = RSVD(3) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0xff42, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0xff43, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0xff44, 0xff, 0xff, 0xff) },
|
|
@@ -1844,19 +1720,19 @@ static const struct usb_device_id option_ids[] = {
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, ZTE_PRODUCT_AC2726, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, ZTE_PRODUCT_AC8710T, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, ZTE_PRODUCT_MC2718, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&zte_mc2718_z_blacklist },
|
|
+ .driver_info = NCTRL(1) | NCTRL(2) | NCTRL(3) | NCTRL(4) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, ZTE_PRODUCT_AD3812, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&zte_ad3812_z_blacklist },
|
|
+ .driver_info = NCTRL(0) | NCTRL(1) | NCTRL(2) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, ZTE_PRODUCT_MC2716, 0xff, 0xff, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&zte_mc2716_z_blacklist },
|
|
+ .driver_info = NCTRL(1) | NCTRL(2) | NCTRL(3) },
|
|
{ USB_DEVICE(ZTE_VENDOR_ID, ZTE_PRODUCT_ME3620_L),
|
|
- .driver_info = (kernel_ulong_t)&zte_me3620_xl_blacklist },
|
|
+ .driver_info = RSVD(3) | RSVD(4) | RSVD(5) },
|
|
{ USB_DEVICE(ZTE_VENDOR_ID, ZTE_PRODUCT_ME3620_MBIM),
|
|
- .driver_info = (kernel_ulong_t)&zte_me3620_mbim_blacklist },
|
|
+ .driver_info = RSVD(2) | RSVD(3) | RSVD(4) },
|
|
{ USB_DEVICE(ZTE_VENDOR_ID, ZTE_PRODUCT_ME3620_X),
|
|
- .driver_info = (kernel_ulong_t)&zte_me3620_xl_blacklist },
|
|
+ .driver_info = RSVD(3) | RSVD(4) | RSVD(5) },
|
|
{ USB_DEVICE(ZTE_VENDOR_ID, ZTE_PRODUCT_ZM8620_X),
|
|
- .driver_info = (kernel_ulong_t)&zte_zm8620_x_blacklist },
|
|
+ .driver_info = RSVD(3) | RSVD(4) | RSVD(5) },
|
|
{ USB_VENDOR_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0xff, 0x02, 0x01) },
|
|
{ USB_VENDOR_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0xff, 0x02, 0x05) },
|
|
{ USB_VENDOR_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0xff, 0x86, 0x10) },
|
|
@@ -1876,37 +1752,34 @@ static const struct usb_device_id option_ids[] = {
|
|
{ USB_DEVICE(ALINK_VENDOR_ID, ALINK_PRODUCT_PH300) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(ALINK_VENDOR_ID, ALINK_PRODUCT_3GU, 0xff, 0xff, 0xff) },
|
|
{ USB_DEVICE(ALINK_VENDOR_ID, SIMCOM_PRODUCT_SIM7100E),
|
|
- .driver_info = (kernel_ulong_t)&simcom_sim7100e_blacklist },
|
|
+ .driver_info = RSVD(5) | RSVD(6) },
|
|
{ USB_DEVICE(ALCATEL_VENDOR_ID, ALCATEL_PRODUCT_X060S_X200),
|
|
- .driver_info = (kernel_ulong_t)&alcatel_x200_blacklist
|
|
- },
|
|
+ .driver_info = NCTRL(0) | NCTRL(1) | RSVD(4) },
|
|
{ USB_DEVICE(ALCATEL_VENDOR_ID, ALCATEL_PRODUCT_X220_X500D),
|
|
- .driver_info = (kernel_ulong_t)&net_intf6_blacklist },
|
|
+ .driver_info = RSVD(6) },
|
|
{ USB_DEVICE(ALCATEL_VENDOR_ID, 0x0052),
|
|
- .driver_info = (kernel_ulong_t)&net_intf6_blacklist },
|
|
+ .driver_info = RSVD(6) },
|
|
{ USB_DEVICE(ALCATEL_VENDOR_ID, 0x00b6),
|
|
- .driver_info = (kernel_ulong_t)&net_intf3_blacklist },
|
|
+ .driver_info = RSVD(3) },
|
|
{ USB_DEVICE(ALCATEL_VENDOR_ID, 0x00b7),
|
|
- .driver_info = (kernel_ulong_t)&net_intf5_blacklist },
|
|
+ .driver_info = RSVD(5) },
|
|
{ USB_DEVICE(ALCATEL_VENDOR_ID, ALCATEL_PRODUCT_L100V),
|
|
- .driver_info = (kernel_ulong_t)&net_intf4_blacklist },
|
|
+ .driver_info = RSVD(4) },
|
|
{ USB_DEVICE(ALCATEL_VENDOR_ID, ALCATEL_PRODUCT_L800MA),
|
|
- .driver_info = (kernel_ulong_t)&net_intf2_blacklist },
|
|
+ .driver_info = RSVD(2) },
|
|
{ USB_DEVICE(AIRPLUS_VENDOR_ID, AIRPLUS_PRODUCT_MCD650) },
|
|
{ USB_DEVICE(TLAYTECH_VENDOR_ID, TLAYTECH_PRODUCT_TEU800) },
|
|
{ USB_DEVICE(LONGCHEER_VENDOR_ID, FOUR_G_SYSTEMS_PRODUCT_W14),
|
|
- .driver_info = (kernel_ulong_t)&four_g_w14_blacklist
|
|
- },
|
|
+ .driver_info = NCTRL(0) | NCTRL(1) },
|
|
{ USB_DEVICE(LONGCHEER_VENDOR_ID, FOUR_G_SYSTEMS_PRODUCT_W100),
|
|
- .driver_info = (kernel_ulong_t)&four_g_w100_blacklist
|
|
- },
|
|
+ .driver_info = NCTRL(1) | NCTRL(2) | RSVD(3) },
|
|
{USB_DEVICE(LONGCHEER_VENDOR_ID, FUJISOFT_PRODUCT_FS040U),
|
|
- .driver_info = (kernel_ulong_t)&net_intf3_blacklist},
|
|
+ .driver_info = RSVD(3)},
|
|
{ USB_DEVICE_INTERFACE_CLASS(LONGCHEER_VENDOR_ID, SPEEDUP_PRODUCT_SU9800, 0xff) },
|
|
{ USB_DEVICE_INTERFACE_CLASS(LONGCHEER_VENDOR_ID, 0x9801, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf3_blacklist },
|
|
+ .driver_info = RSVD(3) },
|
|
{ USB_DEVICE_INTERFACE_CLASS(LONGCHEER_VENDOR_ID, 0x9803, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf4_blacklist },
|
|
+ .driver_info = RSVD(4) },
|
|
{ USB_DEVICE(LONGCHEER_VENDOR_ID, ZOOM_PRODUCT_4597) },
|
|
{ USB_DEVICE(LONGCHEER_VENDOR_ID, IBALL_3_5G_CONNECT) },
|
|
{ USB_DEVICE(HAIER_VENDOR_ID, HAIER_PRODUCT_CE100) },
|
|
@@ -1932,14 +1805,14 @@ static const struct usb_device_id option_ids[] = {
|
|
{ USB_DEVICE(CINTERION_VENDOR_ID, CINTERION_PRODUCT_EU3_E) },
|
|
{ USB_DEVICE(CINTERION_VENDOR_ID, CINTERION_PRODUCT_EU3_P) },
|
|
{ USB_DEVICE(CINTERION_VENDOR_ID, CINTERION_PRODUCT_PH8),
|
|
- .driver_info = (kernel_ulong_t)&net_intf4_blacklist },
|
|
+ .driver_info = RSVD(4) },
|
|
{ USB_DEVICE_INTERFACE_CLASS(CINTERION_VENDOR_ID, CINTERION_PRODUCT_AHXX, 0xff) },
|
|
{ USB_DEVICE(CINTERION_VENDOR_ID, CINTERION_PRODUCT_PLXX),
|
|
- .driver_info = (kernel_ulong_t)&net_intf4_blacklist },
|
|
+ .driver_info = RSVD(4) },
|
|
{ USB_DEVICE_INTERFACE_CLASS(CINTERION_VENDOR_ID, CINTERION_PRODUCT_PH8_2RMNET, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&cinterion_rmnet2_blacklist },
|
|
+ .driver_info = RSVD(4) | RSVD(5) },
|
|
{ USB_DEVICE_INTERFACE_CLASS(CINTERION_VENDOR_ID, CINTERION_PRODUCT_PH8_AUDIO, 0xff),
|
|
- .driver_info = (kernel_ulong_t)&net_intf4_blacklist },
|
|
+ .driver_info = RSVD(4) },
|
|
{ USB_DEVICE_INTERFACE_CLASS(CINTERION_VENDOR_ID, CINTERION_PRODUCT_AHXX_2RMNET, 0xff) },
|
|
{ USB_DEVICE_INTERFACE_CLASS(CINTERION_VENDOR_ID, CINTERION_PRODUCT_AHXX_AUDIO, 0xff) },
|
|
{ USB_DEVICE(CINTERION_VENDOR_ID, CINTERION_PRODUCT_HC28_MDM) },
|
|
@@ -1949,20 +1822,20 @@ static const struct usb_device_id option_ids[] = {
|
|
{ USB_DEVICE(SIEMENS_VENDOR_ID, CINTERION_PRODUCT_HC28_MDM) }, /* HC28 enumerates with Siemens or Cinterion VID depending on FW revision */
|
|
{ USB_DEVICE(SIEMENS_VENDOR_ID, CINTERION_PRODUCT_HC28_MDMNET) },
|
|
{ USB_DEVICE(OLIVETTI_VENDOR_ID, OLIVETTI_PRODUCT_OLICARD100),
|
|
- .driver_info = (kernel_ulong_t)&net_intf4_blacklist },
|
|
+ .driver_info = RSVD(4) },
|
|
{ USB_DEVICE(OLIVETTI_VENDOR_ID, OLIVETTI_PRODUCT_OLICARD120),
|
|
- .driver_info = (kernel_ulong_t)&net_intf4_blacklist },
|
|
+ .driver_info = RSVD(4) },
|
|
{ USB_DEVICE(OLIVETTI_VENDOR_ID, OLIVETTI_PRODUCT_OLICARD140),
|
|
- .driver_info = (kernel_ulong_t)&net_intf4_blacklist },
|
|
+ .driver_info = RSVD(4) },
|
|
{ USB_DEVICE(OLIVETTI_VENDOR_ID, OLIVETTI_PRODUCT_OLICARD145) },
|
|
{ USB_DEVICE(OLIVETTI_VENDOR_ID, OLIVETTI_PRODUCT_OLICARD155),
|
|
- .driver_info = (kernel_ulong_t)&net_intf6_blacklist },
|
|
+ .driver_info = RSVD(6) },
|
|
{ USB_DEVICE(OLIVETTI_VENDOR_ID, OLIVETTI_PRODUCT_OLICARD200),
|
|
- .driver_info = (kernel_ulong_t)&net_intf6_blacklist },
|
|
+ .driver_info = RSVD(6) },
|
|
{ USB_DEVICE(OLIVETTI_VENDOR_ID, OLIVETTI_PRODUCT_OLICARD160),
|
|
- .driver_info = (kernel_ulong_t)&net_intf6_blacklist },
|
|
+ .driver_info = RSVD(6) },
|
|
{ USB_DEVICE(OLIVETTI_VENDOR_ID, OLIVETTI_PRODUCT_OLICARD500),
|
|
- .driver_info = (kernel_ulong_t)&net_intf4_blacklist },
|
|
+ .driver_info = RSVD(4) },
|
|
{ USB_DEVICE(CELOT_VENDOR_ID, CELOT_PRODUCT_CT680M) }, /* CT-650 CDMA 450 1xEVDO modem */
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(SAMSUNG_VENDOR_ID, SAMSUNG_PRODUCT_GT_B3730, USB_CLASS_CDC_DATA, 0x00, 0x00) }, /* Samsung GT-B3730 LTE USB modem.*/
|
|
{ USB_DEVICE(YUGA_VENDOR_ID, YUGA_PRODUCT_CEM600) },
|
|
@@ -2039,9 +1912,9 @@ static const struct usb_device_id option_ids[] = {
|
|
{ USB_DEVICE(PETATEL_VENDOR_ID, PETATEL_PRODUCT_NP10T_600E) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(TPLINK_VENDOR_ID, TPLINK_PRODUCT_LTE, 0xff, 0x00, 0x00) }, /* TP-Link LTE Module */
|
|
{ USB_DEVICE(TPLINK_VENDOR_ID, TPLINK_PRODUCT_MA180),
|
|
- .driver_info = (kernel_ulong_t)&net_intf4_blacklist },
|
|
+ .driver_info = RSVD(4) },
|
|
{ USB_DEVICE(TPLINK_VENDOR_ID, 0x9000), /* TP-Link MA260 */
|
|
- .driver_info = (kernel_ulong_t)&net_intf4_blacklist },
|
|
+ .driver_info = RSVD(4) },
|
|
{ USB_DEVICE(CHANGHONG_VENDOR_ID, CHANGHONG_PRODUCT_CH690) },
|
|
{ USB_DEVICE_INTERFACE_CLASS(0x2001, 0x7d01, 0xff) }, /* D-Link DWM-156 (variant) */
|
|
{ USB_DEVICE_INTERFACE_CLASS(0x2001, 0x7d02, 0xff) },
|
|
@@ -2049,9 +1922,9 @@ static const struct usb_device_id option_ids[] = {
|
|
{ USB_DEVICE_INTERFACE_CLASS(0x2001, 0x7d04, 0xff) }, /* D-Link DWM-158 */
|
|
{ USB_DEVICE_INTERFACE_CLASS(0x2001, 0x7d0e, 0xff) }, /* D-Link DWM-157 C1 */
|
|
{ USB_DEVICE_INTERFACE_CLASS(0x2001, 0x7e19, 0xff), /* D-Link DWM-221 B1 */
|
|
- .driver_info = (kernel_ulong_t)&net_intf4_blacklist },
|
|
+ .driver_info = RSVD(4) },
|
|
{ USB_DEVICE_INTERFACE_CLASS(0x2001, 0x7e35, 0xff), /* D-Link DWM-222 */
|
|
- .driver_info = (kernel_ulong_t)&net_intf4_blacklist },
|
|
+ .driver_info = RSVD(4) },
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(0x07d1, 0x3e01, 0xff, 0xff, 0xff) }, /* D-Link DWM-152/C1 */
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(0x07d1, 0x3e02, 0xff, 0xff, 0xff) }, /* D-Link DWM-156/C1 */
|
|
{ USB_DEVICE_AND_INTERFACE_INFO(0x07d1, 0x7e11, 0xff, 0xff, 0xff) }, /* D-Link DWM-156/A3 */
|
|
@@ -2111,7 +1984,7 @@ static int option_probe(struct usb_serial *serial,
|
|
struct usb_interface_descriptor *iface_desc =
|
|
&serial->interface->cur_altsetting->desc;
|
|
struct usb_device_descriptor *dev_desc = &serial->dev->descriptor;
|
|
- const struct option_blacklist_info *blacklist;
|
|
+ unsigned long device_flags = id->driver_info;
|
|
|
|
/* Never bind to the CD-Rom emulation interface */
|
|
if (iface_desc->bInterfaceClass == 0x08)
|
|
@@ -2122,9 +1995,7 @@ static int option_probe(struct usb_serial *serial,
|
|
* the same class/subclass/protocol as the serial interfaces. Look at
|
|
* the Windows driver .INF files for reserved interface numbers.
|
|
*/
|
|
- blacklist = (void *)id->driver_info;
|
|
- if (blacklist && test_bit(iface_desc->bInterfaceNumber,
|
|
- &blacklist->reserved))
|
|
+ if (device_flags & RSVD(iface_desc->bInterfaceNumber))
|
|
return -ENODEV;
|
|
/*
|
|
* Don't bind network interface on Samsung GT-B3730, it is handled by
|
|
@@ -2135,8 +2006,8 @@ static int option_probe(struct usb_serial *serial,
|
|
iface_desc->bInterfaceClass != USB_CLASS_CDC_DATA)
|
|
return -ENODEV;
|
|
|
|
- /* Store the blacklist info so we can use it during attach. */
|
|
- usb_set_serial_data(serial, (void *)blacklist);
|
|
+ /* Store the device flags so we can use them during attach. */
|
|
+ usb_set_serial_data(serial, (void *)device_flags);
|
|
|
|
return 0;
|
|
}
|
|
@@ -2144,22 +2015,21 @@ static int option_probe(struct usb_serial *serial,
|
|
static int option_attach(struct usb_serial *serial)
|
|
{
|
|
struct usb_interface_descriptor *iface_desc;
|
|
- const struct option_blacklist_info *blacklist;
|
|
struct usb_wwan_intf_private *data;
|
|
+ unsigned long device_flags;
|
|
|
|
data = kzalloc(sizeof(struct usb_wwan_intf_private), GFP_KERNEL);
|
|
if (!data)
|
|
return -ENOMEM;
|
|
|
|
- /* Retrieve blacklist info stored at probe. */
|
|
- blacklist = usb_get_serial_data(serial);
|
|
+ /* Retrieve device flags stored at probe. */
|
|
+ device_flags = (unsigned long)usb_get_serial_data(serial);
|
|
|
|
iface_desc = &serial->interface->cur_altsetting->desc;
|
|
|
|
- if (!blacklist || !test_bit(iface_desc->bInterfaceNumber,
|
|
- &blacklist->sendsetup)) {
|
|
+ if (!(device_flags & NCTRL(iface_desc->bInterfaceNumber)))
|
|
data->use_send_setup = 1;
|
|
- }
|
|
+
|
|
spin_lock_init(&data->susp_lock);
|
|
|
|
usb_set_serial_data(serial, data);
|
|
diff --git a/drivers/usb/serial/visor.c b/drivers/usb/serial/visor.c
|
|
index 9f3317a940ef..879840ec0658 100644
|
|
--- a/drivers/usb/serial/visor.c
|
|
+++ b/drivers/usb/serial/visor.c
|
|
@@ -338,47 +338,48 @@ static int palm_os_3_probe(struct usb_serial *serial,
|
|
goto exit;
|
|
}
|
|
|
|
- if (retval == sizeof(*connection_info)) {
|
|
- connection_info = (struct visor_connection_info *)
|
|
- transfer_buffer;
|
|
-
|
|
- num_ports = le16_to_cpu(connection_info->num_ports);
|
|
- for (i = 0; i < num_ports; ++i) {
|
|
- switch (
|
|
- connection_info->connections[i].port_function_id) {
|
|
- case VISOR_FUNCTION_GENERIC:
|
|
- string = "Generic";
|
|
- break;
|
|
- case VISOR_FUNCTION_DEBUGGER:
|
|
- string = "Debugger";
|
|
- break;
|
|
- case VISOR_FUNCTION_HOTSYNC:
|
|
- string = "HotSync";
|
|
- break;
|
|
- case VISOR_FUNCTION_CONSOLE:
|
|
- string = "Console";
|
|
- break;
|
|
- case VISOR_FUNCTION_REMOTE_FILE_SYS:
|
|
- string = "Remote File System";
|
|
- break;
|
|
- default:
|
|
- string = "unknown";
|
|
- break;
|
|
- }
|
|
- dev_info(dev, "%s: port %d, is for %s use\n",
|
|
- serial->type->description,
|
|
- connection_info->connections[i].port, string);
|
|
- }
|
|
+ if (retval != sizeof(*connection_info)) {
|
|
+ dev_err(dev, "Invalid connection information received from device\n");
|
|
+ retval = -ENODEV;
|
|
+ goto exit;
|
|
}
|
|
- /*
|
|
- * Handle devices that report invalid stuff here.
|
|
- */
|
|
+
|
|
+ connection_info = (struct visor_connection_info *)transfer_buffer;
|
|
+
|
|
+ num_ports = le16_to_cpu(connection_info->num_ports);
|
|
+
|
|
+ /* Handle devices that report invalid stuff here. */
|
|
if (num_ports == 0 || num_ports > 2) {
|
|
dev_warn(dev, "%s: No valid connect info available\n",
|
|
serial->type->description);
|
|
num_ports = 2;
|
|
}
|
|
|
|
+ for (i = 0; i < num_ports; ++i) {
|
|
+ switch (connection_info->connections[i].port_function_id) {
|
|
+ case VISOR_FUNCTION_GENERIC:
|
|
+ string = "Generic";
|
|
+ break;
|
|
+ case VISOR_FUNCTION_DEBUGGER:
|
|
+ string = "Debugger";
|
|
+ break;
|
|
+ case VISOR_FUNCTION_HOTSYNC:
|
|
+ string = "HotSync";
|
|
+ break;
|
|
+ case VISOR_FUNCTION_CONSOLE:
|
|
+ string = "Console";
|
|
+ break;
|
|
+ case VISOR_FUNCTION_REMOTE_FILE_SYS:
|
|
+ string = "Remote File System";
|
|
+ break;
|
|
+ default:
|
|
+ string = "unknown";
|
|
+ break;
|
|
+ }
|
|
+ dev_info(dev, "%s: port %d, is for %s use\n",
|
|
+ serial->type->description,
|
|
+ connection_info->connections[i].port, string);
|
|
+ }
|
|
dev_info(dev, "%s: Number of ports: %d\n", serial->type->description,
|
|
num_ports);
|
|
|
|
diff --git a/fs/xfs/xfs_file.c b/fs/xfs/xfs_file.c
|
|
index 6526ef0e2a23..fa68e81e9671 100644
|
|
--- a/fs/xfs/xfs_file.c
|
|
+++ b/fs/xfs/xfs_file.c
|
|
@@ -811,22 +811,26 @@ xfs_file_fallocate(
|
|
if (error)
|
|
goto out_unlock;
|
|
} else if (mode & FALLOC_FL_INSERT_RANGE) {
|
|
- unsigned int blksize_mask = i_blocksize(inode) - 1;
|
|
+ unsigned int blksize_mask = i_blocksize(inode) - 1;
|
|
+ loff_t isize = i_size_read(inode);
|
|
|
|
- new_size = i_size_read(inode) + len;
|
|
if (offset & blksize_mask || len & blksize_mask) {
|
|
error = -EINVAL;
|
|
goto out_unlock;
|
|
}
|
|
|
|
- /* check the new inode size does not wrap through zero */
|
|
- if (new_size > inode->i_sb->s_maxbytes) {
|
|
+ /*
|
|
+ * New inode size must not exceed ->s_maxbytes, accounting for
|
|
+ * possible signed overflow.
|
|
+ */
|
|
+ if (inode->i_sb->s_maxbytes - isize < len) {
|
|
error = -EFBIG;
|
|
goto out_unlock;
|
|
}
|
|
+ new_size = isize + len;
|
|
|
|
/* Offset should be less than i_size */
|
|
- if (offset >= i_size_read(inode)) {
|
|
+ if (offset >= isize) {
|
|
error = -EINVAL;
|
|
goto out_unlock;
|
|
}
|
|
diff --git a/include/net/dst.h b/include/net/dst.h
|
|
index 694c2e6ae618..ebfb4328fdb1 100644
|
|
--- a/include/net/dst.h
|
|
+++ b/include/net/dst.h
|
|
@@ -520,4 +520,12 @@ static inline struct xfrm_state *dst_xfrm(const struct dst_entry *dst)
|
|
}
|
|
#endif
|
|
|
|
+static inline void skb_dst_update_pmtu(struct sk_buff *skb, u32 mtu)
|
|
+{
|
|
+ struct dst_entry *dst = skb_dst(skb);
|
|
+
|
|
+ if (dst && dst->ops->update_pmtu)
|
|
+ dst->ops->update_pmtu(dst, NULL, skb, mtu);
|
|
+}
|
|
+
|
|
#endif /* _NET_DST_H */
|
|
diff --git a/kernel/trace/trace_uprobe.c b/kernel/trace/trace_uprobe.c
|
|
index 4525e0271a53..14d3af6a2953 100644
|
|
--- a/kernel/trace/trace_uprobe.c
|
|
+++ b/kernel/trace/trace_uprobe.c
|
|
@@ -55,6 +55,7 @@ struct trace_uprobe {
|
|
struct list_head list;
|
|
struct trace_uprobe_filter filter;
|
|
struct uprobe_consumer consumer;
|
|
+ struct path path;
|
|
struct inode *inode;
|
|
char *filename;
|
|
unsigned long offset;
|
|
@@ -287,7 +288,7 @@ static void free_trace_uprobe(struct trace_uprobe *tu)
|
|
for (i = 0; i < tu->tp.nr_args; i++)
|
|
traceprobe_free_probe_arg(&tu->tp.args[i]);
|
|
|
|
- iput(tu->inode);
|
|
+ path_put(&tu->path);
|
|
kfree(tu->tp.call.class->system);
|
|
kfree(tu->tp.call.name);
|
|
kfree(tu->filename);
|
|
@@ -361,7 +362,6 @@ static int register_trace_uprobe(struct trace_uprobe *tu)
|
|
static int create_trace_uprobe(int argc, char **argv)
|
|
{
|
|
struct trace_uprobe *tu;
|
|
- struct inode *inode;
|
|
char *arg, *event, *group, *filename;
|
|
char buf[MAX_EVENT_NAME_LEN];
|
|
struct path path;
|
|
@@ -369,7 +369,6 @@ static int create_trace_uprobe(int argc, char **argv)
|
|
bool is_delete, is_return;
|
|
int i, ret;
|
|
|
|
- inode = NULL;
|
|
ret = 0;
|
|
is_delete = false;
|
|
is_return = false;
|
|
@@ -435,21 +434,16 @@ static int create_trace_uprobe(int argc, char **argv)
|
|
}
|
|
/* Find the last occurrence, in case the path contains ':' too. */
|
|
arg = strrchr(argv[1], ':');
|
|
- if (!arg) {
|
|
- ret = -EINVAL;
|
|
- goto fail_address_parse;
|
|
- }
|
|
+ if (!arg)
|
|
+ return -EINVAL;
|
|
|
|
*arg++ = '\0';
|
|
filename = argv[1];
|
|
ret = kern_path(filename, LOOKUP_FOLLOW, &path);
|
|
if (ret)
|
|
- goto fail_address_parse;
|
|
-
|
|
- inode = igrab(d_inode(path.dentry));
|
|
- path_put(&path);
|
|
+ return ret;
|
|
|
|
- if (!inode || !S_ISREG(inode->i_mode)) {
|
|
+ if (!d_is_reg(path.dentry)) {
|
|
ret = -EINVAL;
|
|
goto fail_address_parse;
|
|
}
|
|
@@ -488,7 +482,7 @@ static int create_trace_uprobe(int argc, char **argv)
|
|
goto fail_address_parse;
|
|
}
|
|
tu->offset = offset;
|
|
- tu->inode = inode;
|
|
+ tu->path = path;
|
|
tu->filename = kstrdup(filename, GFP_KERNEL);
|
|
|
|
if (!tu->filename) {
|
|
@@ -556,7 +550,7 @@ static int create_trace_uprobe(int argc, char **argv)
|
|
return ret;
|
|
|
|
fail_address_parse:
|
|
- iput(inode);
|
|
+ path_put(&path);
|
|
|
|
pr_info("Failed to parse address or file.\n");
|
|
|
|
@@ -935,6 +929,7 @@ probe_event_enable(struct trace_uprobe *tu, struct trace_event_file *file,
|
|
goto err_flags;
|
|
|
|
tu->consumer.filter = filter;
|
|
+ tu->inode = d_real_inode(tu->path.dentry);
|
|
ret = uprobe_register(tu->inode, tu->offset, &tu->consumer);
|
|
if (ret)
|
|
goto err_buffer;
|
|
@@ -980,6 +975,7 @@ probe_event_disable(struct trace_uprobe *tu, struct trace_event_file *file)
|
|
WARN_ON(!uprobe_filter_is_empty(&tu->filter));
|
|
|
|
uprobe_unregister(tu->inode, tu->offset, &tu->consumer);
|
|
+ tu->inode = NULL;
|
|
tu->tp.flags &= file ? ~TP_FLAG_TRACE : ~TP_FLAG_PROFILE;
|
|
|
|
uprobe_buffer_disable();
|
|
diff --git a/kernel/tracepoint.c b/kernel/tracepoint.c
|
|
index 685c50ae6300..a170d83043a5 100644
|
|
--- a/kernel/tracepoint.c
|
|
+++ b/kernel/tracepoint.c
|
|
@@ -207,7 +207,7 @@ static int tracepoint_add_func(struct tracepoint *tp,
|
|
lockdep_is_held(&tracepoints_mutex));
|
|
old = func_add(&tp_funcs, func, prio);
|
|
if (IS_ERR(old)) {
|
|
- WARN_ON_ONCE(1);
|
|
+ WARN_ON_ONCE(PTR_ERR(old) != -ENOMEM);
|
|
return PTR_ERR(old);
|
|
}
|
|
|
|
@@ -240,7 +240,7 @@ static int tracepoint_remove_func(struct tracepoint *tp,
|
|
lockdep_is_held(&tracepoints_mutex));
|
|
old = func_remove(&tp_funcs, func);
|
|
if (IS_ERR(old)) {
|
|
- WARN_ON_ONCE(1);
|
|
+ WARN_ON_ONCE(PTR_ERR(old) != -ENOMEM);
|
|
return PTR_ERR(old);
|
|
}
|
|
|
|
diff --git a/lib/errseq.c b/lib/errseq.c
|
|
index 79cc66897db4..b6ed81ec788d 100644
|
|
--- a/lib/errseq.c
|
|
+++ b/lib/errseq.c
|
|
@@ -111,25 +111,22 @@ EXPORT_SYMBOL(errseq_set);
|
|
* errseq_sample - grab current errseq_t value
|
|
* @eseq: pointer to errseq_t to be sampled
|
|
*
|
|
- * This function allows callers to sample an errseq_t value, marking it as
|
|
- * "seen" if required.
|
|
+ * This function allows callers to initialise their errseq_t variable.
|
|
+ * If the error has been "seen", new callers will not see an old error.
|
|
+ * If there is an unseen error in @eseq, the caller of this function will
|
|
+ * see it the next time it checks for an error.
|
|
+ *
|
|
+ * Context: Any context.
|
|
+ * Return: The current errseq value.
|
|
*/
|
|
errseq_t errseq_sample(errseq_t *eseq)
|
|
{
|
|
errseq_t old = READ_ONCE(*eseq);
|
|
- errseq_t new = old;
|
|
|
|
- /*
|
|
- * For the common case of no errors ever having been set, we can skip
|
|
- * marking the SEEN bit. Once an error has been set, the value will
|
|
- * never go back to zero.
|
|
- */
|
|
- if (old != 0) {
|
|
- new |= ERRSEQ_SEEN;
|
|
- if (old != new)
|
|
- cmpxchg(eseq, old, new);
|
|
- }
|
|
- return new;
|
|
+ /* If nobody has seen this error yet, then we can be the first. */
|
|
+ if (!(old & ERRSEQ_SEEN))
|
|
+ old = 0;
|
|
+ return old;
|
|
}
|
|
EXPORT_SYMBOL(errseq_sample);
|
|
|
|
diff --git a/mm/percpu.c b/mm/percpu.c
|
|
index c80e796bf35c..5fa5e79b69f0 100644
|
|
--- a/mm/percpu.c
|
|
+++ b/mm/percpu.c
|
|
@@ -80,6 +80,7 @@
|
|
#include <linux/vmalloc.h>
|
|
#include <linux/workqueue.h>
|
|
#include <linux/kmemleak.h>
|
|
+#include <linux/sched.h>
|
|
|
|
#include <asm/cacheflush.h>
|
|
#include <asm/sections.h>
|
|
diff --git a/net/ipv4/ip_tunnel.c b/net/ipv4/ip_tunnel.c
|
|
index 13f7bbc0168d..a2fcc20774a6 100644
|
|
--- a/net/ipv4/ip_tunnel.c
|
|
+++ b/net/ipv4/ip_tunnel.c
|
|
@@ -521,8 +521,7 @@ static int tnl_update_pmtu(struct net_device *dev, struct sk_buff *skb,
|
|
else
|
|
mtu = skb_dst(skb) ? dst_mtu(skb_dst(skb)) : dev->mtu;
|
|
|
|
- if (skb_dst(skb))
|
|
- skb_dst(skb)->ops->update_pmtu(skb_dst(skb), NULL, skb, mtu);
|
|
+ skb_dst_update_pmtu(skb, mtu);
|
|
|
|
if (skb->protocol == htons(ETH_P_IP)) {
|
|
if (!skb_is_gso(skb) &&
|
|
diff --git a/net/ipv4/ip_vti.c b/net/ipv4/ip_vti.c
|
|
index 89453cf62158..c9cd891f69c2 100644
|
|
--- a/net/ipv4/ip_vti.c
|
|
+++ b/net/ipv4/ip_vti.c
|
|
@@ -209,7 +209,7 @@ static netdev_tx_t vti_xmit(struct sk_buff *skb, struct net_device *dev,
|
|
|
|
mtu = dst_mtu(dst);
|
|
if (skb->len > mtu) {
|
|
- skb_dst(skb)->ops->update_pmtu(skb_dst(skb), NULL, skb, mtu);
|
|
+ skb_dst_update_pmtu(skb, mtu);
|
|
if (skb->protocol == htons(ETH_P_IP)) {
|
|
icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
|
|
htonl(mtu));
|
|
diff --git a/net/ipv6/ip6_tunnel.c b/net/ipv6/ip6_tunnel.c
|
|
index 7e11f6a811f5..d61a82fd4b60 100644
|
|
--- a/net/ipv6/ip6_tunnel.c
|
|
+++ b/net/ipv6/ip6_tunnel.c
|
|
@@ -652,7 +652,7 @@ ip4ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
|
|
if (rel_info > dst_mtu(skb_dst(skb2)))
|
|
goto out;
|
|
|
|
- skb_dst(skb2)->ops->update_pmtu(skb_dst(skb2), NULL, skb2, rel_info);
|
|
+ skb_dst_update_pmtu(skb2, rel_info);
|
|
}
|
|
if (rel_type == ICMP_REDIRECT)
|
|
skb_dst(skb2)->ops->redirect(skb_dst(skb2), NULL, skb2);
|
|
@@ -1141,8 +1141,7 @@ int ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev, __u8 dsfield,
|
|
mtu = 576;
|
|
}
|
|
|
|
- if (skb_dst(skb) && !t->parms.collect_md)
|
|
- skb_dst(skb)->ops->update_pmtu(skb_dst(skb), NULL, skb, mtu);
|
|
+ skb_dst_update_pmtu(skb, mtu);
|
|
if (skb->len - t->tun_hlen - eth_hlen > mtu && !skb_is_gso(skb)) {
|
|
*pmtu = mtu;
|
|
err = -EMSGSIZE;
|
|
diff --git a/net/ipv6/ip6_vti.c b/net/ipv6/ip6_vti.c
|
|
index 7c0f647b5195..2493a40bc4b1 100644
|
|
--- a/net/ipv6/ip6_vti.c
|
|
+++ b/net/ipv6/ip6_vti.c
|
|
@@ -486,7 +486,7 @@ vti6_xmit(struct sk_buff *skb, struct net_device *dev, struct flowi *fl)
|
|
|
|
mtu = dst_mtu(dst);
|
|
if (!skb->ignore_df && skb->len > mtu) {
|
|
- skb_dst(skb)->ops->update_pmtu(dst, NULL, skb, mtu);
|
|
+ skb_dst_update_pmtu(skb, mtu);
|
|
|
|
if (skb->protocol == htons(ETH_P_IPV6)) {
|
|
if (mtu < IPV6_MIN_MTU)
|
|
diff --git a/net/ipv6/sit.c b/net/ipv6/sit.c
|
|
index f03c1a562135..b35d8905794c 100644
|
|
--- a/net/ipv6/sit.c
|
|
+++ b/net/ipv6/sit.c
|
|
@@ -925,8 +925,8 @@ static netdev_tx_t ipip6_tunnel_xmit(struct sk_buff *skb,
|
|
df = 0;
|
|
}
|
|
|
|
- if (tunnel->parms.iph.daddr && skb_dst(skb))
|
|
- skb_dst(skb)->ops->update_pmtu(skb_dst(skb), NULL, skb, mtu);
|
|
+ if (tunnel->parms.iph.daddr)
|
|
+ skb_dst_update_pmtu(skb, mtu);
|
|
|
|
if (skb->len > mtu && !skb_is_gso(skb)) {
|
|
icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
|
|
diff --git a/sound/core/pcm_compat.c b/sound/core/pcm_compat.c
|
|
index 06d7c40af570..6491afbb5fd5 100644
|
|
--- a/sound/core/pcm_compat.c
|
|
+++ b/sound/core/pcm_compat.c
|
|
@@ -423,6 +423,8 @@ static int snd_pcm_ioctl_xfern_compat(struct snd_pcm_substream *substream,
|
|
return -ENOTTY;
|
|
if (substream->stream != dir)
|
|
return -EINVAL;
|
|
+ if (substream->runtime->status->state == SNDRV_PCM_STATE_OPEN)
|
|
+ return -EBADFD;
|
|
|
|
if ((ch = substream->runtime->channels) > 128)
|
|
return -EINVAL;
|
|
diff --git a/sound/core/seq/seq_virmidi.c b/sound/core/seq/seq_virmidi.c
|
|
index f48a4cd24ffc..289ae6bb81d9 100644
|
|
--- a/sound/core/seq/seq_virmidi.c
|
|
+++ b/sound/core/seq/seq_virmidi.c
|
|
@@ -174,12 +174,12 @@ static void snd_virmidi_output_trigger(struct snd_rawmidi_substream *substream,
|
|
}
|
|
return;
|
|
}
|
|
+ spin_lock_irqsave(&substream->runtime->lock, flags);
|
|
if (vmidi->event.type != SNDRV_SEQ_EVENT_NONE) {
|
|
if (snd_seq_kernel_client_dispatch(vmidi->client, &vmidi->event, in_atomic(), 0) < 0)
|
|
- return;
|
|
+ goto out;
|
|
vmidi->event.type = SNDRV_SEQ_EVENT_NONE;
|
|
}
|
|
- spin_lock_irqsave(&substream->runtime->lock, flags);
|
|
while (1) {
|
|
count = __snd_rawmidi_transmit_peek(substream, buf, sizeof(buf));
|
|
if (count <= 0)
|
|
diff --git a/sound/drivers/aloop.c b/sound/drivers/aloop.c
|
|
index 829e2f6bfb73..dfd30a80ece8 100644
|
|
--- a/sound/drivers/aloop.c
|
|
+++ b/sound/drivers/aloop.c
|
|
@@ -296,6 +296,8 @@ static int loopback_trigger(struct snd_pcm_substream *substream, int cmd)
|
|
cable->pause |= stream;
|
|
loopback_timer_stop(dpcm);
|
|
spin_unlock(&cable->lock);
|
|
+ if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
|
|
+ loopback_active_notify(dpcm);
|
|
break;
|
|
case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
|
|
case SNDRV_PCM_TRIGGER_RESUME:
|
|
@@ -304,6 +306,8 @@ static int loopback_trigger(struct snd_pcm_substream *substream, int cmd)
|
|
cable->pause &= ~stream;
|
|
loopback_timer_start(dpcm);
|
|
spin_unlock(&cable->lock);
|
|
+ if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
|
|
+ loopback_active_notify(dpcm);
|
|
break;
|
|
default:
|
|
return -EINVAL;
|
|
@@ -828,9 +832,11 @@ static int loopback_rate_shift_get(struct snd_kcontrol *kcontrol,
|
|
{
|
|
struct loopback *loopback = snd_kcontrol_chip(kcontrol);
|
|
|
|
+ mutex_lock(&loopback->cable_lock);
|
|
ucontrol->value.integer.value[0] =
|
|
loopback->setup[kcontrol->id.subdevice]
|
|
[kcontrol->id.device].rate_shift;
|
|
+ mutex_unlock(&loopback->cable_lock);
|
|
return 0;
|
|
}
|
|
|
|
@@ -862,9 +868,11 @@ static int loopback_notify_get(struct snd_kcontrol *kcontrol,
|
|
{
|
|
struct loopback *loopback = snd_kcontrol_chip(kcontrol);
|
|
|
|
+ mutex_lock(&loopback->cable_lock);
|
|
ucontrol->value.integer.value[0] =
|
|
loopback->setup[kcontrol->id.subdevice]
|
|
[kcontrol->id.device].notify;
|
|
+ mutex_unlock(&loopback->cable_lock);
|
|
return 0;
|
|
}
|
|
|
|
@@ -876,12 +884,14 @@ static int loopback_notify_put(struct snd_kcontrol *kcontrol,
|
|
int change = 0;
|
|
|
|
val = ucontrol->value.integer.value[0] ? 1 : 0;
|
|
+ mutex_lock(&loopback->cable_lock);
|
|
if (val != loopback->setup[kcontrol->id.subdevice]
|
|
[kcontrol->id.device].notify) {
|
|
loopback->setup[kcontrol->id.subdevice]
|
|
[kcontrol->id.device].notify = val;
|
|
change = 1;
|
|
}
|
|
+ mutex_unlock(&loopback->cable_lock);
|
|
return change;
|
|
}
|
|
|
|
@@ -889,13 +899,18 @@ static int loopback_active_get(struct snd_kcontrol *kcontrol,
|
|
struct snd_ctl_elem_value *ucontrol)
|
|
{
|
|
struct loopback *loopback = snd_kcontrol_chip(kcontrol);
|
|
- struct loopback_cable *cable = loopback->cables
|
|
- [kcontrol->id.subdevice][kcontrol->id.device ^ 1];
|
|
+ struct loopback_cable *cable;
|
|
+
|
|
unsigned int val = 0;
|
|
|
|
- if (cable != NULL)
|
|
- val = (cable->running & (1 << SNDRV_PCM_STREAM_PLAYBACK)) ?
|
|
- 1 : 0;
|
|
+ mutex_lock(&loopback->cable_lock);
|
|
+ cable = loopback->cables[kcontrol->id.subdevice][kcontrol->id.device ^ 1];
|
|
+ if (cable != NULL) {
|
|
+ unsigned int running = cable->running ^ cable->pause;
|
|
+
|
|
+ val = (running & (1 << SNDRV_PCM_STREAM_PLAYBACK)) ? 1 : 0;
|
|
+ }
|
|
+ mutex_unlock(&loopback->cable_lock);
|
|
ucontrol->value.integer.value[0] = val;
|
|
return 0;
|
|
}
|
|
@@ -938,9 +953,11 @@ static int loopback_rate_get(struct snd_kcontrol *kcontrol,
|
|
{
|
|
struct loopback *loopback = snd_kcontrol_chip(kcontrol);
|
|
|
|
+ mutex_lock(&loopback->cable_lock);
|
|
ucontrol->value.integer.value[0] =
|
|
loopback->setup[kcontrol->id.subdevice]
|
|
[kcontrol->id.device].rate;
|
|
+ mutex_unlock(&loopback->cable_lock);
|
|
return 0;
|
|
}
|
|
|
|
@@ -960,9 +977,11 @@ static int loopback_channels_get(struct snd_kcontrol *kcontrol,
|
|
{
|
|
struct loopback *loopback = snd_kcontrol_chip(kcontrol);
|
|
|
|
+ mutex_lock(&loopback->cable_lock);
|
|
ucontrol->value.integer.value[0] =
|
|
loopback->setup[kcontrol->id.subdevice]
|
|
[kcontrol->id.device].channels;
|
|
+ mutex_unlock(&loopback->cable_lock);
|
|
return 0;
|
|
}
|
|
|
|
diff --git a/sound/firewire/amdtp-stream.c b/sound/firewire/amdtp-stream.c
|
|
index 3fc581a5ad62..d7d47dc8b5f1 100644
|
|
--- a/sound/firewire/amdtp-stream.c
|
|
+++ b/sound/firewire/amdtp-stream.c
|
|
@@ -773,8 +773,6 @@ static void amdtp_stream_first_callback(struct fw_iso_context *context,
|
|
u32 cycle;
|
|
unsigned int packets;
|
|
|
|
- s->max_payload_length = amdtp_stream_get_max_payload(s);
|
|
-
|
|
/*
|
|
* For in-stream, first packet has come.
|
|
* For out-stream, prepared to transmit first packet
|
|
@@ -879,6 +877,9 @@ int amdtp_stream_start(struct amdtp_stream *s, int channel, int speed)
|
|
|
|
amdtp_stream_update(s);
|
|
|
|
+ if (s->direction == AMDTP_IN_STREAM)
|
|
+ s->max_payload_length = amdtp_stream_get_max_payload(s);
|
|
+
|
|
if (s->flags & CIP_NO_HEADER)
|
|
s->tag = TAG_NO_CIP_HEADER;
|
|
else
|
|
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c
|
|
index 59daf9901466..6ae061183eff 100644
|
|
--- a/sound/pci/hda/patch_realtek.c
|
|
+++ b/sound/pci/hda/patch_realtek.c
|
|
@@ -3722,7 +3722,7 @@ static void alc280_fixup_hp_gpio4(struct hda_codec *codec,
|
|
}
|
|
}
|
|
|
|
-#if IS_REACHABLE(INPUT)
|
|
+#if IS_REACHABLE(CONFIG_INPUT)
|
|
static void gpio2_mic_hotkey_event(struct hda_codec *codec,
|
|
struct hda_jack_callback *event)
|
|
{
|
|
diff --git a/tools/testing/selftests/firmware/fw_filesystem.sh b/tools/testing/selftests/firmware/fw_filesystem.sh
|
|
index 13ade39fe832..13ecf4b61b2b 100755
|
|
--- a/tools/testing/selftests/firmware/fw_filesystem.sh
|
|
+++ b/tools/testing/selftests/firmware/fw_filesystem.sh
|
|
@@ -46,9 +46,11 @@ test_finish()
|
|
echo "$OLD_TIMEOUT" >/sys/class/firmware/timeout
|
|
fi
|
|
if [ "$OLD_FWPATH" = "" ]; then
|
|
- OLD_FWPATH=" "
|
|
+ # A zero-length write won't work; write a null byte
|
|
+ printf '\000' >/sys/module/firmware_class/parameters/path
|
|
+ else
|
|
+ echo -n "$OLD_FWPATH" >/sys/module/firmware_class/parameters/path
|
|
fi
|
|
- echo -n "$OLD_FWPATH" >/sys/module/firmware_class/parameters/path
|
|
rm -f "$FW"
|
|
rmdir "$FWPATH"
|
|
}
|