diff mbox series

[v3,1/6] libndctl: Use the supported_alignment attribute

Message ID 20190116094909.23112-1-oohall@gmail.com (mailing list archive)
State New, archived
Headers show
Series [v3,1/6] libndctl: Use the supported_alignment attribute | expand

Commit Message

Oliver O'Halloran Jan. 16, 2019, 9:49 a.m. UTC
Newer kernels provide the "supported_alignments" sysfs attribute that
indicates what alignments can be used with a PFN or DAX namespace. This
patch adds the plumbing inside of libndctl to allow users to query this
information through using:
	ndctl_{dax|pfn}_get_supported_alignment(), and
	ndctl_{dax|pfn}_get_num_alignments()

Signed-off-by: Oliver O'Halloran <oohall@gmail.com>
---
v3: Changed the return type of the *_get_supported_alignment() functions
    to unsigned long to match the existing *_get_alignment() functions.
---
 ndctl/lib/libndctl.c   | 40 ++++++++++++++++++++++++++++++++++++++++
 ndctl/lib/libndctl.sym |  7 +++++++
 ndctl/libndctl.h       |  6 ++++++
 3 files changed, 53 insertions(+)

Comments

Verma, Vishal L Jan. 23, 2019, 7:32 p.m. UTC | #1
On Wed, 2019-01-16 at 20:49 +1100, Oliver O'Halloran wrote:
> Newer kernels provide the "supported_alignments" sysfs attribute that
> indicates what alignments can be used with a PFN or DAX namespace. This
> patch adds the plumbing inside of libndctl to allow users to query this
> information through using:
> 	ndctl_{dax|pfn}_get_supported_alignment(), and
> 	ndctl_{dax|pfn}_get_num_alignments()
> 
> Signed-off-by: Oliver O'Halloran <oohall@gmail.com>
> ---
> v3: Changed the return type of the *_get_supported_alignment() functions
>     to unsigned long to match the existing *_get_alignment() functions.
> ---
>  ndctl/lib/libndctl.c   | 40 ++++++++++++++++++++++++++++++++++++++++
>  ndctl/lib/libndctl.sym |  7 +++++++
>  ndctl/libndctl.h       |  6 ++++++
>  3 files changed, 53 insertions(+)

Hi Oliver,

Thanks for resubmitting this series. I had a few comments below:

> 
> diff --git a/ndctl/lib/libndctl.c b/ndctl/lib/libndctl.c
> index 0c3a35e5bcc9..53369b5c9886 100644
> --- a/ndctl/lib/libndctl.c
> +++ b/ndctl/lib/libndctl.c
> @@ -31,6 +31,7 @@
>  #include <ccan/build_assert/build_assert.h>
>  
>  #include <ndctl.h>
> +#include <util/size.h>
>  #include <util/sysfs.h>
>  #include <ndctl/libndctl.h>
>  #include <ndctl/namespace.h>
> @@ -237,6 +238,7 @@ struct ndctl_pfn {
>  	int buf_len;
>  	uuid_t uuid;
>  	int id, generation;
> +	struct ndctl_lbasize alignments;
>  };
>  
>  struct ndctl_dax {
> @@ -4781,6 +4783,18 @@ static void *__add_pfn(struct ndctl_pfn *pfn, const char *pfn_base)
>  	else
>  		pfn->size = strtoull(buf, NULL, 0);
>  
> +	/*
> +	 * If the kernel doesn't provide the supported_alignments sysfs
> +	 * attribute then it's safe to assume that we are running on x86
> +	 * which will always support 2MB and 4KB alignments.
> +	 */
> +	sprintf(path, "%s/supported_alignments", pfn_base);
> +	if (sysfs_read_attr(ctx, path, buf) < 0)
> +		sprintf(buf, "%d %d", SZ_4K, SZ_2M);
> +
> +	if (parse_lbasize_supported(ctx, pfn_base, buf, &pfn->alignments) < 0)
> +		goto err_read;
> +
>  	free(path);
>  	return pfn;
>  
> @@ -5015,6 +5029,22 @@ NDCTL_EXPORT int ndctl_pfn_set_align(struct ndctl_pfn *pfn, unsigned long align)
>  	return 0;
>  }
>  
> +NDCTL_EXPORT int ndctl_pfn_get_num_alignments(struct ndctl_pfn *pfn)
> +{
> +	return pfn->alignments.num;
> +}
> +
> +NDCTL_EXPORT unsigned long ndctl_pfn_get_supported_alignment(struct ndctl_pfn *pfn, int i)

This and a few other spots exceed 80 char lines, could you fix that up
all over?

> +{
> +	if (pfn->alignments.num == 0)
> +		return 0;
> +
> +	if (i < 0 || i > pfn->alignments.num)
> +		return -1;

A bare '-1' return is unusual for exported functions. The convention in
libndctl is to return -ERRNO. In this case, -EINVAL seems the right
error to return?

> +	else
> +		return pfn->alignments.supported[i];
> +}
> +
>  NDCTL_EXPORT int ndctl_pfn_set_namespace(struct ndctl_pfn *pfn,
>  		struct ndctl_namespace *ndns)
>  {
> @@ -5237,6 +5267,16 @@ NDCTL_EXPORT unsigned long ndctl_dax_get_align(struct ndctl_dax *dax)
>  	return ndctl_pfn_get_align(&dax->pfn);
>  }
>  
> +NDCTL_EXPORT int ndctl_dax_get_num_alignments(struct ndctl_dax *dax)
> +{
> +	return ndctl_pfn_get_num_alignments(&dax->pfn);
> +}
> +
> +NDCTL_EXPORT unsigned long ndctl_dax_get_supported_alignment(struct ndctl_dax *dax, int i)

Another > 80 char line.

> +{
> +	return ndctl_pfn_get_supported_alignment(&dax->pfn, i);
> +}
> +
>  NDCTL_EXPORT int ndctl_dax_has_align(struct ndctl_dax *dax)
>  {
>  	return ndctl_pfn_has_align(&dax->pfn);
> diff --git a/ndctl/lib/libndctl.sym b/ndctl/lib/libndctl.sym
> index 6c4c8b4dfb8e..0103c1b71a1d 100644
> --- a/ndctl/lib/libndctl.sym
> +++ b/ndctl/lib/libndctl.sym
> @@ -385,3 +385,10 @@ global:
>  	ndctl_namespace_get_next_badblock;
>  	ndctl_dimm_get_dirty_shutdown;
>  } LIBNDCTL_17;
> +
> +LIBNDCTL_19 {
> +	ndctl_pfn_get_supported_alignment;
> +	ndctl_pfn_get_num_alignments;
> +	ndctl_dax_get_supported_alignment;
> +	ndctl_dax_get_num_alignments;
> +} LIBNDCTL_18;
> diff --git a/ndctl/libndctl.h b/ndctl/libndctl.h
> index 62cef9e82da3..0f1f66256c1d 100644
> --- a/ndctl/libndctl.h
> +++ b/ndctl/libndctl.h
> @@ -681,6 +681,12 @@ enum ND_FW_STATUS ndctl_cmd_fw_xlat_firmware_status(struct ndctl_cmd *cmd);
>  struct ndctl_cmd *ndctl_dimm_cmd_new_ack_shutdown_count(struct ndctl_dimm *dimm);
>  int ndctl_dimm_fw_update_supported(struct ndctl_dimm *dimm);
>  
> +int ndctl_pfn_get_num_alignments(struct ndctl_pfn *pfn);
> +unsigned long ndctl_pfn_get_supported_alignment(struct ndctl_pfn *pfn, int i);
> +
> +int ndctl_dax_get_num_alignments(struct ndctl_dax *dax);
> +unsigned long ndctl_dax_get_supported_alignment(struct ndctl_dax *dax, int i);

For the libndctl.h definitions, instead of appending these at the
bottom, can you group the ndctl_pfn_ additions with the remaining
ndctl_pfn_ ones in the file? And same for ndctl_dax_*

> +
>  #ifdef __cplusplus
>  } /* extern "C" */
>  #endif
Oliver O'Halloran Jan. 28, 2019, 11:11 p.m. UTC | #2
On Thu, Jan 24, 2019 at 6:32 AM Verma, Vishal L
<vishal.l.verma@intel.com> wrote:
>
>
> On Wed, 2019-01-16 at 20:49 +1100, Oliver O'Halloran wrote:
> > Newer kernels provide the "supported_alignments" sysfs attribute that
> > indicates what alignments can be used with a PFN or DAX namespace. This
> > patch adds the plumbing inside of libndctl to allow users to query this
> > information through using:
> >       ndctl_{dax|pfn}_get_supported_alignment(), and
> >       ndctl_{dax|pfn}_get_num_alignments()
> >
> > Signed-off-by: Oliver O'Halloran <oohall@gmail.com>
> > ---
> > v3: Changed the return type of the *_get_supported_alignment() functions
> >     to unsigned long to match the existing *_get_alignment() functions.
> > ---
> >  ndctl/lib/libndctl.c   | 40 ++++++++++++++++++++++++++++++++++++++++
> >  ndctl/lib/libndctl.sym |  7 +++++++
> >  ndctl/libndctl.h       |  6 ++++++
> >  3 files changed, 53 insertions(+)
>
> Hi Oliver,
>
> Thanks for resubmitting this series. I had a few comments below:

Hi Vishal,

Sorry about the late response. I've been out of the office for the last week.

>
> >
> > diff --git a/ndctl/lib/libndctl.c b/ndctl/lib/libndctl.c
> > index 0c3a35e5bcc9..53369b5c9886 100644
> > --- a/ndctl/lib/libndctl.c
> > +++ b/ndctl/lib/libndctl.c
> > @@ -31,6 +31,7 @@
> >  #include <ccan/build_assert/build_assert.h>
> >
> >  #include <ndctl.h>
> > +#include <util/size.h>
> >  #include <util/sysfs.h>
> >  #include <ndctl/libndctl.h>
> >  #include <ndctl/namespace.h>
> > @@ -237,6 +238,7 @@ struct ndctl_pfn {
> >       int buf_len;
> >       uuid_t uuid;
> >       int id, generation;
> > +     struct ndctl_lbasize alignments;
> >  };
> >
> >  struct ndctl_dax {
> > @@ -4781,6 +4783,18 @@ static void *__add_pfn(struct ndctl_pfn *pfn, const char *pfn_base)
> >       else
> >               pfn->size = strtoull(buf, NULL, 0);
> >
> > +     /*
> > +      * If the kernel doesn't provide the supported_alignments sysfs
> > +      * attribute then it's safe to assume that we are running on x86
> > +      * which will always support 2MB and 4KB alignments.
> > +      */
> > +     sprintf(path, "%s/supported_alignments", pfn_base);
> > +     if (sysfs_read_attr(ctx, path, buf) < 0)
> > +             sprintf(buf, "%d %d", SZ_4K, SZ_2M);
> > +
> > +     if (parse_lbasize_supported(ctx, pfn_base, buf, &pfn->alignments) < 0)
> > +             goto err_read;
> > +
> >       free(path);
> >       return pfn;
> >
> > @@ -5015,6 +5029,22 @@ NDCTL_EXPORT int ndctl_pfn_set_align(struct ndctl_pfn *pfn, unsigned long align)
> >       return 0;
> >  }
> >
> > +NDCTL_EXPORT int ndctl_pfn_get_num_alignments(struct ndctl_pfn *pfn)
> > +{
> > +     return pfn->alignments.num;
> > +}
> > +
> > +NDCTL_EXPORT unsigned long ndctl_pfn_get_supported_alignment(struct ndctl_pfn *pfn, int i)
>
> This and a few other spots exceed 80 char lines, could you fix that up
> all over?

sure

>
> > +{
> > +     if (pfn->alignments.num == 0)
> > +             return 0;
> > +
> > +     if (i < 0 || i > pfn->alignments.num)
> > +             return -1;
>
> A bare '-1' return is unusual for exported functions. The convention in
> libndctl is to return -ERRNO. In this case, -EINVAL seems the right
> error to return?

ok

>
> > +     else
> > +             return pfn->alignments.supported[i];
> > +}
> > +
> >  NDCTL_EXPORT int ndctl_pfn_set_namespace(struct ndctl_pfn *pfn,
> >               struct ndctl_namespace *ndns)
> >  {
> > @@ -5237,6 +5267,16 @@ NDCTL_EXPORT unsigned long ndctl_dax_get_align(struct ndctl_dax *dax)
> >       return ndctl_pfn_get_align(&dax->pfn);
> >  }
> >
> > +NDCTL_EXPORT int ndctl_dax_get_num_alignments(struct ndctl_dax *dax)
> > +{
> > +     return ndctl_pfn_get_num_alignments(&dax->pfn);
> > +}
> > +
> > +NDCTL_EXPORT unsigned long ndctl_dax_get_supported_alignment(struct ndctl_dax *dax, int i)
>
> Another > 80 char line.
>
> > +{
> > +     return ndctl_pfn_get_supported_alignment(&dax->pfn, i);
> > +}
> > +
> >  NDCTL_EXPORT int ndctl_dax_has_align(struct ndctl_dax *dax)
> >  {
> >       return ndctl_pfn_has_align(&dax->pfn);
> > diff --git a/ndctl/lib/libndctl.sym b/ndctl/lib/libndctl.sym
> > index 6c4c8b4dfb8e..0103c1b71a1d 100644
> > --- a/ndctl/lib/libndctl.sym
> > +++ b/ndctl/lib/libndctl.sym
> > @@ -385,3 +385,10 @@ global:
> >       ndctl_namespace_get_next_badblock;
> >       ndctl_dimm_get_dirty_shutdown;
> >  } LIBNDCTL_17;
> > +
> > +LIBNDCTL_19 {
> > +     ndctl_pfn_get_supported_alignment;
> > +     ndctl_pfn_get_num_alignments;
> > +     ndctl_dax_get_supported_alignment;
> > +     ndctl_dax_get_num_alignments;
> > +} LIBNDCTL_18;
> > diff --git a/ndctl/libndctl.h b/ndctl/libndctl.h
> > index 62cef9e82da3..0f1f66256c1d 100644
> > --- a/ndctl/libndctl.h
> > +++ b/ndctl/libndctl.h
> > @@ -681,6 +681,12 @@ enum ND_FW_STATUS ndctl_cmd_fw_xlat_firmware_status(struct ndctl_cmd *cmd);
> >  struct ndctl_cmd *ndctl_dimm_cmd_new_ack_shutdown_count(struct ndctl_dimm *dimm);
> >  int ndctl_dimm_fw_update_supported(struct ndctl_dimm *dimm);
> >
> > +int ndctl_pfn_get_num_alignments(struct ndctl_pfn *pfn);
> > +unsigned long ndctl_pfn_get_supported_alignment(struct ndctl_pfn *pfn, int i);
> > +
> > +int ndctl_dax_get_num_alignments(struct ndctl_dax *dax);
> > +unsigned long ndctl_dax_get_supported_alignment(struct ndctl_dax *dax, int i);
>
> For the libndctl.h definitions, instead of appending these at the
> bottom, can you group the ndctl_pfn_ additions with the remaining
> ndctl_pfn_ ones in the file? And same for ndctl_dax_*

ok

>
> > +
> >  #ifdef __cplusplus
> >  } /* extern "C" */
> >  #endif
>
Verma, Vishal L Jan. 28, 2019, 11:15 p.m. UTC | #3
On Tue, 2019-01-29 at 10:11 +1100, Oliver wrote:
> On Thu, Jan 24, 2019 at 6:32 AM Verma, Vishal L
> <vishal.l.verma@intel.com> wrote:
> > 
> > On Wed, 2019-01-16 at 20:49 +1100, Oliver O'Halloran wrote:
> > > Newer kernels provide the "supported_alignments" sysfs attribute that
> > > indicates what alignments can be used with a PFN or DAX namespace. This
> > > patch adds the plumbing inside of libndctl to allow users to query this
> > > information through using:
> > >       ndctl_{dax|pfn}_get_supported_alignment(), and
> > >       ndctl_{dax|pfn}_get_num_alignments()
> > > 
> > > Signed-off-by: Oliver O'Halloran <oohall@gmail.com>
> > > ---
> > > v3: Changed the return type of the *_get_supported_alignment() functions
> > >     to unsigned long to match the existing *_get_alignment() functions.
> > > ---
> > >  ndctl/lib/libndctl.c   | 40 ++++++++++++++++++++++++++++++++++++++++
> > >  ndctl/lib/libndctl.sym |  7 +++++++
> > >  ndctl/libndctl.h       |  6 ++++++
> > >  3 files changed, 53 insertions(+)
> > 
> > Hi Oliver,
> > 
> > Thanks for resubmitting this series. I had a few comments below:
> 
> Hi Vishal,
> 
> Sorry about the late response. I've been out of the office for the last week.

No worries. Also if you wouldn't mind, rebasing to the latest pending
branch on github would be helpful.

Thanks!
-Vishal
Oliver O'Halloran Jan. 28, 2019, 11:20 p.m. UTC | #4
On Tue, Jan 29, 2019 at 10:15 AM Verma, Vishal L
<vishal.l.verma@intel.com> wrote:
>
>
> On Tue, 2019-01-29 at 10:11 +1100, Oliver wrote:
> > On Thu, Jan 24, 2019 at 6:32 AM Verma, Vishal L
> > <vishal.l.verma@intel.com> wrote:
> > >
> > > On Wed, 2019-01-16 at 20:49 +1100, Oliver O'Halloran wrote:
> > > > Newer kernels provide the "supported_alignments" sysfs attribute that
> > > > indicates what alignments can be used with a PFN or DAX namespace. This
> > > > patch adds the plumbing inside of libndctl to allow users to query this
> > > > information through using:
> > > >       ndctl_{dax|pfn}_get_supported_alignment(), and
> > > >       ndctl_{dax|pfn}_get_num_alignments()
> > > >
> > > > Signed-off-by: Oliver O'Halloran <oohall@gmail.com>
> > > > ---
> > > > v3: Changed the return type of the *_get_supported_alignment() functions
> > > >     to unsigned long to match the existing *_get_alignment() functions.
> > > > ---
> > > >  ndctl/lib/libndctl.c   | 40 ++++++++++++++++++++++++++++++++++++++++
> > > >  ndctl/lib/libndctl.sym |  7 +++++++
> > > >  ndctl/libndctl.h       |  6 ++++++
> > > >  3 files changed, 53 insertions(+)
> > >
> > > Hi Oliver,
> > >
> > > Thanks for resubmitting this series. I had a few comments below:
> >
> > Hi Vishal,
> >
> > Sorry about the late response. I've been out of the office for the last week.
>
> No worries. Also if you wouldn't mind, rebasing to the latest pending
> branch on github would be helpful.

No problem.

One follow up question though. Does ndctl follow the kernel policy of
keeping format strings on one line even if they go over 80 chars or
should they be broken?

>
> Thanks!
> -Vishal
Verma, Vishal L Jan. 28, 2019, 11:22 p.m. UTC | #5
On Tue, 2019-01-29 at 10:20 +1100, Oliver wrote:
> On Tue, Jan 29, 2019 at 10:15 AM Verma, Vishal L
> <vishal.l.verma@intel.com> wrote:
> > 
> > On Tue, 2019-01-29 at 10:11 +1100, Oliver wrote:
> > > On Thu, Jan 24, 2019 at 6:32 AM Verma, Vishal L
> > > <vishal.l.verma@intel.com> wrote:
> > > > On Wed, 2019-01-16 at 20:49 +1100, Oliver O'Halloran wrote:
> > > > > Newer kernels provide the "supported_alignments" sysfs attribute that
> > > > > indicates what alignments can be used with a PFN or DAX namespace. This
> > > > > patch adds the plumbing inside of libndctl to allow users to query this
> > > > > information through using:
> > > > >       ndctl_{dax|pfn}_get_supported_alignment(), and
> > > > >       ndctl_{dax|pfn}_get_num_alignments()
> > > > > 
> > > > > Signed-off-by: Oliver O'Halloran <oohall@gmail.com>
> > > > > ---
> > > > > v3: Changed the return type of the *_get_supported_alignment() functions
> > > > >     to unsigned long to match the existing *_get_alignment() functions.
> > > > > ---
> > > > >  ndctl/lib/libndctl.c   | 40 ++++++++++++++++++++++++++++++++++++++++
> > > > >  ndctl/lib/libndctl.sym |  7 +++++++
> > > > >  ndctl/libndctl.h       |  6 ++++++
> > > > >  3 files changed, 53 insertions(+)
> > > > 
> > > > Hi Oliver,
> > > > 
> > > > Thanks for resubmitting this series. I had a few comments below:
> > > 
> > > Hi Vishal,
> > > 
> > > Sorry about the late response. I've been out of the office for the last week.
> > 
> > No worries. Also if you wouldn't mind, rebasing to the latest pending
> > branch on github would be helpful.
> 
> No problem.
> 
> One follow up question though. Does ndctl follow the kernel policy of
> keeping format strings on one line even if they go over 80 chars or
> should they be broken?

Yes we follow the kernel policy on that, so >80 char is ok for unbroken
format strings.
diff mbox series

Patch

diff --git a/ndctl/lib/libndctl.c b/ndctl/lib/libndctl.c
index 0c3a35e5bcc9..53369b5c9886 100644
--- a/ndctl/lib/libndctl.c
+++ b/ndctl/lib/libndctl.c
@@ -31,6 +31,7 @@ 
 #include <ccan/build_assert/build_assert.h>
 
 #include <ndctl.h>
+#include <util/size.h>
 #include <util/sysfs.h>
 #include <ndctl/libndctl.h>
 #include <ndctl/namespace.h>
@@ -237,6 +238,7 @@  struct ndctl_pfn {
 	int buf_len;
 	uuid_t uuid;
 	int id, generation;
+	struct ndctl_lbasize alignments;
 };
 
 struct ndctl_dax {
@@ -4781,6 +4783,18 @@  static void *__add_pfn(struct ndctl_pfn *pfn, const char *pfn_base)
 	else
 		pfn->size = strtoull(buf, NULL, 0);
 
+	/*
+	 * If the kernel doesn't provide the supported_alignments sysfs
+	 * attribute then it's safe to assume that we are running on x86
+	 * which will always support 2MB and 4KB alignments.
+	 */
+	sprintf(path, "%s/supported_alignments", pfn_base);
+	if (sysfs_read_attr(ctx, path, buf) < 0)
+		sprintf(buf, "%d %d", SZ_4K, SZ_2M);
+
+	if (parse_lbasize_supported(ctx, pfn_base, buf, &pfn->alignments) < 0)
+		goto err_read;
+
 	free(path);
 	return pfn;
 
@@ -5015,6 +5029,22 @@  NDCTL_EXPORT int ndctl_pfn_set_align(struct ndctl_pfn *pfn, unsigned long align)
 	return 0;
 }
 
+NDCTL_EXPORT int ndctl_pfn_get_num_alignments(struct ndctl_pfn *pfn)
+{
+	return pfn->alignments.num;
+}
+
+NDCTL_EXPORT unsigned long ndctl_pfn_get_supported_alignment(struct ndctl_pfn *pfn, int i)
+{
+	if (pfn->alignments.num == 0)
+		return 0;
+
+	if (i < 0 || i > pfn->alignments.num)
+		return -1;
+	else
+		return pfn->alignments.supported[i];
+}
+
 NDCTL_EXPORT int ndctl_pfn_set_namespace(struct ndctl_pfn *pfn,
 		struct ndctl_namespace *ndns)
 {
@@ -5237,6 +5267,16 @@  NDCTL_EXPORT unsigned long ndctl_dax_get_align(struct ndctl_dax *dax)
 	return ndctl_pfn_get_align(&dax->pfn);
 }
 
+NDCTL_EXPORT int ndctl_dax_get_num_alignments(struct ndctl_dax *dax)
+{
+	return ndctl_pfn_get_num_alignments(&dax->pfn);
+}
+
+NDCTL_EXPORT unsigned long ndctl_dax_get_supported_alignment(struct ndctl_dax *dax, int i)
+{
+	return ndctl_pfn_get_supported_alignment(&dax->pfn, i);
+}
+
 NDCTL_EXPORT int ndctl_dax_has_align(struct ndctl_dax *dax)
 {
 	return ndctl_pfn_has_align(&dax->pfn);
diff --git a/ndctl/lib/libndctl.sym b/ndctl/lib/libndctl.sym
index 6c4c8b4dfb8e..0103c1b71a1d 100644
--- a/ndctl/lib/libndctl.sym
+++ b/ndctl/lib/libndctl.sym
@@ -385,3 +385,10 @@  global:
 	ndctl_namespace_get_next_badblock;
 	ndctl_dimm_get_dirty_shutdown;
 } LIBNDCTL_17;
+
+LIBNDCTL_19 {
+	ndctl_pfn_get_supported_alignment;
+	ndctl_pfn_get_num_alignments;
+	ndctl_dax_get_supported_alignment;
+	ndctl_dax_get_num_alignments;
+} LIBNDCTL_18;
diff --git a/ndctl/libndctl.h b/ndctl/libndctl.h
index 62cef9e82da3..0f1f66256c1d 100644
--- a/ndctl/libndctl.h
+++ b/ndctl/libndctl.h
@@ -681,6 +681,12 @@  enum ND_FW_STATUS ndctl_cmd_fw_xlat_firmware_status(struct ndctl_cmd *cmd);
 struct ndctl_cmd *ndctl_dimm_cmd_new_ack_shutdown_count(struct ndctl_dimm *dimm);
 int ndctl_dimm_fw_update_supported(struct ndctl_dimm *dimm);
 
+int ndctl_pfn_get_num_alignments(struct ndctl_pfn *pfn);
+unsigned long ndctl_pfn_get_supported_alignment(struct ndctl_pfn *pfn, int i);
+
+int ndctl_dax_get_num_alignments(struct ndctl_dax *dax);
+unsigned long ndctl_dax_get_supported_alignment(struct ndctl_dax *dax, int i);
+
 #ifdef __cplusplus
 } /* extern "C" */
 #endif