aboutsummaryrefslogtreecommitdiffstats
path: root/docs/misc/grant-tables.txt
diff options
context:
space:
mode:
authorcwc22@centipede.cl.cam.ac.uk <cwc22@centipede.cl.cam.ac.uk>2005-04-20 18:39:42 +0000
committercwc22@centipede.cl.cam.ac.uk <cwc22@centipede.cl.cam.ac.uk>2005-04-20 18:39:42 +0000
commit691f7f4e58c73445589384da7dbba0e15616500f (patch)
treedac28bb54970b7a8d4bdc1e034b177b8e4a6931c /docs/misc/grant-tables.txt
parent8ffbb0bb83a29b67cbb2f86e0d95569e8306afe2 (diff)
downloadxen-691f7f4e58c73445589384da7dbba0e15616500f.tar.gz
xen-691f7f4e58c73445589384da7dbba0e15616500f.tar.bz2
xen-691f7f4e58c73445589384da7dbba0e15616500f.zip
bitkeeper revision 1.1344 (4266a1eeiNiXbU4vcENZiEEaX7Iybw)
grant-tables.txt: fix to error check condition after map blkback.c: bug fix to grant table code in block backend Kconfig: amend config entry for XEN_BLKDEV_GRANT
Diffstat (limited to 'docs/misc/grant-tables.txt')
-rw-r--r--docs/misc/grant-tables.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/misc/grant-tables.txt b/docs/misc/grant-tables.txt
index 604be3bb08..19db4ec415 100644
--- a/docs/misc/grant-tables.txt
+++ b/docs/misc/grant-tables.txt
@@ -120,7 +120,7 @@ is complete.
for ( i = 0; i < BATCH_SIZE; i++ )
{
- if ( unlikely(aop[i].u.map_grant_ref.dev_bus_addr == 0) )
+ if ( unlikely(aop[i].u.map_grant_ref.handle < 0) )
{
tidyup_all(aop, i);
goto panic;