Displaying 11 results from an estimated 11 matches for "memishian".
2009 Apr 17
10
Virtual devices disappear in dladm show-link
Using OpenSolaris 2008.11 build 110.
Created vnic''s and etherstub''s and they are displayed using dladm show-links but when the server is rebooted a ''dladm show-link'' is empty although the vnic and etherstub devices are still there and function properly.
That is a real inconvenience, so why do the no longer show after a reboot or shutdown/start?
Is there a
2009 Mar 10
40
dlstat for data link statistics
(Bcc''ed to networking discuss).
Hi All,
Have enclosed man page draft for dlstat(1M) herewith.
This is part of the effort to gain better visibility into network traffic in light of crossbow features like virtual NICs, interrupt vs. polling modes etc. This in turn would greatly assist network performance analysis. It is also aimed at segregating link/flow configuration from
2007 Aug 14
0
[clearview-discuss] visualizing devices, links, and interfaces
...might be applied to the
configuration. The illustration continues to be a work in progress
(already, some minor errors have been spotted :) ) so feedback is
certainly welcome.
Cc''ing the Crossbow team in case the figure could be expanded and
utilized for their purposes.
Raoul
Peter Memishian wrote:
> Folks,
>
> As Seb mentioned a few posts ago, one of Sun''s illustrators has put
> together a first cut at some graphics that show how devices, links, and
> interfaces interrelate. One of the more comprehensive illustrations is:
>
> http://opensolaris.org/...
2009 Apr 10
13
property parsing in dladm
I decided to take a stab at
6601421 dladm set-linkprop should support multiple -p options
along with some related linkprop fixes, but when I looked into
dladm.c, was surprised to find that "dladm_parse_props()" is called
from do_create_aggr and do_create_vlan in addition to the
expected (by me, at least) do_create_vnic *linkprop functions.
What happened here? Why do we pass in
2006 Sep 13
10
Comments on a Systemtap vs Dtrace comparison.
Not sure if this document will be shown to any dtrace users but here
is a link if you want to comment on it
http://sources.redhat.com/systemtap/wiki/SystemtapDtraceComparison
I have went line by line and commented on its content and in
accuracies and posted it both to the systemtap email list and my
blog, you can see the blogged version at
2009 Feb 12
11
UV fastpath after Crossbow
Hi the Crossbow team,
I am testing my UV fastpath bits and I found several issues that need your
suggestion:
1. dladm show-usage won''t work if UV fastpath is enabled.
Since the link usage data are collected based on the statistics of the
mac_client_impl_t, and UV fastpath skips the GLDv3 processing, that won''t
be available.
I don''t see a solution for this except
2009 Jul 06
69
link protection review
Hi all,
Link protection is a new feature we are planning to introduce to
Solaris and we would like to solicit your feedback on it.
Please see attached document for details.
2006 Oct 31
0
6336683 address::queue -v blows up kmdb and mdb
Author: meem
Repository: /hg/zfs-crypto/gate
Revision: 4d618a4110ff44c57939c29a3a8a198be2ec8352
Log message:
6336683 address::queue -v blows up kmdb and mdb
6338969 netstrategy needs to use SIOCGLIFFLAGS and friends to see IFF_VIRTUAL
6339847 ip_rcm incorrectly parses interface names
6340643 ip_rcm is lugging around dead code
6340645 ip_rcm tracks needless phyint state
Files:
update:
2006 Oct 31
0
6383534 xref(1) should show an example for multiple subdirs of a workspace
Author: meem
Repository: /hg/zfs-crypto/gate
Revision: 563d83732b6842d2ba3137bccf97d32e3e746644
Log message:
6383534 xref(1) should show an example for multiple subdirs of a workspace
Files:
update: usr/src/tools/scripts/xref.1
2006 Oct 31
0
PSARC/2006/289 Rationalized IFF_NOFAILOVER for IPMP Singleton
Author: meem
Repository: /hg/zfs-crypto/gate
Revision: 40aa11f97fc0148333e53145eebb12da7e84dec5
Log message:
PSARC/2006/289 Rationalized IFF_NOFAILOVER for IPMP Singleton
6397456 IPMP needs to support *just* link-based failure detection with singleton
Files:
update: usr/src/cmd/cmd-inet/usr.lib/in.mpathd/mpd_main.c
update: usr/src/cmd/cmd-inet/usr.lib/in.mpathd/mpd_tables.c
update:
2006 Sep 20
3
committing multiple speculations in a single probe
While using DTrace to track down a problem recently, we came across an
unexpected restriction: the compiler will not permit different
speculations to be committed in the same instance of a probe identifier.
For instance, consider the following useless D script:
#!/usr/sbin/dtrace -s
#pragma D option nspec=2
BEGIN {
spec1 = speculation();
spec2 = speculation();
}
END {