* Patch "message: i2o: fix 64bit build warnings" has been added to the 3.18-stable tree
@ 2017-05-04 23:03 gregkh
0 siblings, 0 replies; only message in thread
From: gregkh @ 2017-05-04 23:03 UTC (permalink / raw)
To: gregkh, arnd; +Cc: stable, stable-commits
This is a note to let you know that I've just added the patch titled
message: i2o: fix 64bit build warnings
to the 3.18-stable tree which can be found at:
http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary
The filename of the patch is:
message-i2o-fix-64bit-build-warnings.patch
and it can be found in the queue-3.18 subdirectory.
If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@vger.kernel.org> know about it.
>From foo@baz Thu May 4 16:01:53 PDT 2017
Date: Thu, 04 May 2017 16:01:53 -0700
To: Greg KH <gregkh@linuxfoundation.org>
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Subject: message: i2o: fix 64bit build warnings
It seems that most of the 64bit build warnings were fixed up in this
driver, but 2 were forgotten. This code is long deleted from newer
kernels, so the fix is not needed there, but make it here in the 3.18
tree to keep the build quiet.
Cc: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
drivers/message/i2o/i2o_config.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
--- a/drivers/message/i2o/i2o_config.c
+++ b/drivers/message/i2o/i2o_config.c
@@ -890,7 +890,7 @@ static int i2o_cfg_passthru(unsigned lon
flag_count & 0x04000000 /*I2O_SGL_FLAGS_DIR */ ) {
// TODO 64bit fix
if (copy_from_user
- (p->virt, (void __user *)sg[i].addr_bus,
+ (p->virt, (void __user *)(u64)sg[i].addr_bus,
sg_size)) {
printk(KERN_DEBUG
"%s: Could not copy SG buf %d FROM user\n",
@@ -950,7 +950,7 @@ static int i2o_cfg_passthru(unsigned lon
sg_size = sg[j].flag_count & 0xffffff;
// TODO 64bit fix
if (copy_to_user
- ((void __user *)sg[j].addr_bus, sg_list[j].virt,
+ ((void __user *)(u64)sg[j].addr_bus, sg_list[j].virt,
sg_size)) {
printk(KERN_WARNING
"%s: Could not copy %p TO user %x\n",
Patches currently in stable-queue which might be from gregkh@linuxfoundation.org are
queue-3.18/ib-iser-fix-sparse-warnings.patch
queue-3.18/cred-userns-define-current_user_ns-as-a-function.patch
queue-3.18/mips-kgdb-use-kernel-context-for-sleeping-threads.patch
queue-3.18/l2tp-fix-racy-sock_zapped-flag-check-in-l2tp_ip-6-_bind.patch
queue-3.18/mips-elf2ecoff-ignore-pt_mips_abiflags-program-headers.patch
queue-3.18/l2tp-purge-socket-queues-in-the-.destruct-callback.patch
queue-3.18/nfsd-check-for-oversized-nfsv2-v3-arguments.patch
queue-3.18/pci-xilinx-fix-harmless-format-string-warning.patch
queue-3.18/arm64-build-vdso-without-libgcov.patch
queue-3.18/handle-mismatched-open-calls.patch
queue-3.18/sparc64-kern_addr_valid-regression.patch
queue-3.18/arm64-provide-a-namespace-to-ncaps.patch
queue-3.18/alsa-ppc-awacs-shut-up-maybe-uninitialized-warning.patch
queue-3.18/sparc64-fix-kernel-panic-due-to-erroneous-ifdef-surrounding-pmd_write.patch
queue-3.18/mips-jz4740-fix-build-error-in-irq.h.patch
queue-3.18/net-tg3-avoid-uninitialized-variable-warning.patch
queue-3.18/sctp-listen-on-the-sock-only-when-it-s-state-is-listening-or-closed.patch
queue-3.18/ftrace-x86-fix-triple-fault-with-graph-tracing-and-suspend-to-ram.patch
queue-3.18/tty-isicom-fix-big-endian-compile-warning.patch
queue-3.18/mtd-avoid-stack-overflow-in-mtd-cfi-code.patch
queue-3.18/ib-qib-rename-bits_per_page-to-rvt_bits_per_page.patch
queue-3.18/posix_acl-clear-sgid-bit-when-setting-file-permissions.patch
queue-3.18/ips-remove-pointless-warning.patch
queue-3.18/powerpc-ptrace-fix-out-of-bounds-array-access-warning.patch
queue-3.18/usb-gadget-f_midi-fixed-a-bug-when-buflen-was-smaller-than-wmaxpacketsize.patch
queue-3.18/input-i8042-add-clevo-p650rs-to-the-i8042-reset-list.patch
queue-3.18/xen-x86-don-t-lose-event-interrupts.patch
queue-3.18/alsa-seq-don-t-break-snd_use_lock_sync-loop-by-timeout.patch
queue-3.18/timerfd-protect-the-might-cancel-mechanism-proper.patch
queue-3.18/mm-avoid-setting-up-anonymous-pages-into-file-mapping.patch
queue-3.18/net-phy-handle-state-correctly-in-phy_stop_machine.patch
queue-3.18/staging-imx-drm-fix-indentation-warning.patch
queue-3.18/mlx5-avoid-build-warnings-on-32-bit.patch
queue-3.18/f2fs-do-more-integrity-verification-for-superblock.patch
queue-3.18/mm-cma-silence-warnings-due-to-max-usage.patch
queue-3.18/net-packet-fix-overflow-in-check-for-tp_frame_nr.patch
queue-3.18/misdn-avoid-arch-specific-__builtin_return_address-call.patch
queue-3.18/staging-bcm-add-32-bit-host-dependency.patch
queue-3.18/net-packet-fix-overflow-in-check-for-tp_reserve.patch
queue-3.18/netpoll-check-for-skb-queue_mapping.patch
queue-3.18/net-neigh-guard-against-null-solicit-method.patch
queue-3.18/staging-unisys-fix-build-warning-in-periodic_work.patch
queue-3.18/perf-tighten-and-fix-the-grouping-condition.patch
queue-3.18/p9_client_readdir-fix.patch
queue-3.18/message-i2o-fix-64bit-build-warnings.patch
queue-3.18/rds-fix-the-atomicity-for-congestion-map-update.patch
queue-3.18/staging-vt6655-fix-overly-large-stack-usage.patch
queue-3.18/mips-fix-crash-registers-on-non-crashing-cpus.patch
queue-3.18/alsa-pcm-call-kill_fasync-in-stream-lock.patch
queue-3.18/drbd-avoid-redefinition-of-bits_per_page.patch
queue-3.18/xc2028-unlock-on-error-in-xc2028_set_config.patch
queue-3.18/infiniband-mlx5-avoid-a-compile-time-warning.patch
queue-3.18/ip6mr-fix-notification-device-destruction.patch
queue-3.18/arm-cns3xxx-shut-up-frame-size-warning.patch
queue-3.18/ext4-check-if-in-inode-xattr-is-corrupted-in-ext4_expand_extra_isize_ea.patch
queue-3.18/regulator-core-fix-regualtor_ena_gpio_free-not-to-access-pin-after-freeing.patch
queue-3.18/ib-ehca-fix-maybe-uninitialized-warnings.patch
queue-3.18/net-ipv4-fix-multipath-rtm_getroute-behavior-when-iif-is-given.patch
queue-3.18/md-raid1-fix-a-dead-loop-when-read-from-a-writemostly-disk.patch
queue-3.18/net-avoid-signed-overflows-for-so_-snd-rcv-bufforce.patch
queue-3.18/mips-elf2ecoff-fix-warning-due-to-dead-code.patch
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2017-05-04 23:03 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-04 23:03 Patch "message: i2o: fix 64bit build warnings" has been added to the 3.18-stable tree gregkh
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.