|
@@ -1682,13 +1682,13 @@ static unsigned int meye_poll(struct file *file, poll_table *wait)
|
|
|
|
|
|
static void meye_vm_open(struct vm_area_struct *vma)
|
|
|
{
|
|
|
- int idx = (int)vma->vm_private_data;
|
|
|
+ long idx = (long)vma->vm_private_data;
|
|
|
meye.vma_use_count[idx]++;
|
|
|
}
|
|
|
|
|
|
static void meye_vm_close(struct vm_area_struct *vma)
|
|
|
{
|
|
|
- int idx = (int)vma->vm_private_data;
|
|
|
+ long idx = (long)vma->vm_private_data;
|
|
|
meye.vma_use_count[idx]--;
|
|
|
}
|
|
|
|