search for: zhp

Displaying 7 results from an estimated 7 matches for "zhp".

Did you mean: hp
2008 Sep 11
3
ZFS Crypto [Prelim] Codereview
...const char *keyscope_str; 1149 1150 if (src_keyscope == ZPROP_SRC_LOCAL) { 1151 (void) zfs_prop_index_to_string(ZFS_PROP_KEYSCOPE, 1152 keyscope, &keyscope_str); 1153 (void) zfs_prop_set(zhp, 1154 zfs_prop_to_name(ZFS_PROP_KEYSCOPE), keyscope_str); 1155 } else 1156 (void) zfs_prop_inherit(zhp, 1157 zfs_prop_to_name(ZFS_PROP_KEYSCOPE)); 1158 } 1159 1160 cleanup: 1161 /* Rever...
2009 Apr 08
0
zpool history coredump
...nsolaris/cmd/zpool/zpool_main.c, line 3338. Abort (core dumped) (gdb) bt #0 0x481dfff7 in kill () from /lib/libc.so.7 #1 0x481dff56 in raise () from /lib/libc.so.7 #2 0x481deb8a in abort () from /lib/libc.so.7 #3 0x481c6546 in __assert () from /lib/libc.so.7 #4 0x0804aca7 in get_history_one (zhp=0x4831a100, data=0xbfbfac40) at /usr/src/cddl/sbin/zpool/../../../cddl/contrib/opensolaris/cmd/zpool/zpool_main.c:3337 #5 0x0805293f in pool_list_iter (zlp=0x4830e030, unavail=0, func=0x804ab30 <get_history_one>, data=0xbfbfac40) at /usr/src/cddl/sbin/zpool/../../../cddl/contrib/opens...
2009 Nov 11
0
libzfs zfs_create() fails on sun4u daily bits (daily.1110)
....] ----8<---- The install continues and succeeds, but no ZFS dataset was created. I traced the error message in the latest ON source and located it in create_zfs_zonepath() in usr/src/cmd/zoneadm/zfs.c: ----8<---- if (zfs_create(g_zfs, zfs_name, ZFS_TYPE_FILESYSTEM, props) != 0 || (zhp = zfs_open(g_zfs, zfs_name, ZFS_TYPE_DATASET)) == NULL) { (void) fprintf(stderr, gettext("cannot create ZFS dataset %s: " "%s\n"), zfs_name, libzfs_error_description(g_zfs)); nvlist_free(props); return; } ----8<---- zfs_open() can''t be at fault because...
2009 Sep 03
9
Rails 2.3.3 has a very serious performance problem
On my Ubuntu 8.04 64 bit desktop, I created an empty Rails project and from another machine, I used ab -n 10 http://210.77.27.169:3000/ to test the performance: =========================================== When I put rails 2.3.3 under vendor/rails: Server Software: WEBrick/1.3.1 Server Hostname: 210.77.27.169 Server Port: 3000 Document Path: / Document Length:
2005 May 26
14
htb: HowTo identify squid cache hits
Hi list... I work for a school in the netherlands with a 2mbit Internet uplink and about 3800 eager student who want to play games on the Internet using one of our 800 workstations. Problem was that those game playing students are concentrated in 2 of our 6 physical locations... and they consumed the bandwidth which the other location would like to use for educational purposes. The thing we did
2009 Jul 23
1
[PATCH server] changes required for fedora rawhide inclusion.
...JlgJ z^i0oClw%!Fbo`5QWx0N3$E&JI3y0o`Y8kUHTyRi_R?w69=aEHZ8lTSD3@(12fK|_0 z!SfSa$!xCBRCs=hUH}gd3tg$wRHtjU3i<v_?og_JCU?&g;Vg2jSQ&hfWacR%7(9<x z&gb3*T*Mdh%0=9}m=E5nR&HUHOL%K#+m)G8%m>N*OgMsfpCN6k&JZLsMCt%i2gu+v zB-4f3WT|69)_3Dz<Xy%FJw$puM3i<fvdX2rft?zB&GCZG^RE=cZhPFUUKBjuT0#D} zbPTE8>&*Ka8?>AB-A$B1%Xr^qTtW52%rb+Q^VVeZ{LCyx88nTzdy|2%vfW#3<*m~= z(FU*JHs1<fxsnePPY}%L;JnIJeDHMAcM(yc2Y!t>U45WNqP~@bSMyY<L1t<VPeGps zt>t~!awYw8jPeCC=oD#PaqB5Us$L+2 at qg3Gb$sxTvN|ODuICDBy@#MyhFTYpo{BP5 zh4`;L*6|oUNE%X39nTcsQF>x5^DT+qM}}p>@*%AB^ejM$fL;...
2009 Aug 15
4
Isn't there any performance issue when saving serialized attributes every time?
In edge rails, serialized attributes are saved every time no matter they are changed or not: def update_with_dirty if partial_updates? # Serialized attributes should always be written in case they''ve been # changed in place. update_without_dirty(changed | (attributes.keys & self.class.serialized_attributes.keys)) else