Rev 1424 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1424 | Rev 1702 | ||
|---|---|---|---|
| Line 24... | Line 24... | ||
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | */ |
27 | */ |
| 28 | 28 | ||
| - | 29 | /** @addtogroup genarchmm |
|
| - | 30 | * @{ |
|
| - | 31 | */ |
|
| - | 32 | ||
| 29 | /** |
33 | /** |
| 30 | * @file page_ht.c |
34 | * @file |
| 31 | * @brief Virtual Address Translation (VAT) for global page hash table. |
35 | * @brief Virtual Address Translation (VAT) for global page hash table. |
| 32 | */ |
36 | */ |
| 33 | 37 | ||
| 34 | #include <genarch/mm/page_ht.h> |
38 | #include <genarch/mm/page_ht.h> |
| 35 | #include <mm/page.h> |
39 | #include <mm/page.h> |
| Line 237... | Line 241... | ||
| 237 | if (hlp) |
241 | if (hlp) |
| 238 | t = hash_table_get_instance(hlp, pte_t, link); |
242 | t = hash_table_get_instance(hlp, pte_t, link); |
| 239 | 243 | ||
| 240 | return t; |
244 | return t; |
| 241 | } |
245 | } |
| - | 246 | ||
| - | 247 | /** @} |
|
| - | 248 | */ |
|
| - | 249 | ||