search for: 1024ul

Displaying 3 results from an estimated 3 matches for "1024ul".

Did you mean: 1024l
2008 Feb 22
0
mddisk(ramdisk) root system that image size limit ?
...1.0K 1.0K 0B 100% /dev /dev/md0a 124M 4.0K 114M 0% /mnt system not panic. but config loader.rc, add "load -t mfs_root /image" or "load -t md_image /image" will panic. I tried configuring the kernel, change MD_ROOT_SIZE and MAXDSIZ=(1024UL*1024*1024); MAXSSIZ=(512UL*1024*1024); DFLDSIZ=(1024UL*1024*1024), panic still.
2003 Aug 13
6
5.1-R-p2 crashes on SMP with AMI RAID and Intel 1000/Pro
...ions COMPAT_FREEBSD4 options SCHED_4BSD #4BSD scheduler #options SCHED_ULE #options ADAPTIVE_MUTEXES #options PQ_CACHESIZE=256 options CPU_ENABLE_SSE options CLK_USE_TSC_CALIBRATION #options HZ=1000 #makeoptions CONF_CFLAGS=-fno-builtin #options MAXDSIZ=(1024UL*1024*1024) #options MAXSSIZ=(128UL*1024*1024) #options DFLDSIZ=(1024UL*1024*1024) options GEOM_AES options GEOM_APPLE options GEOM_BDE options GEOM_BSD options GEOM_GPT options GEOM_MBR options GEOM_PC98 options GEOM_SUN...
2013 Feb 07
8
[RFC] Btrfs: Allow the compressed extent size limit to be modified v2
...l_compress; int compress_type = root->fs_info->compress_type; @@ -361,7 +361,7 @@ static noinline int compress_file_range(struct inode *inode, again: will_compress = 0; nr_pages = (end >> PAGE_CACHE_SHIFT) - (start >> PAGE_CACHE_SHIFT) + 1; - nr_pages = min(nr_pages, (128 * 1024UL) / PAGE_CACHE_SIZE); + nr_pages = min(nr_pages, max_compressed / PAGE_CACHE_SIZE); /* * we don''t want to send crud past the end of i_size through @@ -386,7 +386,7 @@ again: * * We also want to make sure the amount of IO required to do * a random read is reasonably small, so...