export.c (f26e8817b235d8764363bffcc9cbfc61867371f2) | export.c (32ddd944a056c786f6acdd95ed29e994adc613a2) |
---|---|
1/* 2 * NFS exporting and validation. 3 * 4 * We maintain a list of clients, each of which has a list of 5 * exports. To export an fs to a given client, you first have 6 * to create the client entry with NFSCTL_ADDCLIENT, which 7 * creates a client control block and adds it to the hash 8 * table. Then, you call NFSCTL_EXPORT for each fs. --- 1088 unchanged lines hidden (view full) --- 1097 { NFSEXP_GATHERED_WRITES, {"wdelay", "no_wdelay"}}, 1098 { NFSEXP_NOREADDIRPLUS, {"nordirplus", ""}}, 1099 { NFSEXP_NOHIDE, {"nohide", ""}}, 1100 { NFSEXP_CROSSMOUNT, {"crossmnt", ""}}, 1101 { NFSEXP_NOSUBTREECHECK, {"no_subtree_check", ""}}, 1102 { NFSEXP_NOAUTHNLM, {"insecure_locks", ""}}, 1103 { NFSEXP_V4ROOT, {"v4root", ""}}, 1104 { NFSEXP_PNFS, {"pnfs", ""}}, | 1/* 2 * NFS exporting and validation. 3 * 4 * We maintain a list of clients, each of which has a list of 5 * exports. To export an fs to a given client, you first have 6 * to create the client entry with NFSCTL_ADDCLIENT, which 7 * creates a client control block and adds it to the hash 8 * table. Then, you call NFSCTL_EXPORT for each fs. --- 1088 unchanged lines hidden (view full) --- 1097 { NFSEXP_GATHERED_WRITES, {"wdelay", "no_wdelay"}}, 1098 { NFSEXP_NOREADDIRPLUS, {"nordirplus", ""}}, 1099 { NFSEXP_NOHIDE, {"nohide", ""}}, 1100 { NFSEXP_CROSSMOUNT, {"crossmnt", ""}}, 1101 { NFSEXP_NOSUBTREECHECK, {"no_subtree_check", ""}}, 1102 { NFSEXP_NOAUTHNLM, {"insecure_locks", ""}}, 1103 { NFSEXP_V4ROOT, {"v4root", ""}}, 1104 { NFSEXP_PNFS, {"pnfs", ""}}, |
1105 { NFSEXP_SECURITY_LABEL, {"security_label", ""}}, |
|
1105 { 0, {"", ""}} 1106}; 1107 1108static void show_expflags(struct seq_file *m, int flags, int mask) 1109{ 1110 struct flags *flg; 1111 int state, first = 0; 1112 --- 176 unchanged lines hidden --- | 1106 { 0, {"", ""}} 1107}; 1108 1109static void show_expflags(struct seq_file *m, int flags, int mask) 1110{ 1111 struct flags *flg; 1112 int state, first = 0; 1113 --- 176 unchanged lines hidden --- |