switch (caching.caching) {
case 0:
if (kgem->has_llc) {
- DBG(("%s: interpreting handle=%d as a foreign scanout\n"));
+ DBG(("%s: interpreting handle=%d as a foreign scanout\n",
+ __FUNCTION__, args.handle));
bo->scanout = true;
}
break;
case 1:
if (!kgem->has_llc) {
- DBG(("%s: interpreting handle=%d as a foreign snooped buffer\n"));
+ DBG(("%s: interpreting handle=%d as a foreign snooped buffer\n",
+ __FUNCTION__, args.handle));
bo->snoop = true;
if (bo->tiling) {
DBG(("%s: illegal snooped tiled buffer\n", __FUNCTION__));
}
break;
case 2:
- DBG(("%s: interpreting handle=%d as a foreign scanout\n"));
+ DBG(("%s: interpreting handle=%d as a foreign scanout\n",
+ __FUNCTION__, args.handle));
bo->scanout = true;
break;
}