On Wed, Jan 03, 2024 at 04:19:03PM -0800, Randy Dunlap wrote: > Hi, > > On 1/3/24 14:42, Gregory Price wrote: > > This patch adds the new user-api argument structure intended for > > set_mempolicy2 and mbind2. > > > > struct mpol_param { > > __u16 mode; > > __u16 mode_flags; > > __s32 home_node; /* mbind2: policy home node */ > > __u16 pol_maxnodes; > > __u8 resv[6]; > > __aligned_u64 *pol_nodes; > > }; > > > > > > +Extended Mempolicy Arguments:: > > + > > + struct mpol_param { > > + __u16 mode; > > + __u16 mode_flags; > > + __s32 home_node; /* mbind2: set home node */ > > + __u64 pol_maxnodes; > > + __aligned_u64 pol_nodes; /* nodemask pointer */ > > + }; > > > > Can you make the above documentation struct agree with the > struct in the header below, please? > (just a difference in the size of pol_maxnodes and the > 'resv' bytes) > > *facepalm* made a note to double check this, and then still didn't. Thank you for reviewing. Will fix in the next pass of feedback. ~Gregory