| /OK3568_Linux_fs/kernel/drivers/infiniband/hw/mlx4/ |
| H A D | main.c | 161 static int mlx4_ib_update_gids_v1(struct gid_entry *gids, in mlx4_ib_update_gids_v1() argument 178 memcpy(&gid_tbl[i], &gids[i].gid, sizeof(union ib_gid)); in mlx4_ib_update_gids_v1() 194 static int mlx4_ib_update_gids_v1_v2(struct gid_entry *gids, in mlx4_ib_update_gids_v1_v2() argument 217 memcpy(&gid_tbl[i].gid, &gids[i].gid, sizeof(union ib_gid)); in mlx4_ib_update_gids_v1_v2() 218 if (gids[i].gid_type == IB_GID_TYPE_ROCE_UDP_ENCAP) { in mlx4_ib_update_gids_v1_v2() 220 if (!ipv6_addr_v4mapped((struct in6_addr *)&gids[i].gid)) in mlx4_ib_update_gids_v1_v2() 239 static int mlx4_ib_update_gids(struct gid_entry *gids, in mlx4_ib_update_gids() argument 244 return mlx4_ib_update_gids_v1_v2(gids, ibdev, port_num); in mlx4_ib_update_gids() 246 return mlx4_ib_update_gids_v1(gids, ibdev, port_num); in mlx4_ib_update_gids() 265 struct gid_entry *gids = NULL; in mlx4_ib_add_gid() local [all …]
|
| H A D | mlx4_ib.h | 541 struct gid_entry gids[MLX4_MAX_PORT_GIDS]; member 549 struct mlx4_port_gid_table gids[MLX4_MAX_PORTS]; member
|
| H A D | qp.c | 2961 port_gid_table = &iboe->gids[port_num - 1]; in fill_gid_by_hw_index() 2963 memcpy(gid, &port_gid_table->gids[index].gid, sizeof(*gid)); in fill_gid_by_hw_index() 2964 *gid_type = port_gid_table->gids[index].gid_type; in fill_gid_by_hw_index()
|
| /OK3568_Linux_fs/buildroot/package/efl/ |
| H A D | 0005-elput-root-Allow-root-group.patch | 19 - if (gids[i] == input_group->gr_gid) 20 + if (!gids[i] || gids[i] == input_group->gr_gid)
|
| /OK3568_Linux_fs/external/xserver/hw/dmx/ |
| H A D | dmxpict.c | 374 CARD32 *gids; in dmxProcRenderAddGlyphs() local 386 gids = (CARD32 *) (stuff + 1); in dmxProcRenderAddGlyphs() 387 gi = (xGlyphInfo *) (gids + nglyphs); in dmxProcRenderAddGlyphs() 395 gidsCopy[i] = gids[i]; in dmxProcRenderAddGlyphs() 433 Glyph *gids; in dmxProcRenderFreeGlyphs() local 437 gids = xallocarray(nglyphs, sizeof(*gids)); in dmxProcRenderFreeGlyphs() 439 gids[i] = ((CARD32 *) (stuff + 1))[i]; in dmxProcRenderFreeGlyphs() 446 glyphPriv->glyphSets[i], gids, nglyphs); in dmxProcRenderFreeGlyphs() 450 free(gids); in dmxProcRenderFreeGlyphs()
|
| H A D | dmxextension.c | 1156 Glyph *gids; in dmxBERestoreRenderGlyph() local 1191 gids = xallocarray(glyphSet->hash.tableEntries, sizeof(Glyph)); in dmxBERestoreRenderGlyph() 1206 gids[ctr] = gr->signature; in dmxBERestoreRenderGlyph() 1224 gids, glyphs, glyphSet->hash.tableEntries, images, in dmxBERestoreRenderGlyph() 1229 free(gids); in dmxBERestoreRenderGlyph()
|
| /OK3568_Linux_fs/kernel/net/sunrpc/ |
| H A D | svcauth_unix.c | 491 int gids; in unix_gid_parse() local 512 rv = get_int(&mesg, &gids); in unix_gid_parse() 513 if (rv || gids < 0 || gids > 8192) in unix_gid_parse() 516 ug.gi = groups_alloc(gids); in unix_gid_parse() 520 for (i = 0 ; i < gids ; i++) { in unix_gid_parse()
|
| /OK3568_Linux_fs/external/xserver/render/ |
| H A D | render.c | 1002 CARD32 *gids; in ProcRenderAddGlyphs() local 1042 gids = (CARD32 *) (stuff + 1); in ProcRenderAddGlyphs() 1043 gi = (xGlyphInfo *) (gids + nglyphs); in ProcRenderAddGlyphs() 1156 glyph_new->id = gids[i]; in ProcRenderAddGlyphs() 1202 CARD32 *gids; in ProcRenderFreeGlyphs() local 1214 gids = (CARD32 *) (stuff + 1); in ProcRenderFreeGlyphs() 1216 glyph = *gids++; in ProcRenderFreeGlyphs() 2222 CARD32 *gids; in SProcRenderAddGlyphs() local 2234 gids = (CARD32 *) (stuff + 1); in SProcRenderAddGlyphs() 2235 gi = (xGlyphInfo *) (gids + stuff->nglyphs); in SProcRenderAddGlyphs() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/ethernet/mellanox/mlx4/ |
| H A D | port.c | 1130 int gids; in mlx4_get_base_gid_ix() local 1159 gids = MLX4_ROCE_MAX_GIDS - MLX4_ROCE_PF_GIDS; in mlx4_get_base_gid_ix() 1161 if (slave_gid <= gids % vfs) in mlx4_get_base_gid_ix() 1162 return MLX4_ROCE_PF_GIDS + ((gids / vfs) + 1) * (slave_gid - 1); in mlx4_get_base_gid_ix() 1164 return MLX4_ROCE_PF_GIDS + (gids % vfs) + in mlx4_get_base_gid_ix() 1165 ((gids / vfs) * (slave_gid - 1)); in mlx4_get_base_gid_ix()
|
| /OK3568_Linux_fs/kernel/Documentation/ABI/stable/ |
| H A D | sysfs-class-infiniband | 326 What: /sys/class/infiniband/mlx4_X/iov/ports/<port-num>/gids/<n> 344 The "pkeys" and "gids" subdirectories contain one file for each 350 gids/<n>: (RO) The physical port gids n = 0..127
|
| /OK3568_Linux_fs/kernel/Documentation/filesystems/ |
| H A D | squashfs.rst | 44 32-bit uids/gids yes no 198 converted to 32-bit uids/gids using an id look up table. This table is
|
| H A D | erofs.rst | 41 Max uids/gids 65536 4294967296
|
| /OK3568_Linux_fs/external/xserver/os/ |
| H A D | access.c | 1176 const gid_t *gids; in GetLocalClientCreds() local 1229 lcc->nSuppGids = ucred_getgroups(peercred, &gids); in GetLocalClientCreds() 1239 (lcc->pSuppGids)[i] = (int) gids[i]; in GetLocalClientCreds()
|
| /OK3568_Linux_fs/kernel/Documentation/filesystems/nfs/ |
| H A D | rpc-cache.rst | 24 of 16 gids.
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-extended/polkit/polkit/ |
| H A D | 0003-Added-support-for-duktape-as-JS-engine.patch | 1906 + gid_t gids[512]; 1913 + gids, 1924 + group = getgrgid (gids[n]); 1927 + g_ptr_array_add (groups, g_strdup_printf ("%d", (gint) gids[n]));
|
| /OK3568_Linux_fs/kernel/Documentation/admin-guide/cifs/ |
| H A D | usage.rst | 576 and retrieving uids/gids/mode from the server) or to
|
| /OK3568_Linux_fs/kernel/Documentation/admin-guide/ |
| H A D | kernel-parameters.txt | 3180 numeric uids/gids if the mount is using the 3225 server will return only numeric uids and gids to 3227 and gids from such clients. This is intended to ease
|