Extending the mount structure

You can also extend the iofunc_mount_t structure in the same manner as the attribute and OCB structures. In this case, you'd define:

#define IOFUNC_MOUNT_T       struct newmount  

and then declare the new structure:

struct newmount {
    iofunc_mount_t          mount;
    int                   ourflag;
};