LCOV - code coverage report
Current view: top level - drivers/gpu/drm/i915/gem - i915_gemfs.c (source / functions) Hit Total Coverage
Test: combined.info Lines: 0 13 0.0 %
Date: 2022-03-28 15:32:58 Functions: 0 2 0.0 %
Branches: 0 4 0.0 %

           Branch data     Line data    Source code
       1                 :            : /*
       2                 :            :  * SPDX-License-Identifier: MIT
       3                 :            :  *
       4                 :            :  * Copyright © 2017 Intel Corporation
       5                 :            :  */
       6                 :            : 
       7                 :            : #include <linux/fs.h>
       8                 :            : #include <linux/mount.h>
       9                 :            : #include <linux/pagemap.h>
      10                 :            : 
      11                 :            : #include "i915_drv.h"
      12                 :            : #include "i915_gemfs.h"
      13                 :            : 
      14                 :          0 : int i915_gemfs_init(struct drm_i915_private *i915)
      15                 :            : {
      16                 :          0 :         struct file_system_type *type;
      17                 :          0 :         struct vfsmount *gemfs;
      18                 :            : 
      19                 :          0 :         type = get_fs_type("tmpfs");
      20         [ #  # ]:          0 :         if (!type)
      21                 :            :                 return -ENODEV;
      22                 :            : 
      23                 :            :         /*
      24                 :            :          * By creating our own shmemfs mountpoint, we can pass in
      25                 :            :          * mount flags that better match our usecase.
      26                 :            :          *
      27                 :            :          * One example, although it is probably better with a per-file
      28                 :            :          * control, is selecting huge page allocations ("huge=within_size").
      29                 :            :          * Currently unused due to bandwidth issues (slow reads) on Broadwell+.
      30                 :            :          */
      31                 :            : 
      32                 :          0 :         gemfs = kern_mount(type);
      33         [ #  # ]:          0 :         if (IS_ERR(gemfs))
      34                 :          0 :                 return PTR_ERR(gemfs);
      35                 :            : 
      36                 :          0 :         i915->mm.gemfs = gemfs;
      37                 :            : 
      38                 :          0 :         return 0;
      39                 :            : }
      40                 :            : 
      41                 :          0 : void i915_gemfs_fini(struct drm_i915_private *i915)
      42                 :            : {
      43                 :          0 :         kern_unmount(i915->mm.gemfs);
      44                 :          0 : }

Generated by: LCOV version 1.14