You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
Conflicts: drivers/infiniband/core/iwcm.c drivers/net/chelsio/cxgb2.c drivers/net/wireless/bcm43xx/bcm43xx_main.c drivers/net/wireless/prism54/islpci_eth.c drivers/usb/core/hub.h drivers/usb/input/hid-core.c net/core/netpoll.c Fix up merge failures with Linus's head and fix new compilation failures. Signed-Off-By: David Howells <dhowells@redhat.com>
This commit is contained in:
@@ -972,7 +972,7 @@ static int make_rate (unsigned int rate, rounding r,
|
||||
}
|
||||
case round_up: {
|
||||
// check all bits that we are discarding
|
||||
if (man & (-1>>9)) {
|
||||
if (man & (~0U>>9)) {
|
||||
man = (man>>(32-9)) + 1;
|
||||
if (man == (1<<9)) {
|
||||
// no need to check for round up outside of range
|
||||
|
||||
@@ -512,7 +512,7 @@ static unsigned int make_rate (unsigned int rate, int r,
|
||||
}
|
||||
case ROUND_UP: {
|
||||
/* check all bits that we are discarding */
|
||||
if (man & (-1>>9)) {
|
||||
if (man & (~0U>>9)) {
|
||||
man = (man>>(32-9)) + 1;
|
||||
if (man == (1<<9)) {
|
||||
/* no need to check for round up outside of range */
|
||||
|
||||
@@ -305,7 +305,7 @@ static void clear_lockup (struct atm_vcc *vcc, IADEV *dev) {
|
||||
** | R | NZ | 5-bit exponent | 9-bit mantissa |
|
||||
** +----+----+------------------+-------------------------------+
|
||||
**
|
||||
** R = reserverd (written as 0)
|
||||
** R = reserved (written as 0)
|
||||
** NZ = 0 if 0 cells/sec; 1 otherwise
|
||||
**
|
||||
** if NZ = 1, rate = 1.mmmmmmmmm x 2^(eeeee) cells/sec
|
||||
|
||||
Reference in New Issue
Block a user