Messages in this thread |  | | Date | Thu, 25 May 2023 23:07:30 -0700 | Subject | Re: [PATCH 1/3] module: Introduce module_alloc_type | From | Randy Dunlap <> |
| |
Hi--
On 5/25/23 22:15, Song Liu wrote: > +/** > + * struct vmalloc_params - Parameters to call __vmalloc_node_range() > + * @start: Address space range start > + * @end: Address space range end > + * @gfp_mask: The gfp_t mask used for this range > + * @pgprot: The page protection for this range > + * @vm_flags The vm_flag used for this range
* @vm_flags:
> + */ > +struct vmalloc_params { > + unsigned long start; > + unsigned long end; > + gfp_t gfp_mask; > + pgprot_t pgprot; > + unsigned long vm_flags; > +};
-- ~Randy
|  |