search for: movable_inode_getfile

Displaying 5 results from an estimated 5 matches for "movable_inode_getfile".

2016 Jun 30
1
[PATCH v6v3 02/12] mm: migrate: support non-lru movable page migration
...the code changes. > for device drivers. In runtime, replacing filp->f_mapping->a_ops with > custom a_ops of own driver seems to be hacky to me. Yeah I thought so. > So, I'm considering now new pseudo fs "movable_inode" which will > support > > struct file *movable_inode_getfile(const char *name, > const struct file_operations *fop, > const struct address_space_operations *a_ops) > { > struct path path; > struct qstr this; > struct inode *inode; > struct super_block *sb; &g...
2016 Jun 30
1
[PATCH v6v3 02/12] mm: migrate: support non-lru movable page migration
...the code changes. > for device drivers. In runtime, replacing filp->f_mapping->a_ops with > custom a_ops of own driver seems to be hacky to me. Yeah I thought so. > So, I'm considering now new pseudo fs "movable_inode" which will > support > > struct file *movable_inode_getfile(const char *name, > const struct file_operations *fop, > const struct address_space_operations *a_ops) > { > struct path path; > struct qstr this; > struct inode *inode; > struct super_block *sb; &g...
2016 Jun 27
2
[PATCH v6v3 02/12] mm: migrate: support non-lru movable page migration
On 06/16/2016 11:07 AM, Minchan Kim wrote: > On Thu, Jun 16, 2016 at 09:12:07AM +0530, Anshuman Khandual wrote: >> On 06/16/2016 05:56 AM, Minchan Kim wrote: >>> On Wed, Jun 15, 2016 at 12:15:04PM +0530, Anshuman Khandual wrote: >>>> On 06/15/2016 08:02 AM, Minchan Kim wrote: >>>>> Hi, >>>>> >>>>> On Mon, Jun 13, 2016 at
2016 Jun 27
2
[PATCH v6v3 02/12] mm: migrate: support non-lru movable page migration
On 06/16/2016 11:07 AM, Minchan Kim wrote: > On Thu, Jun 16, 2016 at 09:12:07AM +0530, Anshuman Khandual wrote: >> On 06/16/2016 05:56 AM, Minchan Kim wrote: >>> On Wed, Jun 15, 2016 at 12:15:04PM +0530, Anshuman Khandual wrote: >>>> On 06/15/2016 08:02 AM, Minchan Kim wrote: >>>>> Hi, >>>>> >>>>> On Mon, Jun 13, 2016 at
2016 Jun 28
0
[PATCH v6v3 02/12] mm: migrate: support non-lru movable page migration
...at, it seems to work. But I'm not saying it's right model now for device drivers. In runtime, replacing filp->f_mapping->a_ops with custom a_ops of own driver seems to be hacky to me. So, I'm considering now new pseudo fs "movable_inode" which will support struct file *movable_inode_getfile(const char *name, const struct file_operations *fop, const struct address_space_operations *a_ops) { struct path path; struct qstr this; struct inode *inode; struct super_block *sb; this.name = name; th...