mirror of
https://github.com/Fishwaldo/build.git
synced 2025-03-22 14:51:41 +00:00
988 lines
32 KiB
Diff
988 lines
32 KiB
Diff
diff --git a/Makefile b/Makefile
|
|
index 2a13d9d63880..51ee14329c47 100644
|
|
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -1,6 +1,6 @@
|
|
VERSION = 3
|
|
PATCHLEVEL = 14
|
|
-SUBLEVEL = 56
|
|
+SUBLEVEL = 57
|
|
EXTRAVERSION =
|
|
NAME = Remembering Coco
|
|
|
|
diff --git a/arch/arm64/kernel/stacktrace.c b/arch/arm64/kernel/stacktrace.c
|
|
index 38f0558f0c0a..c3b6c63ea5fb 100644
|
|
--- a/arch/arm64/kernel/stacktrace.c
|
|
+++ b/arch/arm64/kernel/stacktrace.c
|
|
@@ -48,11 +48,7 @@ int unwind_frame(struct stackframe *frame)
|
|
|
|
frame->sp = fp + 0x10;
|
|
frame->fp = *(unsigned long *)(fp);
|
|
- /*
|
|
- * -4 here because we care about the PC at time of bl,
|
|
- * not where the return will go.
|
|
- */
|
|
- frame->pc = *(unsigned long *)(fp + 8) - 4;
|
|
+ frame->pc = *(unsigned long *)(fp + 8);
|
|
|
|
return 0;
|
|
}
|
|
diff --git a/arch/powerpc/kernel/rtas.c b/arch/powerpc/kernel/rtas.c
|
|
index c4bc8d6cfd79..e6b028d3b1e7 100644
|
|
--- a/arch/powerpc/kernel/rtas.c
|
|
+++ b/arch/powerpc/kernel/rtas.c
|
|
@@ -1041,6 +1041,9 @@ asmlinkage int ppc_rtas(struct rtas_args __user *uargs)
|
|
if (!capable(CAP_SYS_ADMIN))
|
|
return -EPERM;
|
|
|
|
+ if (!rtas.entry)
|
|
+ return -EINVAL;
|
|
+
|
|
if (copy_from_user(&args, uargs, 3 * sizeof(u32)) != 0)
|
|
return -EFAULT;
|
|
|
|
diff --git a/arch/x86/xen/enlighten.c b/arch/x86/xen/enlighten.c
|
|
index 4dca0d50762e..a7fab60bdeeb 100644
|
|
--- a/arch/x86/xen/enlighten.c
|
|
+++ b/arch/x86/xen/enlighten.c
|
|
@@ -33,7 +33,7 @@
|
|
#include <linux/memblock.h>
|
|
#include <linux/edd.h>
|
|
|
|
-#ifdef CONFIG_KEXEC_CORE
|
|
+#ifdef CONFIG_KEXEC
|
|
#include <linux/kexec.h>
|
|
#endif
|
|
|
|
@@ -1848,7 +1848,7 @@ static struct notifier_block xen_hvm_cpu_notifier = {
|
|
.notifier_call = xen_hvm_cpu_notify,
|
|
};
|
|
|
|
-#ifdef CONFIG_KEXEC_CORE
|
|
+#ifdef CONFIG_KEXEC
|
|
static void xen_hvm_shutdown(void)
|
|
{
|
|
native_machine_shutdown();
|
|
@@ -1879,7 +1879,7 @@ static void __init xen_hvm_guest_init(void)
|
|
x86_init.irqs.intr_init = xen_init_IRQ;
|
|
xen_hvm_init_time_ops();
|
|
xen_hvm_init_mmu_ops();
|
|
-#ifdef CONFIG_KEXEC_CORE
|
|
+#ifdef CONFIG_KEXEC
|
|
machine_ops.shutdown = xen_hvm_shutdown;
|
|
machine_ops.crash_shutdown = xen_hvm_crash_shutdown;
|
|
#endif
|
|
diff --git a/crypto/ablkcipher.c b/crypto/ablkcipher.c
|
|
index 40886c489903..520729d898fe 100644
|
|
--- a/crypto/ablkcipher.c
|
|
+++ b/crypto/ablkcipher.c
|
|
@@ -695,7 +695,7 @@ struct crypto_ablkcipher *crypto_alloc_ablkcipher(const char *alg_name,
|
|
err:
|
|
if (err != -EAGAIN)
|
|
break;
|
|
- if (signal_pending(current)) {
|
|
+ if (fatal_signal_pending(current)) {
|
|
err = -EINTR;
|
|
break;
|
|
}
|
|
diff --git a/crypto/algapi.c b/crypto/algapi.c
|
|
index 00d8d939733b..daf2f653b131 100644
|
|
--- a/crypto/algapi.c
|
|
+++ b/crypto/algapi.c
|
|
@@ -325,7 +325,7 @@ static void crypto_wait_for_test(struct crypto_larval *larval)
|
|
crypto_alg_tested(larval->alg.cra_driver_name, 0);
|
|
}
|
|
|
|
- err = wait_for_completion_interruptible(&larval->completion);
|
|
+ err = wait_for_completion_killable(&larval->completion);
|
|
WARN_ON(err);
|
|
|
|
out:
|
|
diff --git a/crypto/api.c b/crypto/api.c
|
|
index 2a81e98a0021..7db2e89a3114 100644
|
|
--- a/crypto/api.c
|
|
+++ b/crypto/api.c
|
|
@@ -172,7 +172,7 @@ static struct crypto_alg *crypto_larval_wait(struct crypto_alg *alg)
|
|
struct crypto_larval *larval = (void *)alg;
|
|
long timeout;
|
|
|
|
- timeout = wait_for_completion_interruptible_timeout(
|
|
+ timeout = wait_for_completion_killable_timeout(
|
|
&larval->completion, 60 * HZ);
|
|
|
|
alg = larval->adult;
|
|
@@ -435,7 +435,7 @@ struct crypto_tfm *crypto_alloc_base(const char *alg_name, u32 type, u32 mask)
|
|
err:
|
|
if (err != -EAGAIN)
|
|
break;
|
|
- if (signal_pending(current)) {
|
|
+ if (fatal_signal_pending(current)) {
|
|
err = -EINTR;
|
|
break;
|
|
}
|
|
@@ -552,7 +552,7 @@ void *crypto_alloc_tfm(const char *alg_name,
|
|
err:
|
|
if (err != -EAGAIN)
|
|
break;
|
|
- if (signal_pending(current)) {
|
|
+ if (fatal_signal_pending(current)) {
|
|
err = -EINTR;
|
|
break;
|
|
}
|
|
diff --git a/crypto/crypto_user.c b/crypto/crypto_user.c
|
|
index 43665d0d0905..c7666f401381 100644
|
|
--- a/crypto/crypto_user.c
|
|
+++ b/crypto/crypto_user.c
|
|
@@ -361,7 +361,7 @@ static struct crypto_alg *crypto_user_aead_alg(const char *name, u32 type,
|
|
err = PTR_ERR(alg);
|
|
if (err != -EAGAIN)
|
|
break;
|
|
- if (signal_pending(current)) {
|
|
+ if (fatal_signal_pending(current)) {
|
|
err = -EINTR;
|
|
break;
|
|
}
|
|
diff --git a/drivers/block/rbd.c b/drivers/block/rbd.c
|
|
index 2ea515509ca6..eb3dff3500c2 100644
|
|
--- a/drivers/block/rbd.c
|
|
+++ b/drivers/block/rbd.c
|
|
@@ -94,6 +94,8 @@ static int atomic_dec_return_safe(atomic_t *v)
|
|
#define RBD_MINORS_PER_MAJOR 256
|
|
#define RBD_SINGLE_MAJOR_PART_SHIFT 4
|
|
|
|
+#define RBD_MAX_PARENT_CHAIN_LEN 16
|
|
+
|
|
#define RBD_SNAP_DEV_NAME_PREFIX "snap_"
|
|
#define RBD_MAX_SNAP_NAME_LEN \
|
|
(NAME_MAX - (sizeof (RBD_SNAP_DEV_NAME_PREFIX) - 1))
|
|
@@ -411,7 +413,7 @@ static ssize_t rbd_add_single_major(struct bus_type *bus, const char *buf,
|
|
size_t count);
|
|
static ssize_t rbd_remove_single_major(struct bus_type *bus, const char *buf,
|
|
size_t count);
|
|
-static int rbd_dev_image_probe(struct rbd_device *rbd_dev, bool mapping);
|
|
+static int rbd_dev_image_probe(struct rbd_device *rbd_dev, int depth);
|
|
static void rbd_spec_put(struct rbd_spec *spec);
|
|
|
|
static int rbd_dev_id_to_minor(int dev_id)
|
|
@@ -3443,6 +3445,9 @@ static int rbd_init_disk(struct rbd_device *rbd_dev)
|
|
blk_queue_io_opt(q, segment_size);
|
|
|
|
blk_queue_merge_bvec(q, rbd_merge_bvec);
|
|
+ if (!ceph_test_opt(rbd_dev->rbd_client->client, NOCRC))
|
|
+ q->backing_dev_info.capabilities |= BDI_CAP_STABLE_WRITES;
|
|
+
|
|
disk->queue = q;
|
|
|
|
q->queuedata = rbd_dev;
|
|
@@ -4819,44 +4824,50 @@ out_err:
|
|
return ret;
|
|
}
|
|
|
|
-static int rbd_dev_probe_parent(struct rbd_device *rbd_dev)
|
|
+/*
|
|
+ * @depth is rbd_dev_image_probe() -> rbd_dev_probe_parent() ->
|
|
+ * rbd_dev_image_probe() recursion depth, which means it's also the
|
|
+ * length of the already discovered part of the parent chain.
|
|
+ */
|
|
+static int rbd_dev_probe_parent(struct rbd_device *rbd_dev, int depth)
|
|
{
|
|
struct rbd_device *parent = NULL;
|
|
- struct rbd_spec *parent_spec;
|
|
- struct rbd_client *rbdc;
|
|
int ret;
|
|
|
|
if (!rbd_dev->parent_spec)
|
|
return 0;
|
|
- /*
|
|
- * We need to pass a reference to the client and the parent
|
|
- * spec when creating the parent rbd_dev. Images related by
|
|
- * parent/child relationships always share both.
|
|
- */
|
|
- parent_spec = rbd_spec_get(rbd_dev->parent_spec);
|
|
- rbdc = __rbd_get_client(rbd_dev->rbd_client);
|
|
|
|
- ret = -ENOMEM;
|
|
- parent = rbd_dev_create(rbdc, parent_spec);
|
|
- if (!parent)
|
|
+ if (++depth > RBD_MAX_PARENT_CHAIN_LEN) {
|
|
+ pr_info("parent chain is too long (%d)\n", depth);
|
|
+ ret = -EINVAL;
|
|
goto out_err;
|
|
+ }
|
|
|
|
- ret = rbd_dev_image_probe(parent, false);
|
|
+ parent = rbd_dev_create(rbd_dev->rbd_client, rbd_dev->parent_spec);
|
|
+ if (!parent) {
|
|
+ ret = -ENOMEM;
|
|
+ goto out_err;
|
|
+ }
|
|
+
|
|
+ /*
|
|
+ * Images related by parent/child relationships always share
|
|
+ * rbd_client and spec/parent_spec, so bump their refcounts.
|
|
+ */
|
|
+ __rbd_get_client(rbd_dev->rbd_client);
|
|
+ rbd_spec_get(rbd_dev->parent_spec);
|
|
+
|
|
+ ret = rbd_dev_image_probe(parent, depth);
|
|
if (ret < 0)
|
|
goto out_err;
|
|
+
|
|
rbd_dev->parent = parent;
|
|
atomic_set(&rbd_dev->parent_ref, 1);
|
|
-
|
|
return 0;
|
|
+
|
|
out_err:
|
|
- if (parent) {
|
|
- rbd_dev_unparent(rbd_dev);
|
|
+ rbd_dev_unparent(rbd_dev);
|
|
+ if (parent)
|
|
rbd_dev_destroy(parent);
|
|
- } else {
|
|
- rbd_put_client(rbdc);
|
|
- rbd_spec_put(parent_spec);
|
|
- }
|
|
-
|
|
return ret;
|
|
}
|
|
|
|
@@ -4972,7 +4983,7 @@ static void rbd_dev_image_release(struct rbd_device *rbd_dev)
|
|
* parent), initiate a watch on its header object before using that
|
|
* object to get detailed information about the rbd image.
|
|
*/
|
|
-static int rbd_dev_image_probe(struct rbd_device *rbd_dev, bool mapping)
|
|
+static int rbd_dev_image_probe(struct rbd_device *rbd_dev, int depth)
|
|
{
|
|
int ret;
|
|
|
|
@@ -4992,7 +5003,7 @@ static int rbd_dev_image_probe(struct rbd_device *rbd_dev, bool mapping)
|
|
if (ret)
|
|
goto err_out_format;
|
|
|
|
- if (mapping) {
|
|
+ if (!depth) {
|
|
ret = rbd_dev_header_watch_sync(rbd_dev);
|
|
if (ret)
|
|
goto out_header_name;
|
|
@@ -5009,7 +5020,7 @@ static int rbd_dev_image_probe(struct rbd_device *rbd_dev, bool mapping)
|
|
if (ret)
|
|
goto err_out_probe;
|
|
|
|
- ret = rbd_dev_probe_parent(rbd_dev);
|
|
+ ret = rbd_dev_probe_parent(rbd_dev, depth);
|
|
if (ret)
|
|
goto err_out_probe;
|
|
|
|
@@ -5020,7 +5031,7 @@ static int rbd_dev_image_probe(struct rbd_device *rbd_dev, bool mapping)
|
|
err_out_probe:
|
|
rbd_dev_unprobe(rbd_dev);
|
|
err_out_watch:
|
|
- if (mapping)
|
|
+ if (!depth)
|
|
rbd_dev_header_unwatch_sync(rbd_dev);
|
|
out_header_name:
|
|
kfree(rbd_dev->header_name);
|
|
@@ -5087,7 +5098,7 @@ static ssize_t do_rbd_add(struct bus_type *bus,
|
|
rbdc = NULL; /* rbd_dev now owns this */
|
|
spec = NULL; /* rbd_dev now owns this */
|
|
|
|
- rc = rbd_dev_image_probe(rbd_dev, true);
|
|
+ rc = rbd_dev_image_probe(rbd_dev, 0);
|
|
if (rc < 0)
|
|
goto err_out_rbd_dev;
|
|
|
|
diff --git a/drivers/block/xen-blkfront.c b/drivers/block/xen-blkfront.c
|
|
index e88556ac8318..d4285270f20c 100644
|
|
--- a/drivers/block/xen-blkfront.c
|
|
+++ b/drivers/block/xen-blkfront.c
|
|
@@ -1917,7 +1917,8 @@ static void blkback_changed(struct xenbus_device *dev,
|
|
break;
|
|
/* Missed the backend's Closing state -- fallthrough */
|
|
case XenbusStateClosing:
|
|
- blkfront_closing(info);
|
|
+ if (info)
|
|
+ blkfront_closing(info);
|
|
break;
|
|
}
|
|
}
|
|
diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c
|
|
index c51469051e41..958b26dcac8a 100644
|
|
--- a/drivers/gpu/drm/i915/intel_display.c
|
|
+++ b/drivers/gpu/drm/i915/intel_display.c
|
|
@@ -1451,6 +1451,8 @@ static void i9xx_enable_pll(struct intel_crtc *crtc)
|
|
|
|
I915_WRITE(reg, dpll);
|
|
|
|
+ I915_WRITE(reg, dpll);
|
|
+
|
|
/* Wait for the clocks to stabilize. */
|
|
POSTING_READ(reg);
|
|
udelay(150);
|
|
diff --git a/drivers/gpu/drm/nouveau/nouveau_gem.c b/drivers/gpu/drm/nouveau/nouveau_gem.c
|
|
index 27c3fd89e8ce..e85525427d9c 100644
|
|
--- a/drivers/gpu/drm/nouveau/nouveau_gem.c
|
|
+++ b/drivers/gpu/drm/nouveau/nouveau_gem.c
|
|
@@ -196,11 +196,12 @@ nouveau_gem_info(struct drm_file *file_priv, struct drm_gem_object *gem,
|
|
struct nouveau_bo *nvbo = nouveau_gem_object(gem);
|
|
struct nouveau_vma *vma;
|
|
|
|
- if (nvbo->bo.mem.mem_type == TTM_PL_TT)
|
|
+ if (is_power_of_2(nvbo->valid_domains))
|
|
+ rep->domain = nvbo->valid_domains;
|
|
+ else if (nvbo->bo.mem.mem_type == TTM_PL_TT)
|
|
rep->domain = NOUVEAU_GEM_DOMAIN_GART;
|
|
else
|
|
rep->domain = NOUVEAU_GEM_DOMAIN_VRAM;
|
|
-
|
|
rep->offset = nvbo->bo.offset;
|
|
if (cli->base.vm) {
|
|
vma = nouveau_bo_vma_find(nvbo, cli->base.vm);
|
|
diff --git a/drivers/gpu/drm/radeon/radeon.h b/drivers/gpu/drm/radeon/radeon.h
|
|
index b837e9f9f8ce..1f14f32853ef 100644
|
|
--- a/drivers/gpu/drm/radeon/radeon.h
|
|
+++ b/drivers/gpu/drm/radeon/radeon.h
|
|
@@ -1551,6 +1551,7 @@ struct radeon_pm {
|
|
struct device *int_hwmon_dev;
|
|
/* dpm */
|
|
bool dpm_enabled;
|
|
+ bool sysfs_initialized;
|
|
struct radeon_dpm dpm;
|
|
};
|
|
|
|
diff --git a/drivers/gpu/drm/radeon/radeon_pm.c b/drivers/gpu/drm/radeon/radeon_pm.c
|
|
index 214adc6d2a68..0b00de55b2a4 100644
|
|
--- a/drivers/gpu/drm/radeon/radeon_pm.c
|
|
+++ b/drivers/gpu/drm/radeon/radeon_pm.c
|
|
@@ -1350,19 +1350,23 @@ int radeon_pm_late_init(struct radeon_device *rdev)
|
|
|
|
if (rdev->pm.pm_method == PM_METHOD_DPM) {
|
|
if (rdev->pm.dpm_enabled) {
|
|
- ret = device_create_file(rdev->dev, &dev_attr_power_dpm_state);
|
|
- if (ret)
|
|
- DRM_ERROR("failed to create device file for dpm state\n");
|
|
- ret = device_create_file(rdev->dev, &dev_attr_power_dpm_force_performance_level);
|
|
- if (ret)
|
|
- DRM_ERROR("failed to create device file for dpm state\n");
|
|
- /* XXX: these are noops for dpm but are here for backwards compat */
|
|
- ret = device_create_file(rdev->dev, &dev_attr_power_profile);
|
|
- if (ret)
|
|
- DRM_ERROR("failed to create device file for power profile\n");
|
|
- ret = device_create_file(rdev->dev, &dev_attr_power_method);
|
|
- if (ret)
|
|
- DRM_ERROR("failed to create device file for power method\n");
|
|
+ if (!rdev->pm.sysfs_initialized) {
|
|
+ ret = device_create_file(rdev->dev, &dev_attr_power_dpm_state);
|
|
+ if (ret)
|
|
+ DRM_ERROR("failed to create device file for dpm state\n");
|
|
+ ret = device_create_file(rdev->dev, &dev_attr_power_dpm_force_performance_level);
|
|
+ if (ret)
|
|
+ DRM_ERROR("failed to create device file for dpm state\n");
|
|
+ /* XXX: these are noops for dpm but are here for backwards compat */
|
|
+ ret = device_create_file(rdev->dev, &dev_attr_power_profile);
|
|
+ if (ret)
|
|
+ DRM_ERROR("failed to create device file for power profile\n");
|
|
+ ret = device_create_file(rdev->dev, &dev_attr_power_method);
|
|
+ if (ret)
|
|
+ DRM_ERROR("failed to create device file for power method\n");
|
|
+ if (!ret)
|
|
+ rdev->pm.sysfs_initialized = true;
|
|
+ }
|
|
|
|
mutex_lock(&rdev->pm.mutex);
|
|
ret = radeon_dpm_late_enable(rdev);
|
|
@@ -1378,7 +1382,8 @@ int radeon_pm_late_init(struct radeon_device *rdev)
|
|
}
|
|
}
|
|
} else {
|
|
- if (rdev->pm.num_power_states > 1) {
|
|
+ if ((rdev->pm.num_power_states > 1) &&
|
|
+ (!rdev->pm.sysfs_initialized)) {
|
|
/* where's the best place to put these? */
|
|
ret = device_create_file(rdev->dev, &dev_attr_power_profile);
|
|
if (ret)
|
|
@@ -1386,6 +1391,8 @@ int radeon_pm_late_init(struct radeon_device *rdev)
|
|
ret = device_create_file(rdev->dev, &dev_attr_power_method);
|
|
if (ret)
|
|
DRM_ERROR("failed to create device file for power method\n");
|
|
+ if (!ret)
|
|
+ rdev->pm.sysfs_initialized = true;
|
|
}
|
|
}
|
|
return ret;
|
|
diff --git a/drivers/infiniband/core/cm.c b/drivers/infiniband/core/cm.c
|
|
index c3239170d8b7..5311cac12132 100644
|
|
--- a/drivers/infiniband/core/cm.c
|
|
+++ b/drivers/infiniband/core/cm.c
|
|
@@ -860,6 +860,11 @@ retest:
|
|
case IB_CM_SIDR_REQ_RCVD:
|
|
spin_unlock_irq(&cm_id_priv->lock);
|
|
cm_reject_sidr_req(cm_id_priv, IB_SIDR_REJECT);
|
|
+ spin_lock_irq(&cm.lock);
|
|
+ if (!RB_EMPTY_NODE(&cm_id_priv->sidr_id_node))
|
|
+ rb_erase(&cm_id_priv->sidr_id_node,
|
|
+ &cm.remote_sidr_table);
|
|
+ spin_unlock_irq(&cm.lock);
|
|
break;
|
|
case IB_CM_REQ_SENT:
|
|
ib_cancel_mad(cm_id_priv->av.port->mad_agent, cm_id_priv->msg);
|
|
@@ -3099,7 +3104,10 @@ int ib_send_cm_sidr_rep(struct ib_cm_id *cm_id,
|
|
spin_unlock_irqrestore(&cm_id_priv->lock, flags);
|
|
|
|
spin_lock_irqsave(&cm.lock, flags);
|
|
- rb_erase(&cm_id_priv->sidr_id_node, &cm.remote_sidr_table);
|
|
+ if (!RB_EMPTY_NODE(&cm_id_priv->sidr_id_node)) {
|
|
+ rb_erase(&cm_id_priv->sidr_id_node, &cm.remote_sidr_table);
|
|
+ RB_CLEAR_NODE(&cm_id_priv->sidr_id_node);
|
|
+ }
|
|
spin_unlock_irqrestore(&cm.lock, flags);
|
|
return 0;
|
|
|
|
diff --git a/drivers/iommu/amd_iommu.c b/drivers/iommu/amd_iommu.c
|
|
index 935974090aa0..b0cb66208c8b 100644
|
|
--- a/drivers/iommu/amd_iommu.c
|
|
+++ b/drivers/iommu/amd_iommu.c
|
|
@@ -2152,8 +2152,8 @@ static void set_dte_entry(u16 devid, struct protection_domain *domain, bool ats)
|
|
static void clear_dte_entry(u16 devid)
|
|
{
|
|
/* remove entry from the device table seen by the hardware */
|
|
- amd_iommu_dev_table[devid].data[0] = IOMMU_PTE_P | IOMMU_PTE_TV;
|
|
- amd_iommu_dev_table[devid].data[1] = 0;
|
|
+ amd_iommu_dev_table[devid].data[0] = IOMMU_PTE_P | IOMMU_PTE_TV;
|
|
+ amd_iommu_dev_table[devid].data[1] &= DTE_FLAG_MASK;
|
|
|
|
amd_iommu_apply_erratum_63(devid);
|
|
}
|
|
diff --git a/drivers/iommu/amd_iommu_types.h b/drivers/iommu/amd_iommu_types.h
|
|
index e400fbe411de..e0c39940f659 100644
|
|
--- a/drivers/iommu/amd_iommu_types.h
|
|
+++ b/drivers/iommu/amd_iommu_types.h
|
|
@@ -283,6 +283,7 @@
|
|
#define IOMMU_PTE_IR (1ULL << 61)
|
|
#define IOMMU_PTE_IW (1ULL << 62)
|
|
|
|
+#define DTE_FLAG_MASK (0x3ffULL << 32)
|
|
#define DTE_FLAG_IOTLB (0x01UL << 32)
|
|
#define DTE_FLAG_GV (0x01ULL << 55)
|
|
#define DTE_GLX_SHIFT (56)
|
|
diff --git a/drivers/md/md.c b/drivers/md/md.c
|
|
index 31d14d88205b..af837313d431 100644
|
|
--- a/drivers/md/md.c
|
|
+++ b/drivers/md/md.c
|
|
@@ -7775,8 +7775,7 @@ static int remove_and_add_spares(struct mddev *mddev,
|
|
!test_bit(Bitmap_sync, &rdev->flags)))
|
|
continue;
|
|
|
|
- if (rdev->saved_raid_disk < 0)
|
|
- rdev->recovery_offset = 0;
|
|
+ rdev->recovery_offset = 0;
|
|
if (mddev->pers->
|
|
hot_add_disk(mddev, rdev) == 0) {
|
|
if (sysfs_link_rdev(mddev, rdev))
|
|
diff --git a/drivers/md/persistent-data/dm-btree-remove.c b/drivers/md/persistent-data/dm-btree-remove.c
|
|
index 7c0d75547ccf..92cd09f3c69b 100644
|
|
--- a/drivers/md/persistent-data/dm-btree-remove.c
|
|
+++ b/drivers/md/persistent-data/dm-btree-remove.c
|
|
@@ -301,11 +301,16 @@ static void redistribute3(struct dm_btree_info *info, struct btree_node *parent,
|
|
{
|
|
int s;
|
|
uint32_t max_entries = le32_to_cpu(left->header.max_entries);
|
|
- unsigned target = (nr_left + nr_center + nr_right) / 3;
|
|
- BUG_ON(target > max_entries);
|
|
+ unsigned total = nr_left + nr_center + nr_right;
|
|
+ unsigned target_right = total / 3;
|
|
+ unsigned remainder = (target_right * 3) != total;
|
|
+ unsigned target_left = target_right + remainder;
|
|
+
|
|
+ BUG_ON(target_left > max_entries);
|
|
+ BUG_ON(target_right > max_entries);
|
|
|
|
if (nr_left < nr_right) {
|
|
- s = nr_left - target;
|
|
+ s = nr_left - target_left;
|
|
|
|
if (s < 0 && nr_center < -s) {
|
|
/* not enough in central node */
|
|
@@ -316,10 +321,10 @@ static void redistribute3(struct dm_btree_info *info, struct btree_node *parent,
|
|
} else
|
|
shift(left, center, s);
|
|
|
|
- shift(center, right, target - nr_right);
|
|
+ shift(center, right, target_right - nr_right);
|
|
|
|
} else {
|
|
- s = target - nr_right;
|
|
+ s = target_right - nr_right;
|
|
if (s > 0 && nr_center < s) {
|
|
/* not enough in central node */
|
|
shift(center, right, nr_center);
|
|
@@ -329,7 +334,7 @@ static void redistribute3(struct dm_btree_info *info, struct btree_node *parent,
|
|
} else
|
|
shift(center, right, s);
|
|
|
|
- shift(left, center, nr_left - target);
|
|
+ shift(left, center, nr_left - target_left);
|
|
}
|
|
|
|
*key_ptr(parent, c->index) = center->keys[0];
|
|
diff --git a/drivers/md/persistent-data/dm-btree.c b/drivers/md/persistent-data/dm-btree.c
|
|
index c7726cebc495..d6e47033b5e0 100644
|
|
--- a/drivers/md/persistent-data/dm-btree.c
|
|
+++ b/drivers/md/persistent-data/dm-btree.c
|
|
@@ -523,7 +523,7 @@ static int btree_split_beneath(struct shadow_spine *s, uint64_t key)
|
|
|
|
r = new_block(s->info, &right);
|
|
if (r < 0) {
|
|
- /* FIXME: put left */
|
|
+ unlock_block(s->info, left);
|
|
return r;
|
|
}
|
|
|
|
diff --git a/drivers/md/raid1.c b/drivers/md/raid1.c
|
|
index 47b7c3136807..0d91644e80eb 100644
|
|
--- a/drivers/md/raid1.c
|
|
+++ b/drivers/md/raid1.c
|
|
@@ -2251,7 +2251,7 @@ static int narrow_write_error(struct r1bio *r1_bio, int i)
|
|
bio_trim(wbio, sector - r1_bio->sector, sectors);
|
|
wbio->bi_iter.bi_sector += rdev->data_offset;
|
|
wbio->bi_bdev = rdev->bdev;
|
|
- if (submit_bio_wait(WRITE, wbio) == 0)
|
|
+ if (submit_bio_wait(WRITE, wbio) < 0)
|
|
/* failure! */
|
|
ok = rdev_set_badblocks(rdev, sector,
|
|
sectors, 0)
|
|
diff --git a/drivers/md/raid10.c b/drivers/md/raid10.c
|
|
index 73c9f579b042..19bc2e1aee26 100644
|
|
--- a/drivers/md/raid10.c
|
|
+++ b/drivers/md/raid10.c
|
|
@@ -2604,7 +2604,7 @@ static int narrow_write_error(struct r10bio *r10_bio, int i)
|
|
choose_data_offset(r10_bio, rdev) +
|
|
(sector - r10_bio->sector));
|
|
wbio->bi_bdev = rdev->bdev;
|
|
- if (submit_bio_wait(WRITE, wbio) == 0)
|
|
+ if (submit_bio_wait(WRITE, wbio) < 0)
|
|
/* Failure! */
|
|
ok = rdev_set_badblocks(rdev, sector,
|
|
sectors, 0)
|
|
diff --git a/drivers/md/raid5.c b/drivers/md/raid5.c
|
|
index b98c70e1f1a9..1c829a0b234b 100644
|
|
--- a/drivers/md/raid5.c
|
|
+++ b/drivers/md/raid5.c
|
|
@@ -3029,6 +3029,8 @@ static void handle_stripe_clean_event(struct r5conf *conf,
|
|
}
|
|
if (!discard_pending &&
|
|
test_bit(R5_Discard, &sh->dev[sh->pd_idx].flags)) {
|
|
+ int hash = sh->hash_lock_index;
|
|
+
|
|
clear_bit(R5_Discard, &sh->dev[sh->pd_idx].flags);
|
|
clear_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags);
|
|
if (sh->qd_idx >= 0) {
|
|
@@ -3042,9 +3044,9 @@ static void handle_stripe_clean_event(struct r5conf *conf,
|
|
* no updated data, so remove it from hash list and the stripe
|
|
* will be reinitialized
|
|
*/
|
|
- spin_lock_irq(&conf->device_lock);
|
|
+ spin_lock_irq(conf->hash_locks + hash);
|
|
remove_hash(sh);
|
|
- spin_unlock_irq(&conf->device_lock);
|
|
+ spin_unlock_irq(conf->hash_locks + hash);
|
|
if (test_bit(STRIPE_SYNC_REQUESTED, &sh->state))
|
|
set_bit(STRIPE_HANDLE, &sh->state);
|
|
|
|
diff --git a/drivers/net/ethernet/sfc/selftest.c b/drivers/net/ethernet/sfc/selftest.c
|
|
index 26641817a9c7..c9fcf6fa5479 100644
|
|
--- a/drivers/net/ethernet/sfc/selftest.c
|
|
+++ b/drivers/net/ethernet/sfc/selftest.c
|
|
@@ -46,7 +46,7 @@ struct efx_loopback_payload {
|
|
struct iphdr ip;
|
|
struct udphdr udp;
|
|
__be16 iteration;
|
|
- const char msg[64];
|
|
+ char msg[64];
|
|
} __packed;
|
|
|
|
/* Loopback test source MAC address */
|
|
diff --git a/drivers/net/wireless/ath/ath9k/init.c b/drivers/net/wireless/ath/ath9k/init.c
|
|
index 1fc2e5a26b52..a72cac46f699 100644
|
|
--- a/drivers/net/wireless/ath/ath9k/init.c
|
|
+++ b/drivers/net/wireless/ath/ath9k/init.c
|
|
@@ -956,6 +956,7 @@ static void ath9k_set_hw_capab(struct ath_softc *sc, struct ieee80211_hw *hw)
|
|
hw->max_rate_tries = 10;
|
|
hw->sta_data_size = sizeof(struct ath_node);
|
|
hw->vif_data_size = sizeof(struct ath_vif);
|
|
+ hw->extra_tx_headroom = 4;
|
|
|
|
hw->wiphy->available_antennas_rx = BIT(ah->caps.max_rxchains) - 1;
|
|
hw->wiphy->available_antennas_tx = BIT(ah->caps.max_txchains) - 1;
|
|
diff --git a/drivers/net/wireless/iwlwifi/dvm/lib.c b/drivers/net/wireless/iwlwifi/dvm/lib.c
|
|
index 576f7ee38ca5..78a155e11183 100644
|
|
--- a/drivers/net/wireless/iwlwifi/dvm/lib.c
|
|
+++ b/drivers/net/wireless/iwlwifi/dvm/lib.c
|
|
@@ -1022,7 +1022,7 @@ static void iwlagn_wowlan_program_keys(struct ieee80211_hw *hw,
|
|
u8 *pn = seq.ccmp.pn;
|
|
|
|
ieee80211_get_key_rx_seq(key, i, &seq);
|
|
- aes_sc->pn = cpu_to_le64(
|
|
+ aes_sc[i].pn = cpu_to_le64(
|
|
(u64)pn[5] |
|
|
((u64)pn[4] << 8) |
|
|
((u64)pn[3] << 16) |
|
|
diff --git a/drivers/net/wireless/iwlwifi/iwl-7000.c b/drivers/net/wireless/iwlwifi/iwl-7000.c
|
|
index e1d546665ae8..28e18de9f429 100644
|
|
--- a/drivers/net/wireless/iwlwifi/iwl-7000.c
|
|
+++ b/drivers/net/wireless/iwlwifi/iwl-7000.c
|
|
@@ -222,5 +222,5 @@ const struct iwl_cfg iwl7265_n_cfg = {
|
|
};
|
|
|
|
MODULE_FIRMWARE(IWL7260_MODULE_FIRMWARE(IWL7260_UCODE_API_OK));
|
|
-MODULE_FIRMWARE(IWL3160_MODULE_FIRMWARE(IWL3160_UCODE_API_OK));
|
|
+MODULE_FIRMWARE(IWL3160_MODULE_FIRMWARE(IWL7260_UCODE_API_OK));
|
|
MODULE_FIRMWARE(IWL7265_MODULE_FIRMWARE(IWL7260_UCODE_API_OK));
|
|
diff --git a/drivers/net/wireless/iwlwifi/mvm/d3.c b/drivers/net/wireless/iwlwifi/mvm/d3.c
|
|
index f36a7ee0267f..8e844d580cc6 100644
|
|
--- a/drivers/net/wireless/iwlwifi/mvm/d3.c
|
|
+++ b/drivers/net/wireless/iwlwifi/mvm/d3.c
|
|
@@ -297,12 +297,12 @@ static void iwl_mvm_wowlan_program_keys(struct ieee80211_hw *hw,
|
|
u8 *pn = seq.ccmp.pn;
|
|
|
|
ieee80211_get_key_rx_seq(key, i, &seq);
|
|
- aes_sc->pn = cpu_to_le64((u64)pn[5] |
|
|
- ((u64)pn[4] << 8) |
|
|
- ((u64)pn[3] << 16) |
|
|
- ((u64)pn[2] << 24) |
|
|
- ((u64)pn[1] << 32) |
|
|
- ((u64)pn[0] << 40));
|
|
+ aes_sc[i].pn = cpu_to_le64((u64)pn[5] |
|
|
+ ((u64)pn[4] << 8) |
|
|
+ ((u64)pn[3] << 16) |
|
|
+ ((u64)pn[2] << 24) |
|
|
+ ((u64)pn[1] << 32) |
|
|
+ ((u64)pn[0] << 40));
|
|
}
|
|
data->use_rsc_tsc = true;
|
|
break;
|
|
diff --git a/drivers/net/wireless/iwlwifi/pcie/drv.c b/drivers/net/wireless/iwlwifi/pcie/drv.c
|
|
index 1ac33d9cd396..988f9fec0bff 100644
|
|
--- a/drivers/net/wireless/iwlwifi/pcie/drv.c
|
|
+++ b/drivers/net/wireless/iwlwifi/pcie/drv.c
|
|
@@ -396,6 +396,11 @@ static DEFINE_PCI_DEVICE_TABLE(iwl_hw_card_ids) = {
|
|
{IWL_PCI_DEVICE(0x095A, 0x5590, iwl7265_2ac_cfg)},
|
|
{IWL_PCI_DEVICE(0x095B, 0x5290, iwl7265_2ac_cfg)},
|
|
{IWL_PCI_DEVICE(0x095A, 0x5490, iwl7265_2ac_cfg)},
|
|
+ {IWL_PCI_DEVICE(0x095A, 0x5F10, iwl7265_2ac_cfg)},
|
|
+ {IWL_PCI_DEVICE(0x095B, 0x5212, iwl7265_2ac_cfg)},
|
|
+ {IWL_PCI_DEVICE(0x095B, 0x520A, iwl7265_2ac_cfg)},
|
|
+ {IWL_PCI_DEVICE(0x095A, 0x9000, iwl7265_2ac_cfg)},
|
|
+ {IWL_PCI_DEVICE(0x095A, 0x9400, iwl7265_2ac_cfg)},
|
|
#endif /* CONFIG_IWLMVM */
|
|
|
|
{0}
|
|
diff --git a/drivers/power/bq24190_charger.c b/drivers/power/bq24190_charger.c
|
|
index e4c95e1a6733..d0e8236a6404 100644
|
|
--- a/drivers/power/bq24190_charger.c
|
|
+++ b/drivers/power/bq24190_charger.c
|
|
@@ -1208,7 +1208,7 @@ static irqreturn_t bq24190_irq_handler_thread(int irq, void *data)
|
|
{
|
|
struct bq24190_dev_info *bdi = data;
|
|
bool alert_userspace = false;
|
|
- u8 ss_reg, f_reg;
|
|
+ u8 ss_reg = 0, f_reg = 0;
|
|
int ret;
|
|
|
|
pm_runtime_get_sync(bdi->dev);
|
|
diff --git a/drivers/scsi/mvsas/mv_sas.c b/drivers/scsi/mvsas/mv_sas.c
|
|
index 4c0b8b4e1d40..42b1f3318e59 100644
|
|
--- a/drivers/scsi/mvsas/mv_sas.c
|
|
+++ b/drivers/scsi/mvsas/mv_sas.c
|
|
@@ -988,6 +988,8 @@ static void mvs_slot_free(struct mvs_info *mvi, u32 rx_desc)
|
|
static void mvs_slot_task_free(struct mvs_info *mvi, struct sas_task *task,
|
|
struct mvs_slot_info *slot, u32 slot_idx)
|
|
{
|
|
+ if (!slot)
|
|
+ return;
|
|
if (!slot->task)
|
|
return;
|
|
if (!sas_protocol_ata(task->task_proto))
|
|
diff --git a/drivers/spi/spi-gpio.c b/drivers/spi/spi-gpio.c
|
|
index 7beeb29472ac..dd4fe5036220 100644
|
|
--- a/drivers/spi/spi-gpio.c
|
|
+++ b/drivers/spi/spi-gpio.c
|
|
@@ -250,7 +250,7 @@ static int spi_gpio_setup(struct spi_device *spi)
|
|
/*
|
|
* ... otherwise, take it from spi->controller_data
|
|
*/
|
|
- cs = (unsigned int) spi->controller_data;
|
|
+ cs = (unsigned int)(uintptr_t) spi->controller_data;
|
|
}
|
|
|
|
if (!spi->controller_state) {
|
|
diff --git a/drivers/staging/iio/adc/mxs-lradc.c b/drivers/staging/iio/adc/mxs-lradc.c
|
|
index 27e1a6e62d06..503846c3e620 100644
|
|
--- a/drivers/staging/iio/adc/mxs-lradc.c
|
|
+++ b/drivers/staging/iio/adc/mxs-lradc.c
|
|
@@ -920,11 +920,12 @@ static int mxs_lradc_read_raw(struct iio_dev *iio_dev,
|
|
case IIO_CHAN_INFO_OFFSET:
|
|
if (chan->type == IIO_TEMP) {
|
|
/* The calculated value from the ADC is in Kelvin, we
|
|
- * want Celsius for hwmon so the offset is
|
|
- * -272.15 * scale
|
|
+ * want Celsius for hwmon so the offset is -273.15
|
|
+ * The offset is applied before scaling so it is
|
|
+ * actually -213.15 * 4 / 1.012 = -1079.644268
|
|
*/
|
|
- *val = -1075;
|
|
- *val2 = 691699;
|
|
+ *val = -1079;
|
|
+ *val2 = 644268;
|
|
|
|
return IIO_VAL_INT_PLUS_MICRO;
|
|
}
|
|
diff --git a/drivers/tty/serial/8250/8250_pci.c b/drivers/tty/serial/8250/8250_pci.c
|
|
index 5892eab03874..996f8f3fd423 100644
|
|
--- a/drivers/tty/serial/8250/8250_pci.c
|
|
+++ b/drivers/tty/serial/8250/8250_pci.c
|
|
@@ -1772,6 +1772,9 @@ pci_wch_ch353_setup(struct serial_private *priv,
|
|
#define PCI_DEVICE_ID_SUNIX_1999 0x1999
|
|
|
|
|
|
+#define PCI_DEVICE_ID_EXAR_XR17V4358 0x4358
|
|
+#define PCI_DEVICE_ID_EXAR_XR17V8358 0x8358
|
|
+
|
|
/* Unknown vendors/cards - this should not be in linux/pci_ids.h */
|
|
#define PCI_SUBDEVICE_ID_UNKNOWN_0x1584 0x1584
|
|
#define PCI_SUBDEVICE_ID_UNKNOWN_0x1588 0x1588
|
|
@@ -2266,6 +2269,20 @@ static struct pci_serial_quirk pci_serial_quirks[] __refdata = {
|
|
.subdevice = PCI_ANY_ID,
|
|
.setup = pci_xr17v35x_setup,
|
|
},
|
|
+ {
|
|
+ .vendor = PCI_VENDOR_ID_EXAR,
|
|
+ .device = PCI_DEVICE_ID_EXAR_XR17V4358,
|
|
+ .subvendor = PCI_ANY_ID,
|
|
+ .subdevice = PCI_ANY_ID,
|
|
+ .setup = pci_xr17v35x_setup,
|
|
+ },
|
|
+ {
|
|
+ .vendor = PCI_VENDOR_ID_EXAR,
|
|
+ .device = PCI_DEVICE_ID_EXAR_XR17V8358,
|
|
+ .subvendor = PCI_ANY_ID,
|
|
+ .subdevice = PCI_ANY_ID,
|
|
+ .setup = pci_xr17v35x_setup,
|
|
+ },
|
|
/*
|
|
* Xircom cards
|
|
*/
|
|
@@ -2706,6 +2723,8 @@ enum pci_board_num_t {
|
|
pbn_exar_XR17V352,
|
|
pbn_exar_XR17V354,
|
|
pbn_exar_XR17V358,
|
|
+ pbn_exar_XR17V4358,
|
|
+ pbn_exar_XR17V8358,
|
|
pbn_exar_ibm_saturn,
|
|
pbn_pasemi_1682M,
|
|
pbn_ni8430_2,
|
|
@@ -3375,6 +3394,22 @@ static struct pciserial_board pci_boards[] = {
|
|
.reg_shift = 0,
|
|
.first_offset = 0,
|
|
},
|
|
+ [pbn_exar_XR17V4358] = {
|
|
+ .flags = FL_BASE0,
|
|
+ .num_ports = 12,
|
|
+ .base_baud = 7812500,
|
|
+ .uart_offset = 0x400,
|
|
+ .reg_shift = 0,
|
|
+ .first_offset = 0,
|
|
+ },
|
|
+ [pbn_exar_XR17V8358] = {
|
|
+ .flags = FL_BASE0,
|
|
+ .num_ports = 16,
|
|
+ .base_baud = 7812500,
|
|
+ .uart_offset = 0x400,
|
|
+ .reg_shift = 0,
|
|
+ .first_offset = 0,
|
|
+ },
|
|
[pbn_exar_ibm_saturn] = {
|
|
.flags = FL_BASE0,
|
|
.num_ports = 1,
|
|
@@ -4731,7 +4766,7 @@ static struct pci_device_id serial_pci_tbl[] = {
|
|
0,
|
|
0, pbn_exar_XR17C158 },
|
|
/*
|
|
- * Exar Corp. XR17V35[248] Dual/Quad/Octal PCIe UARTs
|
|
+ * Exar Corp. XR17V[48]35[248] Dual/Quad/Octal/Hexa PCIe UARTs
|
|
*/
|
|
{ PCI_VENDOR_ID_EXAR, PCI_DEVICE_ID_EXAR_XR17V352,
|
|
PCI_ANY_ID, PCI_ANY_ID,
|
|
@@ -4745,7 +4780,14 @@ static struct pci_device_id serial_pci_tbl[] = {
|
|
PCI_ANY_ID, PCI_ANY_ID,
|
|
0,
|
|
0, pbn_exar_XR17V358 },
|
|
-
|
|
+ { PCI_VENDOR_ID_EXAR, PCI_DEVICE_ID_EXAR_XR17V4358,
|
|
+ PCI_ANY_ID, PCI_ANY_ID,
|
|
+ 0,
|
|
+ 0, pbn_exar_XR17V4358 },
|
|
+ { PCI_VENDOR_ID_EXAR, PCI_DEVICE_ID_EXAR_XR17V8358,
|
|
+ PCI_ANY_ID, PCI_ANY_ID,
|
|
+ 0,
|
|
+ 0, pbn_exar_XR17V8358 },
|
|
/*
|
|
* Topic TP560 Data/Fax/Voice 56k modem (reported by Evan Clarke)
|
|
*/
|
|
diff --git a/drivers/usb/host/xhci-pci.c b/drivers/usb/host/xhci-pci.c
|
|
index eb3399f4c1ed..44af2b02d701 100644
|
|
--- a/drivers/usb/host/xhci-pci.c
|
|
+++ b/drivers/usb/host/xhci-pci.c
|
|
@@ -140,6 +140,7 @@ static void xhci_pci_quirks(struct device *dev, struct xhci_hcd *xhci)
|
|
xhci->quirks |= XHCI_SPURIOUS_WAKEUP;
|
|
|
|
xhci->quirks |= XHCI_SPURIOUS_REBOOT;
|
|
+ xhci->quirks |= XHCI_SPURIOUS_WAKEUP;
|
|
}
|
|
if (pdev->vendor == PCI_VENDOR_ID_ETRON &&
|
|
pdev->device == PCI_DEVICE_ID_ASROCK_P67) {
|
|
diff --git a/drivers/usb/host/xhci-ring.c b/drivers/usb/host/xhci-ring.c
|
|
index 86a0ddd8efb7..bd993fe00e0c 100644
|
|
--- a/drivers/usb/host/xhci-ring.c
|
|
+++ b/drivers/usb/host/xhci-ring.c
|
|
@@ -2417,6 +2417,7 @@ static int handle_tx_event(struct xhci_hcd *xhci,
|
|
u32 trb_comp_code;
|
|
int ret = 0;
|
|
int td_num = 0;
|
|
+ bool handling_skipped_tds = false;
|
|
|
|
slot_id = TRB_TO_SLOT_ID(le32_to_cpu(event->flags));
|
|
xdev = xhci->devs[slot_id];
|
|
@@ -2550,6 +2551,10 @@ static int handle_tx_event(struct xhci_hcd *xhci,
|
|
ep->skip = true;
|
|
xhci_dbg(xhci, "Miss service interval error, set skip flag\n");
|
|
goto cleanup;
|
|
+ case COMP_PING_ERR:
|
|
+ ep->skip = true;
|
|
+ xhci_dbg(xhci, "No Ping response error, Skip one Isoc TD\n");
|
|
+ goto cleanup;
|
|
default:
|
|
if (xhci_is_vendor_info_code(xhci, trb_comp_code)) {
|
|
status = 0;
|
|
@@ -2681,13 +2686,18 @@ static int handle_tx_event(struct xhci_hcd *xhci,
|
|
ep, &status);
|
|
|
|
cleanup:
|
|
+
|
|
+
|
|
+ handling_skipped_tds = ep->skip &&
|
|
+ trb_comp_code != COMP_MISSED_INT &&
|
|
+ trb_comp_code != COMP_PING_ERR;
|
|
+
|
|
/*
|
|
- * Do not update event ring dequeue pointer if ep->skip is set.
|
|
- * Will roll back to continue process missed tds.
|
|
+ * Do not update event ring dequeue pointer if we're in a loop
|
|
+ * processing missed tds.
|
|
*/
|
|
- if (trb_comp_code == COMP_MISSED_INT || !ep->skip) {
|
|
+ if (!handling_skipped_tds)
|
|
inc_deq(xhci, xhci->event_ring);
|
|
- }
|
|
|
|
if (ret) {
|
|
urb = td->urb;
|
|
@@ -2722,7 +2732,7 @@ cleanup:
|
|
* Process them as short transfer until reach the td pointed by
|
|
* the event.
|
|
*/
|
|
- } while (ep->skip && trb_comp_code != COMP_MISSED_INT);
|
|
+ } while (handling_skipped_tds);
|
|
|
|
return 0;
|
|
}
|
|
diff --git a/drivers/vhost/scsi.c b/drivers/vhost/scsi.c
|
|
index 486d710a5293..6aeea1936aea 100644
|
|
--- a/drivers/vhost/scsi.c
|
|
+++ b/drivers/vhost/scsi.c
|
|
@@ -1139,7 +1139,7 @@ tcm_vhost_send_evt(struct vhost_scsi *vs,
|
|
* lun[4-7] need to be zero according to virtio-scsi spec.
|
|
*/
|
|
evt->event.lun[0] = 0x01;
|
|
- evt->event.lun[1] = tpg->tport_tpgt & 0xFF;
|
|
+ evt->event.lun[1] = tpg->tport_tpgt;
|
|
if (lun->unpacked_lun >= 256)
|
|
evt->event.lun[2] = lun->unpacked_lun >> 8 | 0x40 ;
|
|
evt->event.lun[3] = lun->unpacked_lun & 0xFF;
|
|
@@ -2004,12 +2004,12 @@ tcm_vhost_make_tpg(struct se_wwn *wwn,
|
|
struct tcm_vhost_tport, tport_wwn);
|
|
|
|
struct tcm_vhost_tpg *tpg;
|
|
- unsigned long tpgt;
|
|
+ u16 tpgt;
|
|
int ret;
|
|
|
|
if (strstr(name, "tpgt_") != name)
|
|
return ERR_PTR(-EINVAL);
|
|
- if (kstrtoul(name + 5, 10, &tpgt) || tpgt > UINT_MAX)
|
|
+ if (kstrtou16(name + 5, 10, &tpgt) || tpgt >= VHOST_SCSI_MAX_TARGET)
|
|
return ERR_PTR(-EINVAL);
|
|
|
|
tpg = kzalloc(sizeof(struct tcm_vhost_tpg), GFP_KERNEL);
|
|
diff --git a/include/sound/wm8904.h b/include/sound/wm8904.h
|
|
index 898be3a8db9a..6d8f8fba3341 100644
|
|
--- a/include/sound/wm8904.h
|
|
+++ b/include/sound/wm8904.h
|
|
@@ -119,7 +119,7 @@
|
|
#define WM8904_MIC_REGS 2
|
|
#define WM8904_GPIO_REGS 4
|
|
#define WM8904_DRC_REGS 4
|
|
-#define WM8904_EQ_REGS 25
|
|
+#define WM8904_EQ_REGS 24
|
|
|
|
/**
|
|
* DRC configurations are specified with a label and a set of register
|
|
diff --git a/kernel/module.c b/kernel/module.c
|
|
index 1d679a6c942f..49f17c27bf11 100644
|
|
--- a/kernel/module.c
|
|
+++ b/kernel/module.c
|
|
@@ -915,11 +915,15 @@ void symbol_put_addr(void *addr)
|
|
if (core_kernel_text(a))
|
|
return;
|
|
|
|
- /* module_text_address is safe here: we're supposed to have reference
|
|
- * to module from symbol_get, so it can't go away. */
|
|
+ /*
|
|
+ * Even though we hold a reference on the module; we still need to
|
|
+ * disable preemption in order to safely traverse the data structure.
|
|
+ */
|
|
+ preempt_disable();
|
|
modaddr = __module_text_address(a);
|
|
BUG_ON(!modaddr);
|
|
module_put(modaddr);
|
|
+ preempt_enable();
|
|
}
|
|
EXPORT_SYMBOL_GPL(symbol_put_addr);
|
|
|
|
diff --git a/mm/filemap.c b/mm/filemap.c
|
|
index 217cfd3b3264..ca9efc6fff3b 100644
|
|
--- a/mm/filemap.c
|
|
+++ b/mm/filemap.c
|
|
@@ -2509,6 +2509,11 @@ again:
|
|
break;
|
|
}
|
|
|
|
+ if (fatal_signal_pending(current)) {
|
|
+ status = -EINTR;
|
|
+ break;
|
|
+ }
|
|
+
|
|
status = a_ops->write_begin(file, mapping, pos, bytes, flags,
|
|
&page, &fsdata);
|
|
if (unlikely(status < 0))
|
|
@@ -2546,10 +2551,6 @@ again:
|
|
written += copied;
|
|
|
|
balance_dirty_pages_ratelimited(mapping);
|
|
- if (fatal_signal_pending(current)) {
|
|
- status = -EINTR;
|
|
- break;
|
|
- }
|
|
} while (iov_iter_count(i));
|
|
|
|
return written ? written : status;
|