Indentation issues.

Contract some lines leftover from r298310.

Mea culpa.
This commit is contained in:
Pedro F. Giffuni 2016-04-20 16:19:44 +00:00
parent 422fa64be3
commit 63b6b7a74a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=298354
9 changed files with 13 additions and 25 deletions

View File

@ -53,8 +53,7 @@ static struct db_variable db_vars[] = {
{ "db_vnet", NULL, db_var_db_vnet },
#endif
};
static struct db_variable *db_evars =
db_vars + nitems(db_vars);
static struct db_variable *db_evars = db_vars + nitems(db_vars);
static int
db_find_variable(struct db_variable **varp)

View File

@ -140,8 +140,7 @@ bsd_parse_type(const char *type, uint8_t *fstype)
*fstype = (u_int)lt;
return (0);
}
for (i = 0;
i < nitems(bsd_alias_match); i++) {
for (i = 0; i < nitems(bsd_alias_match); i++) {
alias = g_part_alias_name(bsd_alias_match[i].alias);
if (strcasecmp(type, alias) == 0) {
*fstype = bsd_alias_match[i].type;

View File

@ -188,8 +188,7 @@ ebr_parse_type(const char *type, u_char *dp_typ)
*dp_typ = (u_char)lt;
return (0);
}
for (i = 0;
i < nitems(ebr_alias_match); i++) {
for (i = 0; i < nitems(ebr_alias_match); i++) {
alias = g_part_alias_name(ebr_alias_match[i].alias);
if (strcasecmp(type, alias) == 0) {
*dp_typ = ebr_alias_match[i].typ;
@ -603,8 +602,7 @@ g_part_ebr_type(struct g_part_table *basetable, struct g_part_entry *baseentry,
int i;
entry = (struct g_part_ebr_entry *)baseentry;
for (i = 0;
i < nitems(ebr_alias_match); i++) {
for (i = 0; i < nitems(ebr_alias_match); i++) {
if (ebr_alias_match[i].typ == entry->ent.dp_typ)
return (g_part_alias_name(ebr_alias_match[i].alias));
}

View File

@ -453,8 +453,7 @@ ldm_privhdr_check(struct ldm_db *db, struct g_consumer *cp, int is_gpt)
cp2->provider->mediasize / cp2->provider->sectorsize - 1;
} else
last = pp->mediasize / pp->sectorsize - 1;
for (found = 0, i = is_gpt;
i < nitems(ldm_ph_off); i++) {
for (found = 0, i = is_gpt; i < nitems(ldm_ph_off); i++) {
offset = ldm_ph_off[i];
/*
* In the GPT case consumer is attached to the LDM metadata
@ -1468,8 +1467,7 @@ g_part_ldm_type(struct g_part_table *basetable, struct g_part_entry *baseentry,
int i;
entry = (struct g_part_ldm_entry *)baseentry;
for (i = 0;
i < nitems(ldm_alias_match); i++) {
for (i = 0; i < nitems(ldm_alias_match); i++) {
if (ldm_alias_match[i].typ == entry->type)
return (g_part_alias_name(ldm_alias_match[i].alias));
}

View File

@ -158,8 +158,7 @@ mbr_parse_type(const char *type, u_char *dp_typ)
*dp_typ = (u_char)lt;
return (0);
}
for (i = 0;
i < nitems(mbr_alias_match); i++) {
for (i = 0; i < nitems(mbr_alias_match); i++) {
alias = g_part_alias_name(mbr_alias_match[i].alias);
if (strcasecmp(type, alias) == 0) {
*dp_typ = mbr_alias_match[i].typ;
@ -560,8 +559,7 @@ g_part_mbr_type(struct g_part_table *basetable, struct g_part_entry *baseentry,
int i;
entry = (struct g_part_mbr_entry *)baseentry;
for (i = 0;
i < nitems(mbr_alias_match); i++) {
for (i = 0; i < nitems(mbr_alias_match); i++) {
if (mbr_alias_match[i].typ == entry->ent.dp_typ)
return (g_part_alias_name(mbr_alias_match[i].alias));
}

View File

@ -1518,8 +1518,7 @@ sys_msgsys(td, uap)
if (!prison_allow(td->td_ucred, PR_ALLOW_SYSVIPC))
return (ENOSYS);
if (uap->which < 0 ||
uap->which >= nitems(msgcalls))
if (uap->which < 0 || uap->which >= nitems(msgcalls))
return (EINVAL);
error = (*msgcalls[uap->which])(td, &uap->a2);
return (error);

View File

@ -1400,8 +1400,7 @@ sys_semsys(td, uap)
if (!prison_allow(td->td_ucred, PR_ALLOW_SYSVIPC))
return (ENOSYS);
if (uap->which < 0 ||
uap->which >= nitems(semcalls))
if (uap->which < 0 || uap->which >= nitems(semcalls))
return (EINVAL);
error = (*semcalls[uap->which])(td, &uap->a2);
return (error);

View File

@ -1896,8 +1896,7 @@ syncookie_generate(struct syncache_head *sch, struct syncache *sc)
/* Map our computed MSS into the 3-bit index. */
mss = min(tcp_mssopt(&sc->sc_inc), max(sc->sc_peer_mss, V_tcp_minmss));
for (i = nitems(tcp_sc_msstab) - 1;
tcp_sc_msstab[i] > mss && i > 0;
for (i = nitems(tcp_sc_msstab) - 1; tcp_sc_msstab[i] > mss && i > 0;
i--)
;
cookie.flags.mss_idx = i;
@ -1909,7 +1908,7 @@ syncookie_generate(struct syncache_head *sch, struct syncache *sc)
if (sc->sc_flags & SCF_WINSCALE) {
wscale = sc->sc_requested_s_scale;
for (i = nitems(tcp_sc_wstab) - 1;
tcp_sc_wstab[i] > wscale && i > 0;
tcp_sc_wstab[i] > wscale && i > 0;
i--)
;
cookie.flags.wscale_idx = i;

View File

@ -381,8 +381,7 @@ struct domain inet6domain = {
.dom_family = AF_INET6,
.dom_name = "internet6",
.dom_protosw = (struct protosw *)inet6sw,
.dom_protoswNPROTOSW = (struct protosw *)
&inet6sw[nitems(inet6sw)],
.dom_protoswNPROTOSW = (struct protosw *)&inet6sw[nitems(inet6sw)],
#ifdef RADIX_MPATH
.dom_rtattach = rn6_mpath_inithead,
#else