[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] Use PAGE_OFFSET instead of __PAGE_OFFSET in netfront.c.
# HG changeset patch # User kaf24@xxxxxxxxxxxxxxxxxxxx # Node ID bbd1057d38f0b5d3ad677d64a77d4dbb49003511 # Parent a151e82c4ffdfdba296d5e3fe3b05be75d6a3f4f Use PAGE_OFFSET instead of __PAGE_OFFSET in netfront.c. __PAGE_OFFSET is not defined on all platforms. Linux/ia64 and Linux/ppc don't have __PAGE_OFFSET definition. Signed-off-by: Isaku Yamahata <yamahata@xxxxxxxxxxxxx> diff -r a151e82c4ffd -r bbd1057d38f0 linux-2.6-xen-sparse/drivers/xen/netfront/netfront.c --- a/linux-2.6-xen-sparse/drivers/xen/netfront/netfront.c Thu Apr 6 08:22:00 2006 +++ b/linux-2.6-xen-sparse/drivers/xen/netfront/netfront.c Thu Apr 6 08:32:55 2006 @@ -993,8 +993,8 @@ * the RX ring because some of our pages are currently flipped out * so we can't just free the RX skbs. * NB2. Freelist index entries are always going to be less than - * __PAGE_OFFSET, whereas pointers to skbs will always be equal or - * greater than __PAGE_OFFSET: we use this property to distinguish + * PAGE_OFFSET, whereas pointers to skbs will always be equal or + * greater than PAGE_OFFSET: we use this property to distinguish * them. */ @@ -1005,7 +1005,7 @@ * interface has been down. */ for (requeue_idx = 0, i = 1; i <= NET_TX_RING_SIZE; i++) { - if ((unsigned long)np->tx_skbs[i] < __PAGE_OFFSET) + if ((unsigned long)np->tx_skbs[i] < PAGE_OFFSET) continue; skb = np->tx_skbs[i]; @@ -1036,7 +1036,7 @@ /* Rebuild the RX buffer freelist and the RX ring itself. */ for (requeue_idx = 0, i = 1; i <= NET_RX_RING_SIZE; i++) { - if ((unsigned long)np->rx_skbs[i] < __PAGE_OFFSET) + if ((unsigned long)np->rx_skbs[i] < PAGE_OFFSET) continue; gnttab_grant_foreign_transfer_ref( np->grant_rx_ref[i], np->xbdev->otherend_id, _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |