|
@@ -395,16 +395,8 @@ static const struct vm_operations_struct drm_vm_sg_ops = {
|
|
.close = drm_vm_close,
|
|
.close = drm_vm_close,
|
|
};
|
|
};
|
|
|
|
|
|
-/**
|
|
|
|
- * \c open method for shared virtual memory.
|
|
|
|
- *
|
|
|
|
- * \param vma virtual memory area.
|
|
|
|
- *
|
|
|
|
- * Create a new drm_vma_entry structure as the \p vma private data entry and
|
|
|
|
- * add it to drm_device::vmalist.
|
|
|
|
- */
|
|
|
|
-void drm_vm_open_locked(struct drm_device *dev,
|
|
|
|
- struct vm_area_struct *vma)
|
|
|
|
|
|
+static void drm_vm_open_locked(struct drm_device *dev,
|
|
|
|
+ struct vm_area_struct *vma)
|
|
{
|
|
{
|
|
struct drm_vma_entry *vma_entry;
|
|
struct drm_vma_entry *vma_entry;
|
|
|
|
|
|
@@ -429,8 +421,8 @@ static void drm_vm_open(struct vm_area_struct *vma)
|
|
mutex_unlock(&dev->struct_mutex);
|
|
mutex_unlock(&dev->struct_mutex);
|
|
}
|
|
}
|
|
|
|
|
|
-void drm_vm_close_locked(struct drm_device *dev,
|
|
|
|
- struct vm_area_struct *vma)
|
|
|
|
|
|
+static void drm_vm_close_locked(struct drm_device *dev,
|
|
|
|
+ struct vm_area_struct *vma)
|
|
{
|
|
{
|
|
struct drm_vma_entry *pt, *temp;
|
|
struct drm_vma_entry *pt, *temp;
|
|
|
|
|