Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Merge branch 'for-jens' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/linux-block into for-linus

Jiri writes:

please pull from

git://git.kernel.org/pub/scm/linux/kernel/git/jikos/linux-block.git for-jens

to receive one pktcdvd fix. It fixes a highly theoretical issue with using.
pktcdvd to work with media that'd be larger than 2TB :) But it's a correct.
fix and makes static checkers shut up about improperly cleaning upper.
32bits.

+2 -1
+2 -1
drivers/block/pktcdvd.c
··· 83 83 84 84 #define MAX_SPEED 0xffff 85 85 86 - #define ZONE(sector, pd) (((sector) + (pd)->offset) & ~((pd)->settings.size - 1)) 86 + #define ZONE(sector, pd) (((sector) + (pd)->offset) & \ 87 + ~(sector_t)((pd)->settings.size - 1)) 87 88 88 89 static DEFINE_MUTEX(pktcdvd_mutex); 89 90 static struct pktcdvd_device *pkt_devs[MAX_WRITERS];