1fa9e4066Sahrens /* 2fa9e4066Sahrens * CDDL HEADER START 3fa9e4066Sahrens * 4fa9e4066Sahrens * The contents of this file are subject to the terms of the 599653d4eSeschrock * Common Development and Distribution License (the "License"). 699653d4eSeschrock * You may not use this file except in compliance with the License. 7fa9e4066Sahrens * 8fa9e4066Sahrens * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9fa9e4066Sahrens * or http://www.opensolaris.org/os/licensing. 10fa9e4066Sahrens * See the License for the specific language governing permissions 11fa9e4066Sahrens * and limitations under the License. 12fa9e4066Sahrens * 13fa9e4066Sahrens * When distributing Covered Code, include this CDDL HEADER in each 14fa9e4066Sahrens * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15fa9e4066Sahrens * If applicable, add the following below this CDDL HEADER, with the 16fa9e4066Sahrens * fields enclosed by brackets "[]" replaced with your own identifying 17fa9e4066Sahrens * information: Portions Copyright [yyyy] [name of copyright owner] 18fa9e4066Sahrens * 19fa9e4066Sahrens * CDDL HEADER END 20fa9e4066Sahrens */ 21fa9e4066Sahrens /* 22ae1726b6SChris Gerhard * Copyright 2009 Sun Microsystems, Inc. All rights reserved. 23fa9e4066Sahrens * Use is subject to license terms. 24fa9e4066Sahrens */ 25fa9e4066Sahrens 26fa9e4066Sahrens #ifndef ZFS_ITER_H 27fa9e4066Sahrens #define ZFS_ITER_H 28fa9e4066Sahrens 29fa9e4066Sahrens #ifdef __cplusplus 30fa9e4066Sahrens extern "C" { 31fa9e4066Sahrens #endif 32fa9e4066Sahrens 33b6825278Ssjelinek typedef struct zfs_sort_column { 34b6825278Ssjelinek struct zfs_sort_column *sc_next; 35b6825278Ssjelinek struct zfs_sort_column *sc_last; 36b6825278Ssjelinek zfs_prop_t sc_prop; 37e9dbad6fSeschrock char *sc_user_prop; 38b6825278Ssjelinek boolean_t sc_reverse; 39b6825278Ssjelinek } zfs_sort_column_t; 40b6825278Ssjelinek 41d5b5bb25SRich Morris #define ZFS_ITER_RECURSE (1 << 0) 42d5b5bb25SRich Morris #define ZFS_ITER_ARGS_CAN_BE_PATHS (1 << 1) 43d5b5bb25SRich Morris #define ZFS_ITER_PROP_LISTSNAPS (1 << 2) 44ae1726b6SChris Gerhard #define ZFS_ITER_DEPTH_LIMIT (1 << 3) 45*92241e0bSTom Erickson #define ZFS_ITER_RECVD_PROPS (1 << 4) 46d5b5bb25SRich Morris 47d5b5bb25SRich Morris int zfs_for_each(int, char **, int options, zfs_type_t, 48ae1726b6SChris Gerhard zfs_sort_column_t *, zprop_list_t **, int, zfs_iter_f, void *); 49e9dbad6fSeschrock int zfs_add_sort_column(zfs_sort_column_t **, const char *, boolean_t); 50b6825278Ssjelinek void zfs_free_sort_columns(zfs_sort_column_t *); 51fa9e4066Sahrens 52fa9e4066Sahrens #ifdef __cplusplus 53fa9e4066Sahrens } 54fa9e4066Sahrens #endif 55fa9e4066Sahrens 56fa9e4066Sahrens #endif /* ZFS_ITER_H */ 57