| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-dbs/mysql/mysql-python/ |
| H A D | 0001-_mysql.c-fix-compilation-with-MariaDB-with-10.3.13.patch | 20 int r, reconnect = -1; 21 if (!PyArg_ParseTuple(args, "|I", &reconnect)) return NULL; 23 - if ( reconnect != -1 ) self->connection.reconnect = reconnect; 24 + if ( reconnect != -1 ) { 26 + my_bool recon = reconnect; 29 + self->connection.reconnect = reconnect;
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/ |
| H A D | persist_data.py | 35 def retry(*, reconnect=True): argument 44 if self.connection is None and reconnect: 45 self.reconnect() 54 if reconnect: 55 self.reconnect() 90 @_Decorators.retry(reconnect=False) 100 def reconnect(self): member in SQLTable
|
| /OK3568_Linux_fs/kernel/drivers/scsi/pcmcia/ |
| H A D | aha152x_stub.c | 62 static int reconnect = 1; variable 69 module_param(reconnect, int, 0); 166 s.reconnect = reconnect; in aha152x_config_cs()
|
| /OK3568_Linux_fs/kernel/drivers/scsi/ |
| H A D | aha152x.c | 334 static int reconnect[] = {1, 1}; variable 335 module_param_array(reconnect, int, NULL, 0); 336 MODULE_PARM_DESC(reconnect,"allow targets to disconnect"); 444 int reconnect; /* disconnection allowed */ member 546 #define RECONNECT (HOSTDATA(shpnt)->reconnect) 743 RECONNECT = setup->reconnect; in aha152x_probe_one() 752 if (setup->reconnect) in aha152x_probe_one() 3045 if ((setup->reconnect < 0) || (setup->reconnect > 1)) in checksetup() 3094 override.reconnect, in aha152x_init() 3115 override.reconnect, in aha152x_init() [all …]
|
| H A D | scsi_transport_srp.c | 552 res = rport->state != SRP_RPORT_LOST ? i->f->reconnect(rport) : -ENODEV; in srp_reconnect_rport() 717 if (i->f->reconnect) in srp_rport_add() 840 if (ft->reconnect) { in srp_attach_transport()
|
| H A D | aha152x.h | 322 int reconnect; member
|
| /OK3568_Linux_fs/kernel/Documentation/ABI/testing/ |
| H A D | sysfs-class-rtrs-client | 22 Description: Maximum number reconnect attempts the client should make before giving up 52 What: /sys/class/rtrs-client/<session-name>/paths/<src@dst>/reconnect 56 Description: Write "1" to the file in order to reconnect the path. 57 Operation is blocking and returns 0 if reconnect was successful.
|
| /OK3568_Linux_fs/kernel/Documentation/filesystems/ |
| H A D | ceph.rst | 166 Set auto reconnect mode in the case where the client is blocklisted. The 169 * no: never attempt to reconnect when client detects that it has been 173 detects that it has been blocklisted. During reconnect, client drops 175 After reconnect, file locks become stale because the MDS loses track
|
| /OK3568_Linux_fs/kernel/fs/cifs/ |
| H A D | link.c | 325 oparms.reconnect = false; in cifs_query_mf_symlink() 367 oparms.reconnect = false; in cifs_create_mf_symlink() 407 oparms.reconnect = false; in smb3_query_mf_symlink() 473 oparms.reconnect = false; in smb3_create_mf_symlink()
|
| H A D | smb1ops.c | 573 oparms.reconnect = false; in cifs_query_path_info() 801 oparms.reconnect = false; in smb_set_file_info() 979 oparms.reconnect = false; in cifs_query_symlink() 1102 oparms.reconnect = false; in cifs_make_node()
|
| H A D | smb2ops.c | 732 oparms.reconnect = false; in open_shroot() 867 oparms.reconnect = false; in smb3_qfs_tcon() 911 oparms.reconnect = false; in smb2_qfs_tcon() 947 oparms.reconnect = false; in smb2_is_path_accessible() 1225 oparms.reconnect = false; in smb2_set_ea() 1577 oparms.reconnect = false; in smb2_ioctl_query_info() 2209 oparms.reconnect = false; in smb3_notify() 2269 oparms.reconnect = false; in smb2_query_dir_first() 2540 oparms.reconnect = false; in smb2_query_info_compound() 2651 oparms.reconnect = false; in smb311_queryfs() [all …]
|
| /OK3568_Linux_fs/kernel/include/scsi/ |
| H A D | scsi_transport_srp.h | 100 int (*reconnect)(struct srp_rport *rport); member
|
| /OK3568_Linux_fs/kernel/include/linux/ |
| H A D | serio.h | 79 int (*reconnect)(struct serio *); member
|
| H A D | gameport.h | 55 int (*reconnect)(struct gameport *); member
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-protocols/rp-pppoe/rp-pppoe/ |
| H A D | update-config.patch | 7 we want whatever is calling it to reconnect. Lots of odd things
|
| /OK3568_Linux_fs/kernel/include/trace/events/ |
| H A D | rpcrdma.h | 461 unsigned long reconnect 464 TP_ARGS(r_xprt, connect, reconnect), 469 __field(unsigned long, reconnect) 477 __entry->reconnect = reconnect; 484 __entry->connect / HZ, __entry->reconnect / HZ
|
| /OK3568_Linux_fs/kernel/drivers/infiniband/ulp/rtrs/ |
| H A D | README | 73 the reconnect counter, which is used to resolve the situations where 74 client is trying to reconnect a path, while server is still destroying the old 101 healthy path, if any, and the reconnect mechanism is triggered.
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/qemu/qemu/ |
| H A D | 0006-chardev-connect-socket-to-a-spawned-command.patch | 98 + * running. We also don't support the "reconnect" option for the 172 + if (path || sock->server || sock->has_telnet || sock->has_tn3270 || sock->reconnect || hos…
|
| /OK3568_Linux_fs/buildroot/package/urg/ |
| H A D | 0002-urg-gcc6-fix-narrowing-conversion.patch | 27 …"SCIP1.1 protocol is not supported. Please update URG firmware, or reconnect after a few seconds b…
|
| /OK3568_Linux_fs/kernel/Documentation/ABI/stable/ |
| H A D | sysfs-transport-srp | 37 Description: Number of seconds the SCSI layer will wait after a reconnect
|
| /OK3568_Linux_fs/kernel/drivers/input/gameport/ |
| H A D | gameport.c | 609 if (!gameport->drv || !gameport->drv->reconnect || gameport->drv->reconnect(gameport)) { in gameport_reconnect_port()
|
| /OK3568_Linux_fs/kernel/drivers/input/mouse/ |
| H A D | psmouse-smbus.c | 259 psmouse->reconnect = psmouse_smbus_reconnect; in psmouse_smbus_init()
|
| H A D | lifebook.c | 341 psmouse->reconnect = lifebook_absolute_mode; in lifebook_init()
|
| H A D | psmouse.h | 123 int (*reconnect)(struct psmouse *psmouse); member
|
| /OK3568_Linux_fs/kernel/drivers/input/serio/ |
| H A D | ps2mult.c | 301 .reconnect = ps2mult_reconnect,
|