Subversion Repositories configs

Rev

Rev 200 | Rev 208 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 200 Rev 203
Line 702... Line 702...
702
                                perf_event_array percpu_hash percpu_array \
702
                                perf_event_array percpu_hash percpu_array \
703
                                stack_trace cgroup_array lru_hash \
703
                                stack_trace cgroup_array lru_hash \
704
                                lru_percpu_hash lpm_trie array_of_maps \
704
                                lru_percpu_hash lpm_trie array_of_maps \
705
                                hash_of_maps devmap devmap_hash sockmap cpumap \
705
                                hash_of_maps devmap devmap_hash sockmap cpumap \
706
                                xskmap sockhash cgroup_storage reuseport_sockarray \
706
                                xskmap sockhash cgroup_storage reuseport_sockarray \
707
                                percpu_cgroup_storage queue stack' -- \
707
                                percpu_cgroup_storage queue stack sk_storage \
-
 
708
                                struct_ops inode_storage task_storage' -- \
708
                                                   "$cur" ) )
709
                                                   "$cur" ) )
709
                            return 0
710
                            return 0
710
                            ;;
711
                            ;;
711
                        key|value|flags|name|entries)
712
                        key|value|flags|entries)
712
                            return 0
713
                            return 0
-
 
714
                            ;;
-
 
715
                        inner_map)
-
 
716
                            COMPREPLY=( $( compgen -W "$MAP_TYPE" -- "$cur" ) )
-
 
717
                            return 0
-
 
718
                            ;;
-
 
719
                        id)
-
 
720
                            _bpftool_get_map_ids
-
 
721
                            ;;
-
 
722
                        name)
-
 
723
                            case $pprev in
-
 
724
                                inner_map)
-
 
725
                                    _bpftool_get_map_names
-
 
726
                                    ;;
-
 
727
                                *)
-
 
728
                                    return 0
-
 
729
                                    ;;
-
 
730
                            esac
713
                            ;;
731
                            ;;
714
                        *)
732
                        *)
715
                            _bpftool_once_attr 'type'
733
                            _bpftool_once_attr 'type'
716
                            _bpftool_once_attr 'key'
734
                            _bpftool_once_attr 'key'
717
                            _bpftool_once_attr 'value'
735
                            _bpftool_once_attr 'value'
718
                            _bpftool_once_attr 'entries'
736
                            _bpftool_once_attr 'entries'
719
                            _bpftool_once_attr 'name'
737
                            _bpftool_once_attr 'name'
720
                            _bpftool_once_attr 'flags'
738
                            _bpftool_once_attr 'flags'
-
 
739
                            if _bpftool_search_list 'array_of_maps' 'hash_of_maps'; then
-
 
740
                                _bpftool_once_attr 'inner_map'
-
 
741
                            fi
721
                            _bpftool_once_attr 'dev'
742
                            _bpftool_once_attr 'dev'
722
                            return 0
743
                            return 0
723
                            ;;
744
                            ;;
724
                    esac
745
                    esac
725
                    ;;
746
                    ;;