Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for hugetlbfs (0.12 sec)

  1. pkg/volume/emptydir/empty_dir_test.go

    			},
    			{
    				Device: "/dev/hugepages",
    				Type:   "hugetlbfs",
    				Path:   "/mnt/hugepages-1Gi",
    				Opts:   []string{"rw", "relatime", "pagesize=1024M"},
    			},
    			{
    				Device: "/dev/hugepages",
    				Type:   "hugetlbfs",
    				Path:   "/mnt/noopt",
    				Opts:   []string{"rw", "relatime"},
    			},
    			{
    				Device: "/dev/hugepages",
    				Type:   "hugetlbfs",
    				Path:   "/mnt/badopt",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  2. pkg/volume/emptydir/empty_dir.go

    	if err != nil {
    		return err
    	}
    
    	klog.V(3).Infof("pod %v: mounting hugepages for volume %v", ed.pod.UID, ed.volName)
    	return ed.mounter.MountSensitiveWithoutSystemd("nodev", dir, "hugetlbfs", []string{pageSizeMountOption}, nil)
    }
    
    // getPageSizeMountOption retrieves pageSize mount option from Pod's resources
    // and medium and validates pageSize options in all containers of given Pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. pkg/util/procfs/example_proc_cgroup

    11:name=systemd:/user/1000.user/c1.session
    10:hugetlb:/user/1000.user/c1.session
    9:perf_event:/user/1000.user/c1.session
    8:blkio:/user/1000.user/c1.session
    7:freezer:/user/1000.user/c1.session
    6:devices:/user/1000.user/c1.session
    5:memory:/user/1000.user/c1.session
    4:cpuacct:/user/1000.user/c1.session
    3:cpu:/user/1000.user/c1.session
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 07 18:18:16 UTC 2015
    - 346 bytes
    - Viewed (0)
  4. pkg/kubelet/cm/cgroup_manager_linux.go

    	// Check if hugetlb is supported.
    	if libcontainercgroups.IsCgroup2UnifiedMode() {
    		if !getSupportedUnifiedControllers().Has("hugetlb") {
    			klog.V(6).InfoS("Optional subsystem not supported: hugetlb")
    			return
    		}
    	} else if _, ok := m.subsystems.MountPoints["hugetlb"]; !ok {
    		klog.V(6).InfoS("Optional subsystem not supported: hugetlb")
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/qos_container_manager_linux.go

    		if err != nil {
    			klog.InfoS("Failed to reserve QoS requests", "err", err)
    		}
    	}, periodicQOSCgroupUpdateInterval, wait.NeverStop)
    
    	return nil
    }
    
    // setHugePagesUnbounded ensures hugetlb is effectively unbounded
    func (m *qosContainerManagerImpl) setHugePagesUnbounded(cgroupConfig *CgroupConfig) error {
    	hugePageLimit := map[int64]int64{}
    	for _, pageSize := range libcontainercgroups.HugePageSizes() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 20:42:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.24.md

    - Fix libct/cg/fs2: fixed GetStats for unsupported hugetlb error on Raspbian Bullseye ([#106912](https://github.com/kubernetes/kubernetes/pull/106912), [@Letme](https://github.com/Letme))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
Back to top