Displaying 20 results from an estimated 32 matches for "11392".
Did you mean:
1,392
2018 Apr 19
4
[PATCH] virtio_ring: switch to dma_XX barriers for rpmsg
virtio is using barriers to order memory accesses, thus
dma_wmb/rmb is a good match.
Build-tested on x86: Before
[mst at tuck linux]$ size drivers/virtio/virtio_ring.o
text data bss dec hex filename
11392 820 0 12212 2fb4 drivers/virtio/virtio_ring.o
After
mst at tuck linux]$ size drivers/virtio/virtio_ring.o
text data bss dec hex filename
11284 820 0 12104 2f48 drivers/virtio/virtio_ring.o
Cc: Ohad Ben-Cohen <ohad at wizery.com>
Cc: Bjorn An...
2018 Apr 19
4
[PATCH] virtio_ring: switch to dma_XX barriers for rpmsg
virtio is using barriers to order memory accesses, thus
dma_wmb/rmb is a good match.
Build-tested on x86: Before
[mst at tuck linux]$ size drivers/virtio/virtio_ring.o
text data bss dec hex filename
11392 820 0 12212 2fb4 drivers/virtio/virtio_ring.o
After
mst at tuck linux]$ size drivers/virtio/virtio_ring.o
text data bss dec hex filename
11284 820 0 12104 2f48 drivers/virtio/virtio_ring.o
Cc: Ohad Ben-Cohen <ohad at wizery.com>
Cc: Bjorn An...
2017 Aug 09
0
[Announce] Samba 4.6.7 Available for Download
...This is the latest stable release of the Samba 4.6 release series.
Changes since 4.6.6:
---------------------
o Jeremy Allison <jra at samba.org>
* BUG 12836: s3: smbd: Fix a read after free if a chained SMB1 call goes async.
o Andrew Bartlett <abartlet at samba.org>
* BUG 11392: s4-cldap/netlogon: Match Windows 2012R2 and return
NETLOGON_NT_VERSION_5 when version unspecified.
o Ralph Boehme <slow at samba.org>
* BUG 12885: s3/smbd: Let non_widelink_open() chdir() to directories directly.
* BUG 12910: s3/notifyd: Ensure notifyd doesn't return from...
2017 Aug 09
0
[Announce] Samba 4.6.7 Available for Download
...This is the latest stable release of the Samba 4.6 release series.
Changes since 4.6.6:
---------------------
o Jeremy Allison <jra at samba.org>
* BUG 12836: s3: smbd: Fix a read after free if a chained SMB1 call goes async.
o Andrew Bartlett <abartlet at samba.org>
* BUG 11392: s4-cldap/netlogon: Match Windows 2012R2 and return
NETLOGON_NT_VERSION_5 when version unspecified.
o Ralph Boehme <slow at samba.org>
* BUG 12885: s3/smbd: Let non_widelink_open() chdir() to directories directly.
* BUG 12910: s3/notifyd: Ensure notifyd doesn't return from...
2009 May 06
1
Re: wine error causing reboot
...nf_nat_irc,nf_nat_ftp
nf_conntrack_ipv4 24216 7 nf_nat
nf_defrag_ipv4 10496 1 nf_conntrack_ipv4
nf_conntrack_ftp 17592 1 nf_nat_ftp
nf_conntrack 84752 7 xt_state,nf_nat_irc,nf_conntrack_irc,nf_nat_ftp,nf_nat,nf_conntrack_ipv4,nf_conntrack_ftp
iptable_filter 11392 1
ip_tables 28304 1 iptable_filter
x_tables 31624 8 ipt_REJECT,ipt_LOG,xt_limit,xt_tcpudp,xt_state,ipt_addrtype,ip6_tables,ip_tables
isofs 43688 1
udf 92584 0
crc_itu_t 10496 1 udf
binfmt_misc 18572 1...
2012 Jan 09
1
reposurgeon progress
...to automate the process of finding merge
> points, and I seem to be spinning my wheels. Can you provide an example of how
> you are searching for merges?
Not a working one, yet. That code is buggy. It's my next thing to work on.
>reposurgeon% merge (apcsmart-dev)
>reposurgeon: :11392 cannot merge clean at target :11808
>reposurgeon: target :11808 is out of date on these files: docs/man/apcsmart.txt drivers/apcsmart.h drivers/apcsmart.c
>
># This doesn't seem to be the right merge point, but maybe that's because '(apcsmart-dev)' represents the whole bran...
2018 Apr 19
0
[PATCH] virtio_ring: switch to dma_XX barriers for rpmsg
.../2018 19:35, Michael S. Tsirkin wrote:
> virtio is using barriers to order memory accesses, thus
> dma_wmb/rmb is a good match.
>
> Build-tested on x86: Before
>
> [mst at tuck linux]$ size drivers/virtio/virtio_ring.o
> text data bss dec hex filename
> 11392 820 0 12212 2fb4 drivers/virtio/virtio_ring.o
>
> After
> mst at tuck linux]$ size drivers/virtio/virtio_ring.o
> text data bss dec hex filename
> 11284 820 0 12104 2f48 drivers/virtio/virtio_ring.o
>
> Cc: Ohad Ben-Cohen <...
2014 Feb 25
1
combine 2 data.frames in dependence of the ID
Hello together,
i have a little problem, maybe anyone can help me.
I have 2 data.frame, one look like this one:
FS_ID ABNR
9327 33688812
11391 33688812
11392 33688812
11388 33688812
11390 33688812
12028 33688812
12029 33688812
the other data.frame looks like as follows:
FS_ID DATE POST
11390 2012-12-13 28
12029 2013-01-17 28.3
what i am looking for, is a result, which look like this one:
ABNR FIRST...
2006 Jul 05
1
newbie question: Mapping Collections
Hi,
Day 3 with rails here. Forgive me. If this has been covered many times
before, pls just point me at the article.
I worked through the Rolling with Rails tutorial
(http://www.onlamp.com/pub/a/onlamp/2005/01/20/rails.html) built up my
cookbook. Things work great.
I now want to add Ingredients to my app. So, a Recipe will have 1 or
more Ingredients and any single ingredient can be
2018 Apr 19
4
[PATCH] virtio_ring: switch to dma_XX barriers for rpmsg
...gt; > virtio is using barriers to order memory accesses, thus
> > dma_wmb/rmb is a good match.
> >
> > Build-tested on x86: Before
> >
> > [mst at tuck linux]$ size drivers/virtio/virtio_ring.o
> > text data bss dec hex filename
> > 11392 820 0 12212 2fb4 drivers/virtio/virtio_ring.o
> >
> > After
> > mst at tuck linux]$ size drivers/virtio/virtio_ring.o
> > text data bss dec hex filename
> > 11284 820 0 12104 2f48 drivers/virtio/virtio_ring.o
> >...
2018 Apr 19
4
[PATCH] virtio_ring: switch to dma_XX barriers for rpmsg
...gt; > virtio is using barriers to order memory accesses, thus
> > dma_wmb/rmb is a good match.
> >
> > Build-tested on x86: Before
> >
> > [mst at tuck linux]$ size drivers/virtio/virtio_ring.o
> > text data bss dec hex filename
> > 11392 820 0 12212 2fb4 drivers/virtio/virtio_ring.o
> >
> > After
> > mst at tuck linux]$ size drivers/virtio/virtio_ring.o
> > text data bss dec hex filename
> > 11284 820 0 12104 2f48 drivers/virtio/virtio_ring.o
> >...
2012 Jan 07
3
Mixed-commit problem solved
Well, that wasn't as nasty as I feared it would be. Turns out that in
the general case it's possible to partition a mixed-branch revision
into branch cliques and generate multiple import-stream commits, one
for each affected branch.
We lose only if the split commit is the source of a later directory
copy; I have a check for that that says, basically, "if you see this
fatal error,
2017 Aug 15
0
[Announce] Samba 4.7.0rc4 Available for Download
...ba.org/index.php/Release_Planning_for_Samba_4.7#Release_blocking_bugs
CHANGES SINCE 4.7.0rc3
======================
o Jeremy Allison <jra at samba.org>
* BUG 12913: Implement cli_smb2_setatr() by calling cli_smb2_setpathinfo().
o Andrew Bartlett <abartlet at samba.org>
* BUG 11392: s4-cldap/netlogon: Match Windows 2012R2 and return
NETLOGON_NT_VERSION_5 when version unspecified.
* BUG 12855: dsdb: Do not force a re-index of sam.ldb on upgrade to 4.7.
* BUG 12904: dsdb: Fix dsdb_next_callback to correctly use ldb_module_done()
etc.
* BUG 12939: s4-rpc_serve...
2017 Aug 15
0
[Announce] Samba 4.7.0rc4 Available for Download
...ba.org/index.php/Release_Planning_for_Samba_4.7#Release_blocking_bugs
CHANGES SINCE 4.7.0rc3
======================
o Jeremy Allison <jra at samba.org>
* BUG 12913: Implement cli_smb2_setatr() by calling cli_smb2_setpathinfo().
o Andrew Bartlett <abartlet at samba.org>
* BUG 11392: s4-cldap/netlogon: Match Windows 2012R2 and return
NETLOGON_NT_VERSION_5 when version unspecified.
* BUG 12855: dsdb: Do not force a re-index of sam.ldb on upgrade to 4.7.
* BUG 12904: dsdb: Fix dsdb_next_callback to correctly use ldb_module_done()
etc.
* BUG 12939: s4-rpc_serve...
2001 Oct 27
3
Strange memory stats with 2.4.13 and ext3
...shared: buffers: cached:
Mem: 130179072 117489664 12689408 0 46854144 69632
Swap: 1073987584 10907648 1063079936
MemTotal: 127128 kB
MemFree: 12392 kB
MemShared: 0 kB
Buffers: 45756 kB
Cached: 4294965116 kB
SwapCached: 2248 kB
Active: 11392 kB
Inactive: 36784 kB
HighTotal: 0 kB
HighFree: 0 kB
LowTotal: 127128 kB
LowFree: 12392 kB
SwapTotal: 1048816 kB
SwapFree: 1038164 kB
Needless to say, this is unexpected. I do have 128MB of RAM and a gig
of swap, but I certainly don't expect...
2007 Nov 18
13
PPPoE in DomU exits with error
...out of the box on Debian Stable. My pppoeconf configured
everything and found the the interface with pppoe.
I also believe that modules are actually loaded:
pppoe 23296 0
pppox 8592 1 pppoe
ppp_generic 34080 2 pppoe,pppox
slhc 11392 1 ppp_generic
Would you have idea where I have problem?
Jiri
_______________________________________________
Xen-users mailing list
Xen-users@lists.xensource.com
http://lists.xensource.com/xen-users
2017 Aug 29
0
[Announce] Samba 4.7.0rc5 Available for Download
...ord with 'smbpasswd' as a local user on
a domain member.
CHANGES SINCE 4.7.0rc3
======================
o Jeremy Allison <jra at samba.org>
* BUG 12913: Implement cli_smb2_setatr() by calling cli_smb2_setpathinfo().
o Andrew Bartlett <abartlet at samba.org>
* BUG 11392: s4-cldap/netlogon: Match Windows 2012R2 and return
NETLOGON_NT_VERSION_5 when version unspecified.
* BUG 12855: dsdb: Do not force a re-index of sam.ldb on upgrade to 4.7.
* BUG 12904: dsdb: Fix dsdb_next_callback to correctly use ldb_module_done()
etc.
* BUG 12939: s4-rpc_serve...
2017 Aug 29
0
[Announce] Samba 4.7.0rc5 Available for Download
...ord with 'smbpasswd' as a local user on
a domain member.
CHANGES SINCE 4.7.0rc3
======================
o Jeremy Allison <jra at samba.org>
* BUG 12913: Implement cli_smb2_setatr() by calling cli_smb2_setpathinfo().
o Andrew Bartlett <abartlet at samba.org>
* BUG 11392: s4-cldap/netlogon: Match Windows 2012R2 and return
NETLOGON_NT_VERSION_5 when version unspecified.
* BUG 12855: dsdb: Do not force a re-index of sam.ldb on upgrade to 4.7.
* BUG 12904: dsdb: Fix dsdb_next_callback to correctly use ldb_module_done()
etc.
* BUG 12939: s4-rpc_serve...
2017 Sep 21
4
[Announce] Samba 4.7.0 Available for Download
...ord with 'smbpasswd' as a local user on
a domain member.
CHANGES SINCE 4.7.0rc3
======================
o Jeremy Allison <jra at samba.org>
* BUG 12913: Implement cli_smb2_setatr() by calling cli_smb2_setpathinfo().
o Andrew Bartlett <abartlet at samba.org>
* BUG 11392: s4-cldap/netlogon: Match Windows 2012R2 and return
NETLOGON_NT_VERSION_5 when version unspecified.
* BUG 12855: dsdb: Do not force a re-index of sam.ldb on upgrade to 4.7.
* BUG 12904: dsdb: Fix dsdb_next_callback to correctly use ldb_module_done()
etc.
* BUG 12939: s4-rpc_serve...
2017 Sep 21
4
[Announce] Samba 4.7.0 Available for Download
...ord with 'smbpasswd' as a local user on
a domain member.
CHANGES SINCE 4.7.0rc3
======================
o Jeremy Allison <jra at samba.org>
* BUG 12913: Implement cli_smb2_setatr() by calling cli_smb2_setpathinfo().
o Andrew Bartlett <abartlet at samba.org>
* BUG 11392: s4-cldap/netlogon: Match Windows 2012R2 and return
NETLOGON_NT_VERSION_5 when version unspecified.
* BUG 12855: dsdb: Do not force a re-index of sam.ldb on upgrade to 4.7.
* BUG 12904: dsdb: Fix dsdb_next_callback to correctly use ldb_module_done()
etc.
* BUG 12939: s4-rpc_serve...