The patch titled ATM: fix warning has been removed from the -mm tree. Its filename was atm-fix-warning.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: ATM: fix warning From: Jeff Garzik <jeff@xxxxxxxxxx> The compiler warning drivers/atm/firestream.c: In function â??top_off_fpâ??: drivers/atm/firestream.c:1505: warning: cast to pointer from integer of different size does indicate a bug, albeit a minor one. Fixed, by using a 32-bit temporary prior to the call to bus_to_virt(). The larger bug is still present: the entire driver assumes that machine pointers are 32-bit, as it stores pointers in 32-bit hardware registers. This is obvious to anyone who knows the driver well, but for the casual readers it is helpfully noted with FIXME. Signed-off-by: Jeff Garzik <jeff@xxxxxxxxxx> Cc: chas williams <chas@xxxxxxxxxxxxxxxx> Cc: "David S. Miller" <davem@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/atm/firestream.c | 15 +++++++++++---- 1 files changed, 11 insertions(+), 4 deletions(-) diff -puN drivers/atm/firestream.c~atm-fix-warning drivers/atm/firestream.c --- a/drivers/atm/firestream.c~atm-fix-warning +++ a/drivers/atm/firestream.c @@ -1475,6 +1475,7 @@ static void top_off_fp (struct fs_dev *d struct FS_BPENTRY *qe, *ne; struct sk_buff *skb; int n = 0; + u32 qe_tmp; fs_dprintk (FS_DEBUG_QUEUE, "Topping off queue at %x (%d-%d/%d)\n", fp->offset, read_fs (dev, FP_CNT (fp->offset)), fp->n, @@ -1502,10 +1503,16 @@ static void top_off_fp (struct fs_dev *d ne->skb = skb; ne->fp = fp; - qe = (struct FS_BPENTRY *) (read_fs (dev, FP_EA(fp->offset))); - fs_dprintk (FS_DEBUG_QUEUE, "link at %p\n", qe); - if (qe) { - qe = bus_to_virt ((long) qe); + /* + * FIXME: following code encodes and decodes + * machine pointers (could be 64-bit) into a + * 32-bit register. + */ + + qe_tmp = read_fs (dev, FP_EA(fp->offset)); + fs_dprintk (FS_DEBUG_QUEUE, "link at %x\n", qe_tmp); + if (qe_tmp) { + qe = bus_to_virt ((long) qe_tmp); qe->next = virt_to_bus(ne); qe->flags &= ~FP_FLAGS_EPI; } else _ Patches currently in -mm which might be from jeff@xxxxxxxxxx are origin.patch git-libata-all.patch git-ubi.patch git-netdev-all.patch 8139too-force-media-setting-fix.patch blackfin-on-chip-ethernet-mac-controller-driver.patch use-menuconfig-objects-ii-netdev-general100mbit.patch update-smc91x-driver-with-arm-versatile-board-info.patch git-net.patch git-ioat.patch remove-pci_dac_dma_-apis.patch git-pciseg.patch pci-device-ensure-sysdata-initialised-v2.patch s390-spinlock-initializer-cleanup.patch git-scsi-misc.patch pci-x-pci-express-read-control-interfaces-e1000.patch add-select-phylib-to-the-ucc_geth-kconfig-option.patch potential-parse-error-in-ifdef.patch potential-parse-error-in-ifdef-fix.patch potential-parse-error-in-ifdef-update.patch misc-tifm_7xx1-replace-deprecated-irq-flag.patch net-hp100-fix-section-mismatch-warning.patch scsi-dont-build-scsi_dma_mapunmap-for-has_dma.patch scsi-dont-build-scsi_dma_mapunmap-for-has_dma-fix.patch dma-mapping-prevent-dma-dependent-code-from-linking-on.patch lguest-the-guest-code-tidyups-update.patch lguest-the-net-driver.patch lguest-the-net-driver-tidyups-update.patch git-gccbug.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html