注释此函数,static void ali_destroy_page(struct page *page, int flags) { if (page) { if (flags & AGP_PAGE_DESTROY_UNMAP) { global_cache_flush(); /* is this really needed? --hch */ agp_generic_destroy_page(page, flags); } else agp_generic_destroy_page(page, flags); } }
时间: 2024-03-20 19:42:26 浏览: 148
WM_CLOSE、WM_DESTROY、WM_QUIT及各种消息投递函数详解
以下是注释后的代码:
```
static void ali_destroy_page(struct page *page, int flags) {
if (page) {
if (flags & AGP_PAGE_DESTROY_UNMAP) {
//global_cache_flush(); /* is this really needed? --hch */
agp_generic_destroy_page(page, flags);
} else
agp_generic_destroy_page(page, flags);
}
}
```
在这段代码中,原本的 `global_cache_flush()` 函数被注释掉了。这个函数的作用是刷新全局缓存,但是注释掉之后不会执行该操作。注释掉这个函数不会对该函数的其他部分产生影响,但是如果这个函数确实有必要,那么就需要考虑在其他地方进行全局缓存刷新的操作。
阅读全文