diff options
author | наб <[email protected]> | 2022-01-21 17:07:15 +0100 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2022-01-26 11:38:52 -0800 |
commit | 7ada752a934f79d87fb9ef998455f26fd07f59a7 (patch) | |
tree | fadcb89e9710da5b7ad2d5b6f26c94eb1ca96d50 /module/zfs/zcp.c | |
parent | a3fecf4f1059f4afcead0e7a502ffe8babb1e39c (diff) |
Clean up CSTYLEDs
69 CSTYLED BEGINs remain, appx. 30 of which can be removed if cstyle(1)
had a useful policy regarding
CALL(ARG1,
ARG2,
ARG3);
above 2 lines. As it stands, it spits out *both*
sysctl_os.c: 385: continuation line should be indented by 4 spaces
sysctl_os.c: 385: indent by spaces instead of tabs
which is very cool
Another >10 could be fixed by removing "ulong" &al. handling.
I don't foresee anyone actually using it intentionally
(does it even exist in modern headers? why did it in the first place?).
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Ahelenia Ziemiańska <[email protected]>
Closes #12993
Diffstat (limited to 'module/zfs/zcp.c')
-rw-r--r-- | module/zfs/zcp.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/module/zfs/zcp.c b/module/zfs/zcp.c index 0a7906838..dcfb55d3b 100644 --- a/module/zfs/zcp.c +++ b/module/zfs/zcp.c @@ -1443,10 +1443,8 @@ zcp_parse_args(lua_State *state, const char *fname, const zcp_arg_t *pargs, } } -/* BEGIN CSTYLED */ ZFS_MODULE_PARAM(zfs_lua, zfs_lua_, max_instrlimit, ULONG, ZMOD_RW, "Max instruction limit that can be specified for a channel program"); ZFS_MODULE_PARAM(zfs_lua, zfs_lua_, max_memlimit, ULONG, ZMOD_RW, "Max memory limit that can be specified for a channel program"); -/* END CSTYLED */ |