search for: azat

Displaying 3 results from an estimated 3 matches for "azat".

Did you mean: arat
2015 Jun 12
2
[LLVMdev] [cfe-dev] How to change the linker of clang
That's what I used to do but each Ubuntu update would revert the symlink. That's when I found about -fuse-ld=gold, I'd expect it to work with other linkers as well. On Fri, Jun 12, 2015 at 11:52 AM, Nathan Wilson <nwilson20 at gmail.com> wrote: > > > On Thu, Jun 11, 2015 at 8:31 PM, Eric Lu <eirc.lew at gmail.com> wrote: > >> 1) Build clang with
2013 Aug 29
0
Changing remote Windows password from python
...change user's password on remote win-host with smbpasswd (smbpasswd - r <REMOTE_IP> -U <REMOTE_USER>). And I see that smbpasswd uses source3/libsmb/passchange.c, but I can't find any bindings to do this from python. Is there python way for changing remote password? -- Kurbanov Azat, e-mail: cordalace at gmail.com
2013 Sep 01
0
[PATCH] btrfs: use list_for_each_entry_safe() when delete items
...close_devices() list_for_each_entry() { list_replace_rcu(); call_rcu(); <-- We may free the device, if we get next device by the current one, the page fault may happen. } Signed-off-by: Azat Khuzhin <a3at.mail@gmail.com> Reviewed-by: Miao Xie <miaox@cn.fujitsu.com> --- V2: Add some comments from Miao into commit message fs/btrfs/volumes.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c index 78b8717..1d1b5...